diff --git a/DESCRIPTION b/DESCRIPTION index bb4ba5da2..08ac54f00 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,36 +1,37 @@ Package: TADAShiny Type: Package -Title: WQP Data Discovery and Cleaning: First R Shiny App in the TADA (Tools for Automated Data Analysis) Series +Title: Water Quality Portal Data Discovery and Cleaning: First R Shiny App in the TADA (Tools for Automated Data Analysis) Series Version: 0.0.0.9000 -Organization: U.S. Environmental Protection Agency -Authors@R: - c(person(given = "Cristina", - family = "Mullin", - role = c("aut", "cre"), - email = "mullin.cristina@epa.gov", - comment = c(ORCID = "0000-0002-0615-6087")), - person(given = "Trip", - family = "Hook", - role = "aut"), - person(given = "Elise", - family = "Hinman", - role = c("aut"), - email = "hinman.elise@epa.gov"), - person(given = "Hui", - family = "Zhou", - role = c("aut"), - email = "zhou.hui@epa.gov"), - person(given = "Shelly", - family = "Thawley", - role = "aut")) -Description: Assists data partners in retrieving, wrangling, quality checking, and preparing data from the Water Quality Portal for subsequent analyses. +Authors@R: c( + person(given = "U.S. Environmental Protection Agency", role = "aut"), + person(given = "Cristina", + family = "Mullin", + role = c("aut", "cre"), + email = "mullin.cristina@epa.gov", + comment = c(ORCID = "0000-0002-0615-6087")), + person(given = "Trip", + family = "Hook", + role = "aut"), + person(given = "Elise", + family = "Hinman", + role = "aut"), + person(given = "Hillary", + family = "Marler", + role = "aut"), + person(given = "Shelly", + family = "Thawley", + role = "aut"), + person(given = "Hui", + family = "Zhou", + role = "aut") + ) +Description: Assists data partners in retrieving, wrangling, quality checking, and harmonizing data from the Water Quality Portal for subsequent analyses. License: CC0 Copyright: This software is in the public domain because it contains materials that originally came from the U.S. Environmental Protection Agency. Imports: - config, - golem, magrittr, + golem, htmltools, readxl, writexl, @@ -54,6 +55,7 @@ Imports: Remotes: github::USEPA/TADA Suggests: + config, testthat, remotes, covr, @@ -73,6 +75,5 @@ Config/testthat/load-all: list(export_all = FALSE, helpers = FALSE) LazyData: true URL: https://github.com/USEPA/TADAShiny BugReports: https://github.com/USEPA/TADAShiny/issues -RoxygenNote: 7.2.3 +RoxygenNote: 7.3.1 Roxygen: list(markdown = TRUE) -VignetteBuilder: knitr, rmarkdown diff --git a/R/app_server.R b/R/app_server.R index 1f4d1e0fc..8c4e44b93 100644 --- a/R/app_server.R +++ b/R/app_server.R @@ -8,7 +8,7 @@ # Below increases the max data upload size from the Shiny default of 5MB per file # to 30MB for file options(shiny.maxRequestSize = 30 * 1024^2) - +options(warn = 2) app_server <- function(input, output, session) { # Your application server logic tadat <- shiny::reactiveValues() # create a list object that holds reactive values passed between modules @@ -35,6 +35,7 @@ app_server <- function(input, output, session) { # switch that indicates when a file is being loaded tadat$load_progress_file = NA tadat$save_progress_file = NA + tadat$flags_present = FALSE job_id = paste0("ts", format(Sys.time(), "%y%m%d%H%M%S")) tadat$default_outfile = paste0("tada_output_", job_id) tadat$job_id = job_id @@ -44,7 +45,7 @@ app_server <- function(input, output, session) { shiny::observeEvent(tadat$new, { shiny::showModal(shiny::modalDialog( title = "Data Loaded", - "Your data were successfully loaded into the app and are displayed on the Overview tab. The following data wrangling steps were performed automatically when data was loaded: 1) created TADA versions of a subset of columns for editing (originals are retained), 2) removed exact duplicates, 3) handled/flagged special characters and text in result values and units, 4) identified detection limit data and copied limit value to result value if blank, 5) harmonized result and depth units to TADA defaults, and 6) replaced retired characteristic names with current names. See summary information about your dataset in the gray box at the bottom of the app." + "Your data were successfully loaded into the app and are displayed on the Overview tab. The following data wrangling steps were performed automatically when data was loaded: 1) created TADA versions of a subset of columns for editing (originals are retained), 2) handled/flagged special characters and text in result values and units, 3) harmonized result and depth units to TADA defaults, and 4) replaced retired characteristic names with current names. See summary information about your dataset in the gray box at the bottom of the app." )) shiny::updateTabsetPanel(session = session, inputId = "tabbar", selected = "Overview") tadat$new <- NULL @@ -57,27 +58,24 @@ app_server <- function(input, output, session) { } }) - # Update the default switches if a progress file is uploaded. - shiny::observeEvent(tadat$selected_flags, { - switch_defaults = tadat$selected_flags - }) - - - # this observes when the user switches tabs and adds the current tab they're on as a column to their dataset. shiny::observe({ - shiny::req(tadat$raw) + # JCH - is this necessary? + #shiny::req(tadat$raw) tadat$raw$TADAShiny.tab <- input$tabbar tadat$tab <- input$tabbar }) + # JCH - disabling this for now. I think progress files provide this functionality + # this observes when the user switches tabs and adds the current tab they're on as a column to their dataset. + # switch to tab user left off on when tadat$reup changes, which only happens when someone uploads a workbook with the column "Removed" in it - shiny::observeEvent(tadat$reup, { - shiny::showModal(shiny::modalDialog( - title = "Data Loaded", - "Your working dataset has been uploaded and the app switched to the tab where you left off." - )) - # the switch tab command - shiny::updateTabsetPanel(session = session, inputId = "tabbar", selected = unique(tadat$raw$tab)) - tadat$reup <- NULL - }) + #shiny::observeEvent(tadat$reup, { + # shiny::showModal(shiny::modalDialog( + # title = "Data Loaded", + # "Your working dataset has been uploaded and the app switched to the tab where you left off." + # )) + # # the switch tab command + # shiny::updateTabsetPanel(session = session, inputId = "tabbar", selected = unique(tadat$raw$tab)) + # tadat$reup <- NULL + #}) } diff --git a/R/mod_TADA_summary.R b/R/mod_TADA_summary.R index d3578e3a9..2f88ab38b 100644 --- a/R/mod_TADA_summary.R +++ b/R/mod_TADA_summary.R @@ -37,10 +37,10 @@ mod_TADA_summary_ui <- function(id) { "site_clean" )))), shiny::fluidRow(column(6, shiny::uiOutput(ns( - "dwn_all" + "dwn_working" )))), shiny::fluidRow(column(6, shiny::uiOutput(ns( - "dwn_ts" + "dwn_final" ))))#, # shiny::fluidRow(column( # 6, @@ -169,16 +169,25 @@ mod_TADA_summary_server <- function(id, tadat) { }) # download dataset button - only appears if there data exists in the app already - output$dwn_all <- shiny::renderUI({ + output$dwn_working <- shiny::renderUI({ shiny::req(tadat$raw) - shiny::downloadButton(ns("download_all"), + shiny::downloadButton(ns("download_working"), "Download Working Dataset (.zip)", - style = "color: #fff; background-color: #337ab7; border-color: #2e6da4") + style = "color: #fff; background-color: #337ab7; border-color: #2e6da4", + contentType = "application/zip") }) - output$download_all <- shiny::downloadHandler( + output$dwn_final <- shiny::renderUI({ + shiny::req(tadat$raw) + shiny::downloadButton(ns("download_final"), + "Download Final Dataset (.zip)", + style = "color: #fff; background-color: #337ab7; border-color: #2e6da4", + contentType = "application/zip") + }) + + output$download_working <- shiny::downloadHandler( filename = function() { - paste0(tadat$default_outfile, ".zip") + paste0(tadat$default_outfile, "_working.zip") }, content = function(fname) { fs <- c() @@ -197,22 +206,28 @@ mod_TADA_summary_server <- function(id, tadat) { contentType = "application/zip" ) - # # Download TADA progress file - # output$dwn_ts = shiny::renderUI({ - # shiny::req(tadat$raw) - # shiny::downloadButton(ns("download_ts_file"), - # "Download Progress File (.Rdata)", - # style = "color: #fff; background-color: #337ab7; border-color: #2e6da4") - # }) - - # output$download_ts_file = shiny::downloadHandler( - # filename = function() { - # paste0(tadat$job_id, '.Rdata') - # }, - # content = function(file) { - # writeFile(tadat, file) - # } - # ) + output$download_final <- shiny::downloadHandler( + filename = function() { + paste0(tadat$default_outfile, "_final.zip") + }, + content = function(fname) { + fs <- c() + tmpdir <- tempdir() + setwd(tempdir()) + datafile_name = paste0(tadat$default_outfile, ".xlsx") + progress_file_name = paste0(tadat$default_outfile, "_prog.RData") + desc <- writeNarrativeDataFrame(tadat) + + # Remove all rows flagged for removal + dfs <- + list(Data = TADA::TADA_OrderCols(tadat$raw[!tadat$raw$TADA.Remove,]), Parameterization = desc) + writeFile(tadat, progress_file_name) + writexl::write_xlsx(dfs, path = datafile_name) + utils::zip(zipfile = fname, + files = c(datafile_name, progress_file_name)) + }, + contentType = "application/zip" + ) shiny::observeEvent(input$disclaimer, { shiny::showModal( diff --git a/R/mod_data_flagging.R b/R/mod_data_flagging.R index f7b659cfa..a668d3f38 100644 --- a/R/mod_data_flagging.R +++ b/R/mod_data_flagging.R @@ -38,7 +38,7 @@ mod_data_flagging_ui <- function(id) { ns("m2f"), label = "", choices = c("feet", "inches", "meters"), - selected = character(0), + selected = "meters", inline = TRUE ) )) @@ -54,7 +54,7 @@ mod_data_flagging_server <- function(id, tadat) { tadat$selected_flags <- character() tadat$switch_defaults <- prompt_table$Level != "Optional" switch_disabled <- prompt_table$Level == "Required" - + flagSwitch <- function(len) { inputs <- character(len) for (i in seq_len(len)) { @@ -80,28 +80,25 @@ mod_data_flagging_server <- function(id, tadat) { unlist(lapply(seq_len(len), function(i) { value <- input[[paste0(id, i)]] if (is.null(value)) { - TRUE + FALSE } else { value } })) } - - - # Runs whenever selected flags are changed shiny::observeEvent(tadat$selected_flags, { - prefix = "Flag: " if (!is.null(tadat$removals)) { - tadat$removals = dplyr::select(tadat$removals,-(dplyr::starts_with(prefix))) + tadat$removals = dplyr::select(tadat$removals,-(dplyr::starts_with(flag_prefix))) } # Loop through the flags for (flag in tadat$selected_flags) { # If not all the values are NA, add the test results to removals if (!is.null(tadat$removals)) { if (!all(is.na(values$testResults[flag]))) { - tadat$removals[paste0(prefix, flag)] = values$testResults[flag] + # Problem here? + tadat$removals[paste0(flag_prefix, flag)] = values$testResults[flag] } } # If the switch corresponding to this flag isn't on, switch it on @@ -121,6 +118,69 @@ mod_data_flagging_server <- function(id, tadat) { } }) + # Any time tadat$raw is changed, check to see if the flagging fields are present + shiny::observeEvent(tadat$raw, { + tadat$flags_present = checkFlagColumns(tadat$raw) + }) + + shiny::observeEvent(tadat$flags_present, { + if (tadat$flags_present) { + # A table (raw rows, flags) indicating whether each record passes each test + values$testResults <- flagCensus(tadat$raw) + + # The number of records failing each test + values$n_fails <- colSums(values$testResults) + + # Runs when any of the flag switches are changed + shiny::observe({ + switch_id = "switch_" + tadat$selected_flags = flag_types[shinyValue(switch_id, n_switches)] + for (i in which(switch_disabled)) { + shinyjs::disable(paste0(switch_id, i)) + } + }) + + switchTable <- shiny::reactive({ + df <- data.frame( + Reason = prompts, + Results = values$n_fails, + Required = levs, + Decision = flagSwitch(n_switches) + ) + }) + + output$flagTable <- DT::renderDT( + shiny::isolate(switchTable()), + escape = FALSE, + selection = "none", + colnames = c( + "Flag reason", + "Results affected", + "Required/Optional", + "Switch 'on' to flag for removal" + ), + rownames = FALSE, + options = list( + dom = "t", + paging = FALSE, + ordering = FALSE, + preDrawCallback = DT::JS( + "function() { Shiny.unbindAll(this.api().table().node()); }" + ), + drawCallback = DT::JS( + "function() { Shiny.bindAll(this.api().table().node()); } " + ) + ) + ) + + shinyjs::enable(selector = '.nav li a[data-value="Filter"]') + shinyjs::enable(selector = '.nav li a[data-value="Censored"]') + shinyjs::enable(selector = '.nav li a[data-value="Harmonize"]') + shinyjs::enable(selector = '.nav li a[data-value="Figures"]') + shinyjs::enable(selector = '.nav li a[data-value="Review"]') + } + }) + # Runs when the flag button is clicked shiny::observeEvent(input$runFlags, { shinybusy::show_modal_spinner( @@ -129,68 +189,17 @@ mod_data_flagging_server <- function(id, tadat) { text = "Running flagging functions...", session = shiny::getDefaultReactiveDomain() ) - - # Add flagging columns to raw table, make sure line below is + + # Add flagging columns to raw table, make sure line below is # not commented out once done with testing tadat$raw <- applyFlags(tadat$raw, tadat$orgs) - # write.csv(tadat$raw, "flagged.csv") - # tadat$raw = utils::read.csv("flagged.csv") # THIS IS TRIPS WORKING FILE FOR TESTING, COMMENT OUT WHEN COMMITTING TO DEVELOP - # A table (raw rows, flags) indicating whether each record passes each test - values$testResults <- flagCensus(tadat$raw) - - # The number of records failing each test - values$n_fails <- colSums(values$testResults) + #write.csv(tadat$raw, "flagged.csv") + #tadat$raw = utils::read.csv("flagged.csv") # THIS IS TRIPS WORKING FILE FOR TESTING, COMMENT OUT WHEN COMMITTING TO DEVELOP # Remove progress bar and display instructions shinybusy::remove_modal_spinner(session = shiny::getDefaultReactiveDomain()) - # Runs when any of the flag switches are changed - shiny::observe({ - switch_id = "switch_" - tadat$selected_flags = flag_types[shinyValue(switch_id, n_switches)] - for (i in which(switch_disabled)) { - shinyjs::disable(paste0(switch_id, i)) - } - }) - - switchTable <- shiny::reactive({ - df <- data.frame( - Reason = prompts, - Results = values$n_fails, - Required = levs, - Decision = flagSwitch(n_switches) - ) - }) - - output$flagTable <- DT::renderDT( - shiny::isolate(switchTable()), - escape = FALSE, - selection = "none", - colnames = c( - "Flag reason", - "Results affected", - "Required/Optional", - "Switch 'on' to flag for removal" - ), - rownames = FALSE, - options = list( - dom = "t", - paging = FALSE, - ordering = FALSE, - preDrawCallback = DT::JS( - "function() { Shiny.unbindAll(this.api().table().node()); }" - ), - drawCallback = DT::JS( - "function() { Shiny.bindAll(this.api().table().node()); } " - ) - ) - ) - shinyjs::enable(selector = '.nav li a[data-value="Filter"]') - shinyjs::enable(selector = '.nav li a[data-value="Censored"]') - shinyjs::enable(selector = '.nav li a[data-value="Harmonize"]') - shinyjs::enable(selector = '.nav li a[data-value="Figures"]') - shinyjs::enable(selector = '.nav li a[data-value="Review"]') }) shiny::observeEvent(tadat$m2f, { @@ -217,8 +226,10 @@ mod_data_flagging_server <- function(id, tadat) { text = "Converting depth units to inches...", session = shiny::getDefaultReactiveDomain() ) + tadat$raw <- TADA::TADA_ConvertDepthUnits(tadat$raw, unit = "in") + } if (input$m2f == "meters") { shinybusy::show_modal_spinner( @@ -233,4 +244,4 @@ mod_data_flagging_server <- function(id, tadat) { shinybusy::remove_modal_spinner(session = shiny::getDefaultReactiveDomain()) }) }) -} +} \ No newline at end of file diff --git a/R/mod_figures.R b/R/mod_figures.R index d137d66a2..ac47e7f2e 100644 --- a/R/mod_figures.R +++ b/R/mod_figures.R @@ -111,7 +111,7 @@ mod_figures_server <- function(id, tadat) { "TADA.ActivityMediaName", "ActivityMediaSubdivisionName", "TADA.ResultSampleFractionText", - "TADA.MethodSpecificationName", + "TADA.MethodSpeciationName", "TADA.CharacteristicName", depthcols) @@ -240,7 +240,7 @@ mod_figures_server <- function(id, tadat) { # select sites whose data to display in plots output$selsites <- shiny::renderUI({ # this companion to the uiOutput in the UI appears when react$done exists - req(react$mapdata) + shiny::req(react$mapdata) sites <- c("All sites", unique(react$mapdata$MonitoringLocationIdentifier)) shiny::fluidRow( htmltools::h3("3. Select Specific Sites (Optional)"), diff --git a/R/mod_filtering.R b/R/mod_filtering.R index 51d0b87aa..f3fde9dea 100644 --- a/R/mod_filtering.R +++ b/R/mod_filtering.R @@ -3,7 +3,14 @@ mod_filtering_ui <- function(id) { tagList( htmltools::HTML("

Select field to filter on:

"), htmltools::HTML( - "Key columns are listed in the table below, along with the number of unique values present in that field. These counts do not include unique values from results flagged for removal. Click on a field name and a new table will appear below showing the counts associated with each unique value in the selected field." + "Fields are listed in the table below, along with the number of unique values present in that field. These counts do not include unique values from results flagged for removal. Click on a field name and a new table will appear below showing the counts associated with each unique value in the selected field." + ), + shiny::radioButtons( + ns("field_sel"), + label = "Fields to select from: ", + choices = c("key", "most", "all"), + selected = "key", + inline = TRUE ), DT::dataTableOutput(ns("filterStep1")), htmltools::br(), @@ -61,8 +68,7 @@ mod_filtering_server <- function(id, tadat) { shinyjs::hide("addExcludes") # make sure dataset being used to create filters is only REMOVE = FALSE - shiny::observe({ - shiny::req(tadat$tab) + shiny::observeEvent(tadat$tab, { if (tadat$tab == "Filter") { # only show unique values from data that have not been flagged for removal tables$dat <- @@ -170,6 +176,18 @@ mod_filtering_server <- function(id, tadat) { } }) + shiny::observeEvent(input$field_sel, { + tadat$field_sel <- input$field_sel + }) + + shiny::observeEvent(tadat$field_sel, { + shiny::updateRadioButtons(session, "field_sel", selected = tadat$field_sel) + if (!is.null(tables$dat)) { + tables$filter_fields <- + TADA::TADA_FieldCounts(tables$dat, display = tadat$field_sel) + } + }) + # reset all filters in bottom table shiny::observeEvent(input$resetFilters, { # empty selected table on open @@ -253,6 +271,7 @@ mod_filtering_server <- function(id, tadat) { values$locked = field_filters$Filter names(values$locked) <- field_filters$Field prefix = "Filter: " + # Remove all the filter columns from the removals table (start fresh) if (!is.null(tadat$removals)) { tadat$removals <- @@ -287,13 +306,14 @@ mod_filtering_server <- function(id, tadat) { tadat$removals[label] <- as.logical(results) } } - + # Get counts for the filters if (!is.null(tables$dat) & nrow(tadat$selected_filters > 0)) { # Refresh the 'count' field new_selected_filters <- tadat$selected_filters new_selected_filters$Count <- NULL - new_selected_filters <- cbind(new_selected_filters, Count=0) + new_selected_filters <- + cbind(new_selected_filters, Count = 0) for (i in 1:nrow(new_selected_filters)) { row = new_selected_filters[i, ] values = getValues(tables$dat, row$Field) @@ -304,7 +324,7 @@ mod_filtering_server <- function(id, tadat) { } }) - + getValues <- function(.data, field) { counts <- table(.data[[field]], useNA = "ifany") if (length(rownames(counts) > 0)) { @@ -317,5 +337,3 @@ mod_filtering_server <- function(id, tadat) { } }) } - - diff --git a/R/mod_harmonize_np.R b/R/mod_harmonize_np.R index 5c09d7e00..91fdbfdf7 100644 --- a/R/mod_harmonize_np.R +++ b/R/mod_harmonize_np.R @@ -38,7 +38,7 @@ mod_harmonize_np_ui <- function(id) { #' #' @noRd mod_harmonize_np_server <- function(id, tadat) { - moduleServer(id, function(input, output, session) { + shiny::moduleServer(id, function(input, output, session) { ns <- session$ns # columns needed for harmonization table cols <- c( @@ -48,8 +48,8 @@ mod_harmonize_np_server <- function(id, tadat) { "TADA.ResultSampleFractionText", "Target.TADA.ResultSampleFractionText", "TADA.FractionAssumptions", - "TADA.MethodSpecificationName", - "Target.TADA.MethodSpecificationName", + "TADA.MethodSpeciationName", + "Target.TADA.MethodSpeciationName", "TADA.SpeciationAssumptions", "Target.TADA.SpeciationConversionFactor", "TADA.ResultMeasure.MeasureUnitCode", @@ -64,7 +64,7 @@ mod_harmonize_np_server <- function(id, tadat) { # when user hits harm go button, runs TADA_GetSynonymRef and makes friendly column names for table. shiny::observeEvent(input$harm_go, { ref <- TADA::TADA_GetSynonymRef(tadat$raw[tadat$raw$TADA.Remove == FALSE, ]) - ref <- ref %>% dplyr::arrange(Target.TADA.CharacteristicName, Target.TADA.ResultSampleFractionText, Target.TADA.MethodSpecificationName) + ref <- ref %>% dplyr::arrange(Target.TADA.CharacteristicName, Target.TADA.ResultSampleFractionText, Target.TADA.MethodSpeciationName) colns <- names(ref) harm$colns <- colns %>% dplyr::recode( TADA.CharacteristicName = "Characteristic", @@ -73,8 +73,8 @@ mod_harmonize_np_server <- function(id, tadat) { TADA.ResultSampleFractionText = "Fraction", Target.TADA.ResultSampleFractionText = "Target Fraction", TADA.FractionAssumptions = "Fraction Assumptions", - TADA.MethodSpecificationName = "Speciation", - Target.TADA.MethodSpecificationName = "Target Speciation", + TADA.MethodSpeciationName = "Speciation", + Target.TADA.MethodSpeciationName = "Target Speciation", TADA.SpeciationAssumptions = "Speciation Assumptions", Target.TADA.SpeciationConversionFactor = "Speciation Conversion Factor (to AS N or AS P)", TADA.ResultMeasure.MeasureUnitCode = "Unit", @@ -110,7 +110,7 @@ mod_harmonize_np_server <- function(id, tadat) { # user uploaded data ref <- suppressWarnings(read.csv(input$harm_file$datapath)) if (all(cols %in% names(ref)) & dim(ref)[1] > 0) { - ref <- ref %>% dplyr::arrange(Target.TADA.CharacteristicName, Target.TADA.ResultSampleFractionText, Target.TADA.MethodSpecificationName) + ref <- ref %>% dplyr::arrange(Target.TADA.CharacteristicName, Target.TADA.ResultSampleFractionText, Target.TADA.MethodSpeciationName) colns <- names(ref) harm$colns <- colns %>% dplyr::recode( TADA.CharacteristicName = "Characteristic", @@ -119,8 +119,8 @@ mod_harmonize_np_server <- function(id, tadat) { TADA.ResultSampleFractionText = "Fraction", Target.TADA.ResultSampleFractionText = "Target Fraction", TADA.FractionAssumptions = "Fraction Assumptions", - TADA.MethodSpecificationName = "Speciation", - Target.TADA.MethodSpecificationName = "Target Speciation", + TADA.MethodSpeciationName = "Speciation", + Target.TADA.MethodSpeciationName = "Target Speciation", TADA.SpeciationAssumptions = "Speciation Assumptions", Target.TADA.SpeciationConversionFactor = "Speciation Conversion Factor (to AS N or AS P)", TADA.ResultMeasure.MeasureUnitCode = "Unit", @@ -157,7 +157,7 @@ mod_harmonize_np_server <- function(id, tadat) { selection = "none", rownames = FALSE ) %>% DT::formatStyle(columns = names(harm$ref), `font-size` = "12px") %>% - DT::formatStyle(columns = c("TADA.CharacteristicName", "TADA.ResultSampleFractionText", "TADA.MethodSpecificationName", "TADA.ResultMeasure.MeasureUnitCode"), backgroundColor = "#2e6da4", color = "white") + DT::formatStyle(columns = c("TADA.CharacteristicName", "TADA.ResultSampleFractionText", "TADA.MethodSpeciationName", "TADA.ResultMeasure.MeasureUnitCode"), backgroundColor = "#2e6da4", color = "white") }) # apply synonym ref to data when button is pushed @@ -186,7 +186,7 @@ mod_harmonize_np_server <- function(id, tadat) { )) }) - output$sum_dwn <- downloadHandler( + output$sum_dwn <- shiny::downloadHandler( filename = function() { "TADA_NPSummationKey.csv" }, @@ -222,10 +222,8 @@ mod_harmonize_np_server <- function(id, tadat) { new_df <- as.data.frame(matrix(FALSE, ncol = ncols, nrow = nrows)) names(new_df) <- names(tadat$removals) tadat$removals <- plyr::rbind.fill(tadat$removals, new_df) - tadat$raw <- plyr::rbind.fill(dat, rem) tadat$raw <- TADA::TADA_OrderCols(tadat$raw) - nitrolen <- length(dat$TADA.NutrientSummation.Flag[dat$TADA.NutrientSummation.Flag %in% c("Nutrient summation from one or more subspecies.")]) phoslen <- length(dat$TADA.NutrientSummation.Flag[dat$TADA.NutrientSummation.Flag %in% c("Nutrient summation from one subspecies.")]) # remove the modal once the dataset has been harmonized diff --git a/R/mod_overview.R b/R/mod_overview.R index b8542d166..646c78d9d 100644 --- a/R/mod_overview.R +++ b/R/mod_overview.R @@ -71,7 +71,7 @@ mod_overview_server <- function(id, tadat) { # create dataset for map and histogram using raw data shiny::observeEvent(tadat$ovgo, { - req(tadat$raw) + shiny::req(tadat$raw) # create gray text tile info mapdat$text <- tadat$raw %>% dplyr::filter(TADA.Remove == FALSE) %>% @@ -87,6 +87,7 @@ mod_overview_server <- function(id, tadat) { dplyr::group_by(OrganizationFormalName, OrganizationIdentifier) %>% dplyr::summarise("Result_Count" = length(unique(ResultIdentifier))) %>% dplyr::ungroup() + tadat$org_table <- orgs %>% dplyr::arrange(-Result_Count) %>% dplyr::mutate("Rank" = 1:length(Result_Count)) diff --git a/R/mod_query_data.R b/R/mod_query_data.R index ebc9bf106..8b6b6b0e3 100644 --- a/R/mod_query_data.R +++ b/R/mod_query_data.R @@ -61,7 +61,7 @@ mod_query_data_ui <- function(id) { shiny::fluidRow(column( 4, shiny::dateInput( - ns("startdate"), + ns("startDate"), "Start Date", format = "yyyy-mm-dd", startview = "year" @@ -70,7 +70,7 @@ mod_query_data_ui <- function(id) { column( 4, shiny::dateInput( - ns("enddate"), + ns("endDate"), "End Date", format = "yyyy-mm-dd", startview = "year" @@ -111,7 +111,7 @@ mod_query_data_ui <- function(id) { column( 4, shiny::selectizeInput( - ns("proj"), + ns("project"), "Project(s)", choices = NULL, multiple = TRUE @@ -168,7 +168,7 @@ mod_query_data_ui <- function(id) { shiny::fluidRow( htmltools::h3("Option C: Upload dataset"), htmltools::HTML(( - "Select a file from your computer. This upload feature currently only accepts data in .xls and .xlsx formats. + "Upload a dataset from your computer. This upload feature only accepts data in .xls and .xlsx formats. The file can be a fresh TADA dataset or a working TADA dataset that you are returning to the app to iterate on. Data must also be formatted in the EPA Water Quality eXchange (WQX) schema to leverage this tool. You may reach out to the WQX helpdesk at WQX@epa.gov for assistance preparing and submitting your data @@ -190,9 +190,15 @@ mod_query_data_ui <- function(id) { htmltools::hr(), shiny::fluidRow( - htmltools::h3("Upload Progress File"), + htmltools::h3("Optional: Upload Progress File"), htmltools::HTML(( - "Upload a progress file. These files can be used to automatically parameterize the TADA Shiny app." + "Upload a progress file from your computer. This upload feature only accepts data in the .RData format. + The TADA Shiny application keeps track of all user selections, and makes a .RData file + available for download at any time. If you saved a progress file you generated during a + previous use of the TADA Shiny application, then it can be uploaded here and used + to automatically parameterize the TADA Shiny app with the same selections. This file can + be used to regenerate a dataset with the same decisions as before, or can be used + to apply the same user selctions to a new dataset" ) ), # widget to upload WQP profile or WQX formatted spreadsheet @@ -218,15 +224,26 @@ mod_query_data_server <- function(id, tadat) { ns <- session$ns # read in the excel spreadsheet dataset if this input reactive object is populated via fileInput and define as tadat$raw - shiny::observe({ - shiny::req(input$file) + shiny::observeEvent(input$file,{ + # a modal that pops up showing it's working on querying the portal + shinybusy::show_modal_spinner( + spin = "double-bounce", + color = "#0071bc", + text = "Uploading dataset...", + session = shiny::getDefaultReactiveDomain() + ) + # user uploaded data raw <- suppressWarnings(readxl::read_excel(input$file$datapath, sheet = 1)) + raw$TADA.Remove <- NULL initializeTable(tadat, raw) if (!is.null(tadat$original_source)){ tadat$original_source <- "Upload" } + + shinybusy::remove_modal_spinner(session = shiny::getDefaultReactiveDomain()) + }) # Read the TADA progress file @@ -238,6 +255,14 @@ mod_query_data_server <- function(id, tadat) { # if user presses example data button, make tadat$raw the nutrients dataset contained within the TADA package. shiny::observeEvent(input$example_data_go, { + # a modal that pops up showing it's working on querying the portal + shinybusy::show_modal_spinner( + spin = "double-bounce", + color = "#0071bc", + text = "Loading example data...", + session = shiny::getDefaultReactiveDomain() + ) + tadat$example_data <- input$example_data if (input$example_data == "Shepherdstown (34k results)") { raw <- TADA::Data_NCTCShepherdstown_HUC12 @@ -249,6 +274,9 @@ mod_query_data_server <- function(id, tadat) { raw <- TADA::Data_Nutrients_UT } initializeTable(tadat, raw) + + shinybusy::remove_modal_spinner(session = shiny::getDefaultReactiveDomain()) + }) # this section has widget update commands for the selectizeinputs that have a lot of possible selections - shiny suggested hosting the choices server-side rather than ui-side @@ -277,7 +305,7 @@ mod_query_data_server <- function(id, tadat) { choices = c(chars), server = TRUE) shiny::updateSelectizeInput(session, - "proj", + "project", choices = c(projects), server = TRUE) shiny::updateSelectizeInput( @@ -346,10 +374,10 @@ mod_query_data_server <- function(id, tadat) { } else { tadat$sampleMedia <- input$media } - if (is.null(input$proj)) { + if (is.null(input$project)) { tadat$project <- "null" } else { - tadat$project <- input$proj + tadat$project <- input$project } if (is.null(input$org)) { tadat$organization <- "null" @@ -362,17 +390,17 @@ mod_query_data_server <- function(id, tadat) { tadat$siteid <- input$siteid # siteid = stringr::str_trim(unlist(strsplit(input$siteids,","))) } - if (length(input$enddate) == 0) { + if (length(input$endDate) == 0) { # ensure if date is empty, the query receives a proper input ("null") - tadat$enddate <- "null" + tadat$endDate <- "null" } else { - tadat$enddate <- as.character(input$enddate) + tadat$endDate <- as.character(input$endDate) } - if (length(input$startdate) == 0) { + if (length(input$startDate) == 0) { # ensure if date is empty, the query receives a proper start date. Might want a warning message instead. - tadat$startdate <- "1800-01-01" + tadat$startDate <- "1800-01-01" } else { - tadat$startdate <- as.character(input$startdate) + tadat$startDate <- as.character(input$startDate) } # a modal that pops up showing it's working on querying the portal shinybusy::show_modal_spinner( @@ -394,8 +422,8 @@ mod_query_data_server <- function(id, tadat) { sampleMedia = tadat$sampleMedia, project = tadat$project, organization = tadat$organization, - startDate = tadat$startdate, - endDate = tadat$enddate, + startDate = tadat$startDate, + endDate = tadat$endDate, applyautoclean = TRUE ) @@ -437,10 +465,10 @@ mod_query_data_server <- function(id, tadat) { selected = tadat$characteristicName) shiny::updateSelectizeInput(session, "chargroup", selected = tadat$characteristicType) shiny::updateSelectizeInput(session, "media", selected = tadat$sampleMedia) - shiny::updateSelectizeInput(session, "proj", selected = tadat$proj) + shiny::updateSelectizeInput(session, "project", selected = tadat$project) shiny::updateSelectizeInput(session, "org", selected = tadat$organization) - shiny::updateDateInput(session, "startdate", value = tadat$startDate) - shiny::updateDateInput(session, "enddate", value = tadat$endDate) + shiny::updateDateInput(session, "startDate", value = tadat$startDate) + shiny::updateDateInput(session, "endDate", value = tadat$endDate) } } @@ -475,7 +503,6 @@ initializeTable <- function(tadat, raw) { removals <- data.frame(matrix(nrow = nrow(raw), ncol = 0)) # removals["Media Type"] = ifelse(!raw$TADA.ActivityMediaName%in%c("WATER"),TRUE,raw$Removed) # removals["Special Characters"] = ifelse(raw$TADA.ResultMeasureValueDataTypes.Flag%in%c("ND or NA","Text","Coerced to NA"),TRUE,raw$Removed) - tadat$raw <- raw tadat$removals <- removals } diff --git a/R/mod_review_data.R b/R/mod_review_data.R index 2401b685e..757296d65 100644 --- a/R/mod_review_data.R +++ b/R/mod_review_data.R @@ -43,7 +43,6 @@ mod_review_data_server <- function(id, tadat) { shiny::observeEvent(input$review_go, { removals <- tadat$removals sel <- which(removals == TRUE, arr.ind = TRUE) - print(length(sel)) # Bombing here if (length(sel) > 0) { removals[sel] <- names(removals)[sel[, "col"]] diff --git a/R/utils.R b/R/utils.R index 8e0a76f70..145af68a9 100644 --- a/R/utils.R +++ b/R/utils.R @@ -14,13 +14,13 @@ utils::globalVariables(c( "group", "groupname", "MonitoringLocationTypeName", "quantile", "median", "moduleServer", "Target.TADA.CharacteristicName", - "Target.TADA.MethodSpecificationName", + "Target.TADA.MethodSpeciationName", "write.csv", "read.csv", "downloadHandler", "Rank", "Target.TADA.ResultSampleFractionText", "Field", "characteristicName", "characteristicType", "countycode", "endDate", "example_data", "huc", "m2f", "nd_method", "nd_mult", "od_method", "org_table", - "organization", "original_source", "proj", "sampleMedia", + "organization", "original_source", "project", "sampleMedia", "selected_filters", "selected_flags", "siteType", "siteid", "startDate", "statecode" )) diff --git a/R/utils_flag_functions.R b/R/utils_flag_functions.R index 5ffb40295..262e480bd 100644 --- a/R/utils_flag_functions.R +++ b/R/utils_flag_functions.R @@ -3,23 +3,24 @@ prompt_table <- utils::read.csv("inst/flag_prompts.csv") test_table <- utils::read.csv("inst/flag_tests.csv") # prompt_table = utils::read.csv(app_sys("flag_prompts.csv")) # test_table = utils::read.csv(app_sys("flag_tests.csv")) -prompt_table <- prompt_table[order(prompt_table$Order), ] +prompt_table <- prompt_table[order(prompt_table$Order),] prompts <- prompt_table$Prompt +active_flags = unique(merge(prompt_table, test_table)$columnName) levs <- prompt_table$Level n_switches <- length(prompts) flag_types <- prompt_table$flagType - - +flag_prefix = "Flag: " flagCensus <- function(raw) { # JCH - seems like there are NA values here that aren't getting counted right - tabular_results <- data.frame(matrix(ncol = length(flag_types), nrow = nrow(raw))) + tabular_results <- + data.frame(matrix(ncol = length(flag_types), nrow = nrow(raw))) colnames(tabular_results) <- flag_types - + test_table <- subset(test_table, test_table$remove == 1) for (flag in flag_types) { flag_count <- 0 - tests <- test_table[test_table$flagType == flag, ] + tests <- test_table[test_table$flagType == flag,] results <- integer(nrow(raw)) if (nrow(tests) > 0) { for (row in 1:nrow(tests)) { @@ -30,14 +31,15 @@ flagCensus <- function(raw) { if (!is.na(test_val)) { rawt_col <- raw[, test_col] rawt_col[is.na(rawt_col)] <- "NA" - test_results <- as.integer(as.logical(rawt_col == test_val)) + test_results <- + as.integer(as.logical(rawt_col == test_val)) } else { test_results <- as.integer(as.logical(is.na(raw[test_col]))) } if (tests[row, "keep"]) { test_results <- !test_results } else { - + } results <- results + test_results } @@ -47,27 +49,25 @@ flagCensus <- function(raw) { print(paste0("No tests found for flag ", flag)) } } - + return(tabular_results) } getCounts <- function(sites, removed_records) { - summary_names <- c( - "Total in Raw File", - "Total Removed", - "Total in Clean File" - ) - + summary_names <- c("Total in Raw File", + "Total Removed", + "Total in Clean File") + # Records n_raw_records <- length(removed_records) n_removed_records <- sum(removed_records) n_clean_records <- n_raw_records - n_removed_records - + # Sites n_raw_sites <- length(unique(sites)) n_removed_sites <- length(unique(sites[removed_records])) n_clean_sites <- n_raw_sites - n_removed_sites - + summaryTable <- data.frame( row.names = summary_names, Records = c(n_raw_records, n_removed_records, n_clean_records), @@ -77,24 +77,25 @@ getCounts <- function(sites, removed_records) { } # Settings for each flag function in flag page mock up applyFlags <- function(in_table, orgs) { + out <- TADA::TADA_IDCensoredData(in_table) # Invalid Speciation - out <- TADA::TADA_FlagSpeciation(in_table, clean = "none") + out <- TADA::TADA_FlagSpeciation(out, clean = "none") # Invalid fraction out <- TADA::TADA_FlagFraction(out, clean = FALSE) # Invalid result unit out <- TADA::TADA_FlagResultUnit(out, clean = "none") - + # QC rep/blank out <- TADA::TADA_FindQCActivities(out, clean = FALSE) # Result is flagged as suspect by data submitter - out <- TADA::TADA_FlagMeasureQualifierCode(out, clean = FALSE) + out <- TADA::TADA_FlagMeasureQualifierCode(out, clean = FALSE, define = TRUE) # Invalid analytical method out <- TADA::TADA_FlagMethod(out, clean = FALSE) - + # Single org duplicative uploads out <- TADA::TADA_FindPotentialDuplicatesSingleOrg(out) @@ -105,11 +106,12 @@ applyFlags <- function(in_table, orgs) { # QAPP Not Approved - this flag isn't looking for a TADA-created flag column, # so do not need to run any flag function here. If switched ON, remove all data # with QAPPApproved == N or NA. - + # No QAPP doc available if ("ProjectFileUrl" %in% names(out)) { out <- TADA::TADA_FindQAPPDoc(out, clean = FALSE) } + # Dataset includes depth profile data - no function for this yet # out <- out @@ -131,22 +133,19 @@ applyFlags <- function(in_table, orgs) { flaggedonly = FALSE ) - return(out) } -checkFlagColumns <- function(dataset){ - # Flags that, as of 11/16/23, aren't being used - flags_not_required = c("TADA.InvalidCoordinates.Flag", "TADA.SingleOrgDup.Flag") - flag_cols = setdiff(unique(test_table$columnName), flags_not_required) - dataset_cols = names(dataset) - found = intersect(flag_cols, dataset_cols) - if (length(flag_cols) == length(found)){ - return(TRUE) - } else { - +checkFlagColumns <- function(dataset) { + missing <- setdiff(active_flags, names(dataset)) + found = setdiff(active_flags, missing) + if (length(missing) > length(found)) { return(FALSE) + } else { + if (length(missing) > 0){ + print("Missing the following fields that are in the csv files:") + print(missing) + } + return(TRUE) } - - -} +} \ No newline at end of file diff --git a/R/utils_track_progress.R b/R/utils_track_progress.R index 037cd6ab6..7b6ab224a 100644 --- a/R/utils_track_progress.R +++ b/R/utils_track_progress.R @@ -11,7 +11,7 @@ writeFile <- function(tadat, filename) { characteristicName = tadat$characteristicName characteristicType = tadat$characteristicType sampleMedia = tadat$sampleMedia - proj = tadat$proj + project = tadat$project organization = tadat$organization startDate = tadat$startDate endDate = tadat$endDate @@ -23,6 +23,7 @@ writeFile <- function(tadat, filename) { od_method <- tadat$od_method nd_mult <- tadat$nd_mult od_mult <- tadat$od_mult + field_sel <- tadat$field_sel save( original_source, @@ -36,7 +37,7 @@ writeFile <- function(tadat, filename) { characteristicName, characteristicType, sampleMedia, - proj, + project, organization, startDate, endDate, @@ -48,6 +49,7 @@ writeFile <- function(tadat, filename) { od_method, nd_mult, od_mult, + field_sel, file = filename ) @@ -55,9 +57,8 @@ writeFile <- function(tadat, filename) { readFile <- function(tadat, filename) { load(filename, verbose = FALSE) - checkFlagColumns(tadat$raw) tadat$load_progress_file = filename - + # Confirm compatibility job_id = job_id if (!is.null(m2f)) { @@ -68,8 +69,6 @@ readFile <- function(tadat, filename) { if (!is.null(selected_flags)) { tadat$selected_flags = selected_flags shinyjs::enable(selector = '.nav li a[data-value="Flag"]') - } else { - print("No flags selected") } # Enable tabs if certain fields are not null @@ -88,27 +87,29 @@ readFile <- function(tadat, filename) { tadat$characteristicName = characteristicName tadat$characteristicType = characteristicType tadat$sampleMedia = sampleMedia - tadat$proj = proj + tadat$project = project tadat$organization = organization tadat$startDate = startDate tadat$endDate = endDate tadat$org_table = org_table - tadat$m2f = m2f tadat$selected_filters = selected_filters tadat$nd_method = nd_method tadat$od_method = od_method tadat$nd_mult = nd_mult - tadat$od_mult + tadat$od_mult = od_mult + tadat$field_sel = field_sel } invalidFile <- function(trigger) { - print("Failure") + print("Failure: Invalid File") print(trigger) } writeNarrativeDataFrame <- function(tadat) { + # sampleMedia needs to be a single string for this part + tadat$sampleMedia = paste(tadat$sampleMedia, collapse=" ") df <- data.frame(Parameter=character(), Value=character()) df[nrow(df) + 1, ] = c("TADA Shiny Job ID", tadat$job_id) df[nrow(df) + 1, ] = c("Original data source: ", tadat$original_source) @@ -141,7 +142,7 @@ writeNarrativeDataFrame <- function(tadat) { tadat$characteristicName, tadat$characteristicType, tadat$sampleMedia, - tadat$proj, + tadat$project, tadat$organization, tadat$startDate, tadat$endDate diff --git a/dev/01_start.R b/dev/01_start.R index b421f7cc0..da736acd2 100644 --- a/dev/01_start.R +++ b/dev/01_start.R @@ -1,7 +1,7 @@ # Building a Prod-Ready, Robust Shiny Application. # # README: each step of the dev files is optional, and you don't have to -# fill every dev scripts before getting started. +# fill every dev script before getting started. # 01_start.R should be filled at start. # 02_dev.R should be used to keep track of your development during the project. # 03_deploy.R should be used once you need to deploy your app. diff --git a/dev/02_dev.R b/dev/02_dev.R index ad759e9f7..67d0cf1d8 100644 --- a/dev/02_dev.R +++ b/dev/02_dev.R @@ -42,19 +42,19 @@ usethis::use_package("combinat") ## Add modules ---- ## Create a module infrastructure in R/ -##golem::add_module( name = "name_of_module1" ) # Name of the module -## golem::add_module( name = "import" ) # Name of the import module -# golem::add_module(name = "query_data", with_test = TRUE) # Name of the module -# golem::add_module(name = "overview", with_test = TRUE) # Name of the module -# golem::add_module(name = "upload_data", with_test = TRUE) # Name of the module -# golem::add_module(name = "summary", with_test = TRUE) # Name of the module -# golem::add_module(name = "TADA_summary") # Name of the module -# golem::add_module(name = "censored_data") +golem::add_module( name = "name_of_module1" ) # Name of the module +golem::add_module( name = "import" ) # Name of the import module +golem::add_module(name = "query_data", with_test = TRUE) # Name of the module +golem::add_module(name = "overview", with_test = TRUE) # Name of the module +golem::add_module(name = "upload_data", with_test = TRUE) # Name of the module +golem::add_module(name = "summary", with_test = TRUE) # Name of the module +golem::add_module(name = "TADA_summary") # Name of the module +golem::add_module(name = "censored_data") ## Add helper functions ---- ## Creates fct_* and utils_* -##golem::add_fct( "helpers" ) -##golem::add_utils( "helpers" ) +golem::add_fct( "helpers" ) +golem::add_utils( "helpers" ) ## External resources @@ -81,11 +81,6 @@ devtools::build_vignettes() ## Set the code coverage service ("codecov" or "coveralls") usethis::use_coverage() -# Create a summary readme for the testthat subdirectory -# Not available on CRAN -# remotes::install_github('yonicd/covrpage') -# covrpage::covrpage() - ## CI ---- ## Use this part of the script if you need to set up a CI ## service for your application diff --git a/flagged.csv b/flagged.csv new file mode 100644 index 000000000..083cd0966 --- /dev/null +++ b/flagged.csv @@ -0,0 +1,14593 @@ +"","ActivityTypeCode","TADA.ActivityType.Flag","ActivityMediaName","TADA.ActivityMediaName","ActivityMediaSubdivisionName","ResultSampleFractionText","TADA.ResultSampleFractionText","TADA.SampleFraction.Flag","CharacteristicName","TADA.CharacteristicName","SubjectTaxonomicName","SampleTissueAnatomyName","MethodSpeciationName","TADA.MethodSpeciationName","TADA.MethodSpeciation.Flag","TADA.ComparableDataIdentifier","ActivityStartDate","ActivityStartTime.Time","ActivityStartTime.TimeZoneCode","ActivityStartDateTime","ResultTimeBasisText","ResultMeasureValue","TADA.ResultMeasureValue","TADA.ResultMeasureValueDataTypes.Flag","ResultValueTypeName","TADA.ResultValueAboveUpperThreshold.Flag","TADA.ResultValueBelowLowerThreshold.Flag","ResultMeasure.MeasureUnitCode","TADA.ResultMeasure.MeasureUnitCode","TADA.WQXResultUnitConversion","TADA.ResultUnit.Flag","ResultDetectionConditionText","DetectionQuantitationLimitTypeName","DetectionQuantitationLimitMeasure.MeasureValue","TADA.DetectionQuantitationLimitMeasure.MeasureValue","TADA.DetectionQuantitationLimitMeasure.MeasureValueDataTypes.Flag","DetectionQuantitationLimitMeasure.MeasureUnitCode","TADA.DetectionQuantitationLimitMeasure.MeasureUnitCode","TADA.CensoredData.Flag","ResultDepthHeightMeasure.MeasureValue","TADA.ResultDepthHeightMeasure.MeasureValue","TADA.ResultDepthHeightMeasure.MeasureValueDataTypes.Flag","ResultDepthHeightMeasure.MeasureUnitCode","TADA.ResultDepthHeightMeasure.MeasureUnitCode","ResultDepthAltitudeReferencePointText","ActivityRelativeDepthName","ActivityDepthHeightMeasure.MeasureValue","TADA.ActivityDepthHeightMeasure.MeasureValue","TADA.ActivityDepthHeightMeasure.MeasureValueDataTypes.Flag","ActivityDepthHeightMeasure.MeasureUnitCode","TADA.ActivityDepthHeightMeasure.MeasureUnitCode","ActivityTopDepthHeightMeasure.MeasureValue","TADA.ActivityTopDepthHeightMeasure.MeasureValue","TADA.ActivityTopDepthHeightMeasure.MeasureValueDataTypes.Flag","ActivityTopDepthHeightMeasure.MeasureUnitCode","TADA.ActivityTopDepthHeightMeasure.MeasureUnitCode","ActivityBottomDepthHeightMeasure.MeasureValue","TADA.ActivityBottomDepthHeightMeasure.MeasureValue","TADA.ActivityBottomDepthHeightMeasure.MeasureValueDataTypes.Flag","ActivityBottomDepthHeightMeasure.MeasureUnitCode","TADA.ActivityBottomDepthHeightMeasure.MeasureUnitCode","StatisticalBaseCode","ResultFileUrl","TADA.AggregatedContinuousData.Flag","ResultAnalyticalMethod.MethodName","ResultAnalyticalMethod.MethodDescriptionText","ResultAnalyticalMethod.MethodIdentifier","ResultAnalyticalMethod.MethodIdentifierContext","ResultAnalyticalMethod.MethodUrl","TADA.AnalyticalMethod.Flag","SampleCollectionMethod.MethodIdentifier","SampleCollectionMethod.MethodIdentifierContext","SampleCollectionMethod.MethodName","SampleCollectionMethod.MethodDescriptionText","SampleCollectionEquipmentName","MeasureQualifierCode","TADA.MeasureQualifierCode.Flag","TADA.MeasureQualifierCode.Def","ResultCommentText","ActivityCommentText","HydrologicCondition","HydrologicEvent","DataQuality.PrecisionValue","DataQuality.BiasValue","DataQuality.ConfidenceIntervalValue","DataQuality.UpperConfidenceLimitValue","DataQuality.LowerConfidenceLimitValue","SamplingDesignTypeCode","LaboratoryName","ResultLaboratoryCommentText","ResultIdentifier","ActivityIdentifier","OrganizationIdentifier","OrganizationFormalName","TADA.MultipleOrgDuplicate","TADA.MultipleOrgDupGroupID","TADA.ResultSelectedMultipleOrgs","TADA.SingleOrgDupGroupID","TADA.SingleOrgDup.Flag","ProjectName","ProjectDescriptionText","ProjectIdentifier","ProjectFileUrl","QAPPApprovedIndicator","QAPPApprovalAgencyName","TADA.QAPPDocAvailable","CountryCode","StateCode","CountyCode","MonitoringLocationName","MonitoringLocationTypeName","MonitoringLocationDescriptionText","LatitudeMeasure","TADA.LatitudeMeasure","LongitudeMeasure","TADA.LongitudeMeasure","TADA.InvalidCoordinates.Flag","HUCEightDigitCode","MonitoringLocationIdentifier","AquiferName","AquiferTypeName","LocalAqfrName","ConstructionDateText","WellDepthMeasure.MeasureValue","WellDepthMeasure.MeasureUnitCode","WellHoleDepthMeasure.MeasureValue","WellHoleDepthMeasure.MeasureUnitCode","ProviderName","LastUpdated","TADA.Remove","TADAShiny.tab","ActivityDepthAltitudeReferencePointText","ActivityEndDate","ActivityEndTime.Time","ActivityEndTime.TimeZoneCode","ActivityEndDateTime","ActivityConductingOrganizationText","SampleAquifer","ActivityLocation.LatitudeMeasure","ActivityLocation.LongitudeMeasure","ResultStatusIdentifier","ResultWeightBasisText","ResultTemperatureBasisText","ResultParticleSizeBasisText","USGSPCode","BinaryObjectFileName","BinaryObjectFileTypeCode","AnalysisStartDate","ResultDetectionQuantitationLimitUrl","LabSamplePreparationUrl","timeZoneStart","timeZoneEnd","SourceMapScaleNumeric","HorizontalAccuracyMeasure.MeasureValue","HorizontalAccuracyMeasure.MeasureUnitCode","HorizontalCollectionMethodName","HorizontalCoordinateReferenceSystemDatumName","VerticalMeasure.MeasureValue","VerticalMeasure.MeasureUnitCode","VerticalAccuracyMeasure.MeasureValue","VerticalAccuracyMeasure.MeasureUnitCode","VerticalCollectionMethodName","VerticalCoordinateReferenceSystemDatumName","FormationTypeText","ProjectMonitoringLocationWeightingUrl","DrainageAreaMeasure.MeasureValue","DrainageAreaMeasure.MeasureUnitCode","ContributingDrainageAreaMeasure.MeasureValue","ContributingDrainageAreaMeasure.MeasureUnitCode" +"638","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-01","13:15:00","MDT","2020-10-01 19:15:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119848875","nwisut.01.02100015","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"2056","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2020-10-01","13:15:00","MDT","2020-10-01 19:15:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-119848885","nwisut.01.02100015","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2020-11-20",NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"640","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-01","13:15:00","MDT","2020-10-01 19:15:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119848892","nwisut.01.02100015","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"641","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-01","13:20:00","MDT","2020-10-01 19:20:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119850283","nwisut.01.02100014","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"2059","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2020-10-01","13:20:00","MDT","2020-10-01 19:20:00",NA,"2.22",2220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-119850292","nwisut.01.02100014","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2020-11-20",NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"643","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-01","13:20:00","MDT","2020-10-01 19:20:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119850297","nwisut.01.02100014","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"644","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-03","10:30:00","MDT","2020-10-03 16:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119863469","nwisut.01.02100021","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06055556000000",41.06055556,"-112.2483333000000",-112.2483333,"OK","16020310","USGS-410338112145401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"645","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-03","10:30:00","MDT","2020-10-03 16:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119863479","nwisut.01.02100021","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06055556000000",41.06055556,"-112.2483333000000",-112.2483333,"OK","16020310","USGS-410338112145401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"646","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-03","13:00:00","MDT","2020-10-03 19:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119863489","nwisut.01.02100022","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.01500000000000",41.015,"-112.2555556000000",-112.2555556,"OK","16020310","USGS-410054112152001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"647","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-03","13:00:00","MDT","2020-10-03 19:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119863499","nwisut.01.02100022","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.01500000000000",41.015,"-112.2555556000000",-112.2555556,"OK","16020310","USGS-410054112152001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"648","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","10:30:00","MDT","2020-10-05 16:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878686","nwisut.01.02100071","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"649","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","10:30:00","MDT","2020-10-05 16:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878697","nwisut.01.02100071","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"650","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","10:50:00","MDT","2020-10-05 16:50:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878716","nwisut.01.02100072","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"651","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","10:50:00","MDT","2020-10-05 16:50:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878726","nwisut.01.02100072","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"652","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","11:45:00","MDT","2020-10-05 17:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878744","nwisut.01.02100073","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"653","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","11:45:00","MDT","2020-10-05 17:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878754","nwisut.01.02100073","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"654","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","11:50:00","MDT","2020-10-05 17:50:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878772","nwisut.01.02100074","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"655","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","11:50:00","MDT","2020-10-05 17:50:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878782","nwisut.01.02100074","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"656","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","12:30:00","MDT","2020-10-05 18:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878800","nwisut.01.02100075","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"657","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","12:30:00","MDT","2020-10-05 18:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878810","nwisut.01.02100075","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"658","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","13:00:00","MDT","2020-10-05 19:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878919","nwisut.01.02100079","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"659","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","13:00:00","MDT","2020-10-05 19:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878929","nwisut.01.02100079","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"660","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","14:00:00","MDT","2020-10-05 20:00:00",NA,NA,33,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.033",33,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878947","nwisut.01.02100080","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"661","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","14:00:00","MDT","2020-10-05 20:00:00",NA,NA,148,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.148",148,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878957","nwisut.01.02100080","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"662","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","14:05:00","MDT","2020-10-05 20:05:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878975","nwisut.01.02100081","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"663","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-05","14:05:00","MDT","2020-10-05 20:05:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119878985","nwisut.01.02100081","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"664","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-10-14","14:00:00","MDT","2020-10-14 20:00:00",NA,"0.244",244,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119951191","nwisut.01.02100128","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2082","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2020-10-14","14:00:00","MDT","2020-10-14 20:00:00",NA,"0.138",138,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-119951226","nwisut.01.02100128","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2020-11-25",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"666","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-10-14","14:00:00","MDT","2020-10-14 20:00:00",NA,"1.08",1080,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119951318","nwisut.01.02100128","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"667","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-10-14","11:00:00","MDT","2020-10-14 17:00:00",NA,"4.00",4000,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119951375","nwisut.01.02100129","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2085","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2020-10-14","11:00:00","MDT","2020-10-14 17:00:00",NA,"0.133",133,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-119951410","nwisut.01.02100129","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2020-11-25",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"669","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-10-14","11:00:00","MDT","2020-10-14 17:00:00",NA,"17.7",17700,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119951502","nwisut.01.02100129","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"670","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-01","13:00:00","MDT","2020-10-01 19:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119951551","nwisut.01.02100130","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"671","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-01","13:00:00","MDT","2020-10-01 19:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-119951578","nwisut.01.02100130","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"672","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-11-05","13:00:00","MST","2020-11-05 20:00:00",NA,"0.442",442,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120022292","nwisut.01.02100142","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"673","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-11-05","13:00:00","MST","2020-11-05 20:00:00",NA,"1.95",1950,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120022416","nwisut.01.02100142","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"674","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-11-05","10:00:00","MST","2020-11-05 17:00:00",NA,"6.69",6690,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120022469","nwisut.01.02100143","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"675","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-11-05","10:00:00","MST","2020-11-05 17:00:00",NA,"29.6",29600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120022593","nwisut.01.02100143","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"676","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-11-06","14:40:00","MST","2020-11-06 21:40:00",NA,"1.27",1270,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037444","nwisut.01.02100154","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"677","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-11-06","14:40:00","MST","2020-11-06 21:40:00",NA,"5.62",5620,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037463","nwisut.01.02100154","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"678","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-11-06","12:00:00","MST","2020-11-06 19:00:00",NA,"1.71",1710,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037491","nwisut.01.02100155","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"679","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-11-06","12:00:00","MST","2020-11-06 19:00:00",NA,"7.58",7580,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037510","nwisut.01.02100155","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"680","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-05","12:30:00","MST","2020-11-05 19:30:00",NA,NA,30,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.03",30,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037538","nwisut.01.02100156","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"681","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-05","12:30:00","MST","2020-11-05 19:30:00",NA,NA,135,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.135",135,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037554","nwisut.01.02100156","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"682","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","10:30:00","MDT","2020-10-29 16:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037579","nwisut.01.02100157","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"683","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","10:30:00","MDT","2020-10-29 16:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037589","nwisut.01.02100157","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"684","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","10:40:00","MDT","2020-10-29 16:40:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037607","nwisut.01.02100158","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"685","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","10:40:00","MDT","2020-10-29 16:40:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037617","nwisut.01.02100158","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"686","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","11:45:00","MDT","2020-10-29 17:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037635","nwisut.01.02100159","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"687","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","11:45:00","MDT","2020-10-29 17:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037645","nwisut.01.02100159","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"688","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","12:50:00","MDT","2020-10-29 18:50:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037663","nwisut.01.02100161","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"689","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","12:50:00","MDT","2020-10-29 18:50:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037673","nwisut.01.02100161","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"690","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","13:00:00","MDT","2020-10-29 19:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037691","nwisut.01.02100162","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"691","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","13:00:00","MDT","2020-10-29 19:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037701","nwisut.01.02100162","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"692","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","13:45:00","MDT","2020-10-29 19:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037719","nwisut.01.02100163","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"693","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","13:45:00","MDT","2020-10-29 19:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037729","nwisut.01.02100163","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"694","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","13:50:00","MDT","2020-10-29 19:50:00",NA,NA,37,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.037",37,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.3",1.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037747","nwisut.01.02100164","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"695","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","13:50:00","MDT","2020-10-29 19:50:00",NA,NA,162,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.162",162,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.3",1.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037757","nwisut.01.02100164","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"696","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-05","13:55:00","MST","2020-11-05 20:55:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037772","nwisut.01.02100165","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"697","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-05","13:55:00","MST","2020-11-05 20:55:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120037783","nwisut.01.02100165","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"698","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-11-19","11:00:00","MST","2020-11-19 18:00:00",NA,"0.187",187,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120097867","nwisut.01.02100203","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2116","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2020-11-19","11:00:00","MST","2020-11-19 18:00:00",NA,"0.034",34,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-120097902","nwisut.01.02100203","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2020-12-23",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"700","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-11-19","11:00:00","MST","2020-11-19 18:00:00",NA,"0.829",829,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120097994","nwisut.01.02100203","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"701","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","14:45:00","MDT","2020-10-29 20:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101623","nwisut.01.02100225","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"702","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","14:45:00","MDT","2020-10-29 20:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101634","nwisut.01.02100225","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"703","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","15:20:00","MDT","2020-10-29 21:20:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101649","nwisut.01.02100226","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"704","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","15:20:00","MDT","2020-10-29 21:20:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101660","nwisut.01.02100226","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"705","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","13:00:00","MDT","2020-10-29 19:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101675","nwisut.01.02100227","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"706","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","13:00:00","MDT","2020-10-29 19:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101686","nwisut.01.02100227","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"828","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","14:30:00","MDT","2020-10-30 20:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101703","nwisut.01.02100228","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"708","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","14:30:00","MDT","2020-10-30 20:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101714","nwisut.01.02100228","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"709","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","15:15:00","MDT","2020-10-30 21:15:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.8",0.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101731","nwisut.01.02100229","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"710","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","15:15:00","MDT","2020-10-30 21:15:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.8",0.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101742","nwisut.01.02100229","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"711","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","10:15:00","MDT","2020-10-30 16:15:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101759","nwisut.01.02100230","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"41.03965920000000",41.0396592,"-112.5060734000000",-112.5060734,"OK","16020310","USGS-410323112301901",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"712","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","10:15:00","MDT","2020-10-30 16:15:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101770","nwisut.01.02100230","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"41.03965920000000",41.0396592,"-112.5060734000000",-112.5060734,"OK","16020310","USGS-410323112301901",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"713","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","10:50:00","MDT","2020-10-30 16:50:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"3.4",3.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101787","nwisut.01.02100231","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"41.03965920000000",41.0396592,"-112.5060734000000",-112.5060734,"OK","16020310","USGS-410323112301901",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"714","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","10:50:00","MDT","2020-10-30 16:50:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"3.4",3.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101798","nwisut.01.02100231","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"41.03965920000000",41.0396592,"-112.5060734000000",-112.5060734,"OK","16020310","USGS-410323112301901",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"715","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-03","10:10:00","MST","2020-11-03 17:10:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101815","nwisut.01.02100232","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"716","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-03","10:10:00","MST","2020-11-03 17:10:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101826","nwisut.01.02100232","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"717","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-03","10:45:00","MST","2020-11-03 17:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.6",6.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101843","nwisut.01.02100233","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"718","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-03","10:45:00","MST","2020-11-03 17:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.6",6.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101854","nwisut.01.02100233","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"719","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-03","12:45:00","MST","2020-11-03 19:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101869","nwisut.01.02100234","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"720","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-03","12:45:00","MST","2020-11-03 19:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101880","nwisut.01.02100234","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"721","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-03","13:30:00","MST","2020-11-03 20:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"3.3",3.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101895","nwisut.01.02100235","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"722","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-03","13:30:00","MST","2020-11-03 20:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"3.3",3.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101906","nwisut.01.02100235","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"723","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","12:30:00","MDT","2020-10-30 18:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101923","nwisut.01.02100236","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"724","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","12:30:00","MDT","2020-10-30 18:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101934","nwisut.01.02100236","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"725","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","13:00:00","MDT","2020-10-30 19:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.4",6.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101951","nwisut.01.02100237","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"726","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-30","13:00:00","MDT","2020-10-30 19:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.4",6.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120101962","nwisut.01.02100237","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"727","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-11-19","15:40:00","MST","2020-11-19 22:40:00",NA,"0.028",28,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US D-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120139714","nwisut.01.02100272","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"728","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-11-19","15:40:00","MST","2020-11-19 22:40:00",NA,"0.122",122,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US D-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120139737","nwisut.01.02100272","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"729","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-11-04","16:30:00","MST","2020-11-04 23:30:00",NA,"8.58",8580,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,"83",25.2984,"Numeric","feet","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164122","nwisut.01.02100280","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.58994167000000",40.58994167,"-111.8580472000000",-111.8580472,"OK","16020204","USGS-403524111512901","Basin and Range basin-fill aquifers","Unconfined single aquifer",NA,"19990614","88.5","ft","88.5","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4640","feet","5","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"730","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-11-04","16:30:00","MST","2020-11-04 23:30:00",NA,"38.0",38000,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,"83",25.2984,"Numeric","feet","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164427","nwisut.01.02100280","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.58994167000000",40.58994167,"-111.8580472000000",-111.8580472,"OK","16020204","USGS-403524111512901","Basin and Range basin-fill aquifers","Unconfined single aquifer",NA,"19990614","88.5","ft","88.5","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4640","feet","5","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"731","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","10:40:00","MST","2020-11-30 17:40:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164557","nwisut.01.02100282","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"732","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","10:40:00","MST","2020-11-30 17:40:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164567","nwisut.01.02100282","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"733","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","10:50:00","MST","2020-11-30 17:50:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164584","nwisut.01.02100283","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"734","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","10:50:00","MST","2020-11-30 17:50:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164594","nwisut.01.02100283","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"735","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","11:55:00","MST","2020-11-30 18:55:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164611","nwisut.01.02100284","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"736","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","11:55:00","MST","2020-11-30 18:55:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164621","nwisut.01.02100284","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"737","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","12:00:00","MST","2020-11-30 19:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164638","nwisut.01.02100285","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"738","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","12:00:00","MST","2020-11-30 19:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164648","nwisut.01.02100285","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"739","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","12:45:00","MST","2020-11-30 19:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164665","nwisut.01.02100286","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"740","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","12:45:00","MST","2020-11-30 19:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164675","nwisut.01.02100286","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"741","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","13:00:00","MST","2020-11-30 20:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"3.0",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164692","nwisut.01.02100287","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"742","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","13:00:00","MST","2020-11-30 20:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"3.0",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164702","nwisut.01.02100287","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"743","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","13:30:00","MST","2020-11-30 20:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164719","nwisut.01.02100288","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"744","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","13:30:00","MST","2020-11-30 20:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164729","nwisut.01.02100288","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"866","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","13:40:00","MST","2020-11-30 20:40:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.0",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164746","nwisut.01.02100289","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"746","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-11-30","13:40:00","MST","2020-11-30 20:40:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.0",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164756","nwisut.01.02100289","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"747","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-12-03","13:00:00","MST","2020-12-03 20:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164775","nwisut.01.02100290","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"748","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-12-03","13:00:00","MST","2020-12-03 20:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164788","nwisut.01.02100290","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"749","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-12-03","12:30:00","MST","2020-12-03 19:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164817","nwisut.01.02100291","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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",NA,NA,NA,NA,NA,NA +"750","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-12-03","12:30:00","MST","2020-12-03 19:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120164831","nwisut.01.02100291","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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",NA,NA,NA,NA,NA,NA +"751","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-12-10","12:00:00","MST","2020-12-10 19:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120201777","nwisut.01.02100326","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"752","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-12-10","12:00:00","MST","2020-12-10 19:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120201804","nwisut.01.02100326","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"753","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-12-03","11:00:00","MST","2020-12-03 18:00:00",NA,"0.529",529,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120201836","nwisut.01.02100327","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2171","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2020-12-03","11:00:00","MST","2020-12-03 18:00:00",NA,"0.031",31,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-120201871","nwisut.01.02100327","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-01-12",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1119","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-12-03","11:00:00","MST","2020-12-03 18:00:00",NA,"2.34",2340,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120201963","nwisut.01.02100327","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"756","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-12-22","11:00:00","MST","2020-12-22 18:00:00",NA,"0.732",732,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120246207","nwisut.01.02100358","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2174","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2020-12-22","11:00:00","MST","2020-12-22 18:00:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120246242","nwisut.01.02100358","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-03-11",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1122","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-12-22","11:00:00","MST","2020-12-22 18:00:00",NA,"3.24",3240,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120246334","nwisut.01.02100358","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"759","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-12-21","12:30:00","MST","2020-12-21 19:30:00",NA,"0.063",63,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120291679","nwisut.01.02100387","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"760","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-12-21","12:30:00","MST","2020-12-21 19:30:00",NA,"0.279",279,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120291698","nwisut.01.02100387","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"761","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-12-28","15:30:00","MST","2020-12-28 22:30:00",NA,"0.031",31,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Regulated flow",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120291720","nwisut.01.02100388","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"762","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-12-28","15:30:00","MST","2020-12-28 22:30:00",NA,"0.135",135,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Regulated flow",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120291745","nwisut.01.02100388","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"763","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-12-17","11:00:00","MST","2020-12-17 18:00:00",NA,"4.92",4920,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120314528","nwisut.01.02100417","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2181","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2020-12-17","11:00:00","MST","2020-12-17 18:00:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120314562","nwisut.01.02100417","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-01-21",NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"765","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-12-17","11:00:00","MST","2020-12-17 18:00:00",NA,"21.8",21800,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120314654","nwisut.01.02100417","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"766","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-01-07","10:00:00","MST","2021-01-07 17:00:00",NA,"5.52",5520,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120314735","nwisut.01.02100421","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2184","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-01-07","10:00:00","MST","2021-01-07 17:00:00",NA,"0.189",189,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120314770","nwisut.01.02100421","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-03-18",NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"768","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-01-07","10:00:00","MST","2021-01-07 17:00:00",NA,"24.4",24400,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120314862","nwisut.01.02100421","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"769","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-01-07","00:00:00","MST","2021-01-07 07:00:00",NA,"0.792",792,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120314921","nwisut.01.02100422","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2187","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-01-07","00:00:00","MST","2021-01-07 07:00:00",NA,"0.054",54,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-120314956","nwisut.01.02100422","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-03-18",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"771","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-01-07","00:00:00","MST","2021-01-07 07:00:00",NA,"3.51",3510,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120315047","nwisut.01.02100422","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"772","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-12-16","11:00:00","MST","2020-12-16 18:00:00",NA,"4.05",4050,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120343867","nwisut.01.02100429","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"773","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-12-16","11:00:00","MST","2020-12-16 18:00:00",NA,"17.9",17900,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120343887","nwisut.01.02100429","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"774","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-12-15","14:00:00","MST","2020-12-15 21:00:00",NA,"1.64",1640,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120343916","nwisut.01.02100430","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"775","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-12-15","14:00:00","MST","2020-12-15 21:00:00",NA,"7.27",7270,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120343937","nwisut.01.02100430","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"776","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2020-12-15","11:30:00","MST","2020-12-15 18:30:00",NA,"4.33",4330,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120343967","nwisut.01.02100431","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"777","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2020-12-15","11:30:00","MST","2020-12-15 18:30:00",NA,"19.2",19200,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120343987","nwisut.01.02100431","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"778","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-01-13","13:00:00","MST","2021-01-13 20:00:00",NA,"0.019",19,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120367455","nwisut.01.02100443","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"779","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-01-13","13:00:00","MST","2021-01-13 20:00:00",NA,"0.085",85,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120367482","nwisut.01.02100443","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"780","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-01-21","10:00:00","MST","2021-01-21 17:00:00",NA,"0.930",930,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120395326","nwisut.01.02100465","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2198","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-01-21","10:00:00","MST","2021-01-21 17:00:00",NA,"0.051",51,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-120395361","nwisut.01.02100465","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-03-19",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"782","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-01-21","10:00:00","MST","2021-01-21 17:00:00",NA,"4.12",4120,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120395453","nwisut.01.02100465","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"783","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-01-16","10:30:00","MST","2021-01-16 17:30:00",NA,"0.702",702,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120415005","nwisut.01.02100458","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06055556000000",41.06055556,"-112.2483333000000",-112.2483333,"OK","16020310","USGS-410338112145401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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",NA,NA,NA,NA,NA,NA +"784","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-01-16","10:30:00","MST","2021-01-16 17:30:00",NA,"3.11",3110,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120415016","nwisut.01.02100458","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06055556000000",41.06055556,"-112.2483333000000",-112.2483333,"OK","16020310","USGS-410338112145401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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",NA,NA,NA,NA,NA,NA +"785","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-16","13:40:00","MST","2021-01-16 20:40:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120415028","nwisut.01.02100459","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.01500000000000",41.015,"-112.2555556000000",-112.2555556,"OK","16020310","USGS-410054112152001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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",NA,NA,NA,NA,NA,NA +"786","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-16","13:40:00","MST","2021-01-16 20:40:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120415040","nwisut.01.02100459","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.01500000000000",41.015,"-112.2555556000000",-112.2555556,"OK","16020310","USGS-410054112152001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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",NA,NA,NA,NA,NA,NA +"787","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-01-27","14:30:00","MST","2021-01-27 21:30:00",NA,"2.46",2460,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120445073","nwisut.01.02100505","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"788","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-01-27","14:30:00","MST","2021-01-27 21:30:00",NA,"10.9",10900,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120445092","nwisut.01.02100505","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"789","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-01-27","10:45:00","MST","2021-01-27 17:45:00",NA,"3.08",3080,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120445116","nwisut.01.02100506","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"790","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-01-27","10:45:00","MST","2021-01-27 17:45:00",NA,"13.6",13600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120445135","nwisut.01.02100506","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"791","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-01-25","11:45:00","MST","2021-01-25 18:45:00",NA,"1.48",1480,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120445165","nwisut.01.02100507","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"792","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-01-25","11:45:00","MST","2021-01-25 18:45:00",NA,"6.54",6540,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120445186","nwisut.01.02100507","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"793","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","10:30:00","MST","2021-02-02 17:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452123","nwisut.01.02100510","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"794","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","10:30:00","MST","2021-02-02 17:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452133","nwisut.01.02100510","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"795","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","10:40:00","MST","2021-02-02 17:40:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452149","nwisut.01.02100511","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"796","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","10:40:00","MST","2021-02-02 17:40:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452158","nwisut.01.02100511","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"797","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","11:30:00","MST","2021-02-02 18:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452174","nwisut.01.02100512","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"798","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","11:30:00","MST","2021-02-02 18:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452184","nwisut.01.02100512","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"799","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","12:50:00","MST","2021-02-02 19:50:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452222","nwisut.01.02100514","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"800","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","12:50:00","MST","2021-02-02 19:50:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452232","nwisut.01.02100514","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"801","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","13:00:00","MST","2021-02-02 20:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452248","nwisut.01.02100515","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"802","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","13:00:00","MST","2021-02-02 20:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452258","nwisut.01.02100515","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"803","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","13:30:00","MST","2021-02-02 20:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452274","nwisut.01.02100516","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"804","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","13:30:00","MST","2021-02-02 20:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452284","nwisut.01.02100516","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"805","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","13:40:00","MST","2021-02-02 20:40:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.0",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452300","nwisut.01.02100517","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"806","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","13:40:00","MST","2021-02-02 20:40:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.0",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452310","nwisut.01.02100517","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"807","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-02-01","15:00:00","MST","2021-02-01 22:00:00",NA,"0.055",55,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Regulated flow",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452405","nwisut.01.02100520","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"808","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-02-01","15:00:00","MST","2021-02-01 22:00:00",NA,"0.241",241,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Regulated flow",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120452430","nwisut.01.02100520","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"809","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-03","15:30:00","MST","2021-02-03 22:30:00",NA,NA,37,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.037",37,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,"L-0350106 Numerical result and or metadata revised; see NWQL Technical Memorandum 2022.01","Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120455767","nwisut.01.02100523","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.72042220000000",40.7204222,"-111.9371139000000",-111.9371139,"OK","16020204","USGS-404315111561501","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"20011121","998","ft","1055","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"810","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-03","15:30:00","MST","2021-02-03 22:30:00",NA,NA,165,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.165",165,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,"L-0350106 Numerical result and or metadata revised; see NWQL Technical Memorandum 2022.01","Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120456081","nwisut.01.02100523","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.72042220000000",40.7204222,"-111.9371139000000",-111.9371139,"OK","16020204","USGS-404315111561501","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"20011121","998","ft","1055","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"811","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-02-11","11:00:00","MST","2021-02-11 18:00:00",NA,"1.31",1310,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120513806","nwisut.01.02100553","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2229","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-02-11","11:00:00","MST","2021-02-11 18:00:00",NA,"0.079",79,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120513839","nwisut.01.02100553","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-04-01",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"813","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-02-11","11:00:00","MST","2021-02-11 18:00:00",NA,"5.80",5800,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120513931","nwisut.01.02100553","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"814","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","10:45:00","MST","2021-01-06 17:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517357","nwisut.01.02100556","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"815","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","10:45:00","MST","2021-01-06 17:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517367","nwisut.01.02100556","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"816","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","12:00:00","MST","2021-01-06 19:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517409","nwisut.01.02100558","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"817","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","12:00:00","MST","2021-01-06 19:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517419","nwisut.01.02100558","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"818","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","12:50:00","MST","2021-01-06 19:50:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517461","nwisut.01.02100560","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"819","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","12:50:00","MST","2021-01-06 19:50:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517471","nwisut.01.02100560","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"820","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","13:35:00","MST","2021-01-06 20:35:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517489","nwisut.01.02100561","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"821","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","13:35:00","MST","2021-01-06 20:35:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517499","nwisut.01.02100561","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"822","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","13:10:00","MST","2021-01-06 20:10:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.3",2.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517517","nwisut.01.02100563","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"823","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","13:10:00","MST","2021-01-06 20:10:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.3",2.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517527","nwisut.01.02100563","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"824","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","13:50:00","MST","2021-01-06 20:50:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517545","nwisut.01.02100562","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"825","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-01-06","13:50:00","MST","2021-01-06 20:50:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120517555","nwisut.01.02100562","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"826","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-02-25","13:30:00","MST","2021-02-25 20:30:00",NA,"0.644",644,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120603462","nwisut.01.02100604","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2244","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-02-25","13:30:00","MST","2021-02-25 20:30:00",NA,"0.043",43,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-120603497","nwisut.01.02100604","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-05-13",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"949","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-02-25","13:30:00","MST","2021-02-25 20:30:00",NA,"2.85",2850,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120603588","nwisut.01.02100604","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"829","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-02-25","10:30:00","MST","2021-02-25 17:30:00",NA,"6.31",6310,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,"bottle date 2/25/21","Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120603639","nwisut.01.02100605","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2247","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-02-25","10:30:00","MST","2021-02-25 17:30:00",NA,"0.119",119,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,"bottle date 2/25/21","Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120603674","nwisut.01.02100605","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-05-13",NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"831","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-02-25","10:30:00","MST","2021-02-25 17:30:00",NA,"27.9",27900,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,"bottle date 2/25/21","Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120603766","nwisut.01.02100605","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"832","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-02-25","12:55:00","MST","2021-02-25 19:55:00",NA,"0.474",474,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120609576","nwisut.01.02100606","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","037",NA,"Stream",NA,"37.29300000000000",37.293,"-110.3990000000000",-110.399,"OK","14080205","USGS-371735110235601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".5","seconds","Interpolated from Digital MAP.","NAD83","3703","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88",NA,NA,NA,NA,NA,NA +"833","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-02-25","12:55:00","MST","2021-02-25 19:55:00",NA,"2.10",2100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120609634","nwisut.01.02100606","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","037",NA,"Stream",NA,"37.29300000000000",37.293,"-110.3990000000000",-110.399,"OK","14080205","USGS-371735110235601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".5","seconds","Interpolated from Digital MAP.","NAD83","3703","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88",NA,NA,NA,NA,NA,NA +"834","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-26","12:00:00","MST","2021-02-26 19:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120609746","nwisut.01.02100616","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"835","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-26","12:00:00","MST","2021-02-26 19:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120609773","nwisut.01.02100616","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"836","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-02-09","13:15:00","MST","2021-02-09 20:15:00",NA,"0.935",935,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120620114","nwisut.01.02100617","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.62818889000000",40.62818889,"-111.9120944000000",-111.9120944,"OK","16020204","USGS-403743111544000","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19720315","391","ft","391","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"837","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-02-09","13:15:00","MST","2021-02-09 20:15:00",NA,"4.14",4140,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120620425","nwisut.01.02100617","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.62818889000000",40.62818889,"-111.9120944000000",-111.9120944,"OK","16020204","USGS-403743111544000","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19720315","391","ft","391","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"838","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-03-03","11:30:00","MST","2021-03-03 18:30:00",NA,"0.010",10,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642455","nwisut.01.02100645","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"839","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-03-03","11:30:00","MST","2021-03-03 18:30:00",NA,"0.046",46,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642472","nwisut.01.02100645","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"840","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","13:46:00","MST","2021-03-01 20:46:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642509","nwisut.01.02100644","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"841","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","13:46:00","MST","2021-03-01 20:46:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642519","nwisut.01.02100644","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"842","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","13:36:00","MST","2021-03-01 20:36:00",NA,NA,36,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.036",36,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642536","nwisut.01.02100643","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"843","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","13:36:00","MST","2021-03-01 20:36:00",NA,NA,162,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.162",162,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642546","nwisut.01.02100643","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"844","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","12:57:00","MST","2021-03-01 19:57:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642563","nwisut.01.02100642","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"845","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","12:57:00","MST","2021-03-01 19:57:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642573","nwisut.01.02100642","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"846","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","12:47:00","MST","2021-03-01 19:47:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642590","nwisut.01.02100641","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"847","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","12:47:00","MST","2021-03-01 19:47:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642600","nwisut.01.02100641","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"848","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","12:00:00","MST","2021-03-01 19:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642617","nwisut.01.02100640","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"849","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","12:00:00","MST","2021-03-01 19:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642627","nwisut.01.02100640","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"850","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","11:50:00","MST","2021-03-01 18:50:00",NA,NA,39,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.039",39,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642644","nwisut.01.02100639","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"851","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","11:50:00","MST","2021-03-01 18:50:00",NA,NA,172,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.172",172,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642654","nwisut.01.02100639","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"852","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","10:45:00","MST","2021-03-01 17:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642671","nwisut.01.02100638","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"853","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","10:45:00","MST","2021-03-01 17:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642680","nwisut.01.02100638","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"854","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","10:35:00","MST","2021-03-01 17:35:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642697","nwisut.01.02100637","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"855","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-01","10:35:00","MST","2021-03-01 17:35:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642707","nwisut.01.02100637","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"856","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","12:45:00","MST","2021-02-02 19:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642786","nwisut.01.02100631","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"857","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","12:45:00","MST","2021-02-02 19:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642797","nwisut.01.02100631","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"858","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","12:40:00","MST","2021-02-02 19:40:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642824","nwisut.01.02100632","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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",NA,NA,NA,NA,NA,NA +"859","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-02-02","12:40:00","MST","2021-02-02 19:40:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120642837","nwisut.01.02100632","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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",NA,NA,NA,NA,NA,NA +"860","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","12:00:00","MDT","2020-10-29 18:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120672812","nwisut.01.02100672","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"861","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","12:00:00","MDT","2020-10-29 18:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120672822","nwisut.01.02100672","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"862","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","12:10:00","MDT","2020-10-29 18:10:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120672846","nwisut.01.02100673","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"863","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2020-10-29","12:10:00","MDT","2020-10-29 18:10:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120672856","nwisut.01.02100673","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"864","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-03-11","13:00:00","MST","2021-03-11 20:00:00",NA,"1.74",1740,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120677452","nwisut.01.02100675","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2282","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-03-11","13:00:00","MST","2021-03-11 20:00:00",NA,"0.048",48,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-120677487","nwisut.01.02100675","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-05-18",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"987","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-03-11","13:00:00","MST","2021-03-11 20:00:00",NA,"7.68",7680,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120677577","nwisut.01.02100675","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"867","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-03-11","11:00:00","MST","2021-03-11 18:00:00",NA,"6.23",6230,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120677632","nwisut.01.02100676","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2285","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-03-11","11:00:00","MST","2021-03-11 18:00:00",NA,"0.131",131,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120677667","nwisut.01.02100676","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-05-18",NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"869","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-03-11","11:00:00","MST","2021-03-11 18:00:00",NA,"27.6",27600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120677757","nwisut.01.02100676","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"870","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-12","13:00:00","MST","2021-03-12 20:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120706775","nwisut.01.02100689","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"871","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-12","13:00:00","MST","2021-03-12 20:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120706796","nwisut.01.02100689","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"872","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-03-09","14:30:00","MST","2021-03-09 21:30:00",NA,"5.58",5580,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120706826","nwisut.01.02100690","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"873","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-03-09","14:30:00","MST","2021-03-09 21:30:00",NA,"24.7",24700,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120706846","nwisut.01.02100690","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"874","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-03-09","10:45:00","MST","2021-03-09 17:45:00",NA,"7.68",7680,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120706875","nwisut.01.02100691","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"875","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-03-09","10:45:00","MST","2021-03-09 17:45:00",NA,"34.0",34000,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120706895","nwisut.01.02100691","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"876","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-03-18","14:15:00","MDT","2021-03-18 20:15:00",NA,"0.035",35,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Regulated flow",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120750447","nwisut.01.02100703","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"877","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-03-18","14:15:00","MDT","2021-03-18 20:15:00",NA,"0.156",156,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Regulated flow",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120750472","nwisut.01.02100703","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"878","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-26","12:00:00","MDT","2021-03-26 18:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120780084","nwisut.01.02100723","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"879","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-03-26","12:00:00","MDT","2021-03-26 18:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120780111","nwisut.01.02100723","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"880","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-03-25","13:00:00","MDT","2021-03-25 19:00:00",NA,"1.81",1810,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120780142","nwisut.01.02100724","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2298","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-03-25","13:00:00","MDT","2021-03-25 19:00:00",NA,"0.030",30,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-120780177","nwisut.01.02100724","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-06-07",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"882","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-03-25","13:00:00","MDT","2021-03-25 19:00:00",NA,"8.00",8000,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120780269","nwisut.01.02100724","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"883","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-03-25","10:00:00","MDT","2021-03-25 16:00:00",NA,"5.14",5140,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120780327","nwisut.01.02100725","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2301","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-03-25","10:00:00","MDT","2021-03-25 16:00:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120780362","nwisut.01.02100725","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-06-07",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"885","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-03-25","10:00:00","MDT","2021-03-25 16:00:00",NA,"22.8",22800,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120780453","nwisut.01.02100725","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"886","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-08","12:00:00","MDT","2021-04-08 18:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120840674","nwisut.01.02100748","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"887","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-08","12:00:00","MDT","2021-04-08 18:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120840701","nwisut.01.02100748","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"888","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-02","11:00:00","MDT","2021-04-02 17:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120846289","nwisut.01.02100765","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"889","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-02","11:00:00","MDT","2021-04-02 17:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120846311","nwisut.01.02100765","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"890","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-01","11:30:00","MDT","2021-04-01 17:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120846340","nwisut.01.02100766","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"891","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-01","11:30:00","MDT","2021-04-01 17:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120846353","nwisut.01.02100766","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"892","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-01","11:40:00","MDT","2021-04-01 17:40:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120846380","nwisut.01.02100767","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"893","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-01","11:40:00","MDT","2021-04-01 17:40:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120846391","nwisut.01.02100767","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"894","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-10","13:00:00","MDT","2021-04-10 19:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.6",2.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120858894","nwisut.01.02100786","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"895","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-10","13:00:00","MDT","2021-04-10 19:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.6",2.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120858904","nwisut.01.02100786","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"896","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-10","12:17:00","MDT","2021-04-10 18:17:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120858943","nwisut.01.02100784","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"897","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-10","12:17:00","MDT","2021-04-10 18:17:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120858952","nwisut.01.02100784","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"898","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-10","10:10:00","MDT","2021-04-10 16:10:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120859005","nwisut.01.02100781","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"899","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-10","10:10:00","MDT","2021-04-10 16:10:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120859015","nwisut.01.02100781","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"900","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-04-21","10:30:00","MDT","2021-04-21 16:30:00",NA,"0.047",47,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Regulated flow",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120924092","nwisut.01.02100833","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"901","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-04-21","10:30:00","MDT","2021-04-21 16:30:00",NA,"0.210",210,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Regulated flow",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120924125","nwisut.01.02100833","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"902","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-04-22","13:00:00","MDT","2021-04-22 19:00:00",NA,"0.092",92,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120924268","nwisut.01.02100836","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2320","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-04-22","13:00:00","MDT","2021-04-22 19:00:00",NA,"0.330",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120924303","nwisut.01.02100836","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-06-24",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"904","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-04-22","13:00:00","MDT","2021-04-22 19:00:00",NA,"0.408",408,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120924395","nwisut.01.02100836","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"905","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-04-22","10:30:00","MDT","2021-04-22 16:30:00",NA,"4.96",4960,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120924456","nwisut.01.02100837","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2323","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-04-22","10:30:00","MDT","2021-04-22 16:30:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120924491","nwisut.01.02100837","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-06-24",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"907","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-04-22","10:30:00","MDT","2021-04-22 16:30:00",NA,"22.0",22000,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120924583","nwisut.01.02100837","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"908","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-23","12:30:00","MDT","2021-04-23 18:30:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120928500","nwisut.01.02100838","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"909","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-23","12:30:00","MDT","2021-04-23 18:30:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120928527","nwisut.01.02100838","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"910","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-28","14:00:00","MDT","2021-04-28 20:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120946486","nwisut.01.02100844","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"911","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-28","14:00:00","MDT","2021-04-28 20:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120946513","nwisut.01.02100844","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"912","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-23","11:00:00","MDT","2021-04-23 17:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120959981","nwisut.01.02100855","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"913","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-23","11:00:00","MDT","2021-04-23 17:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120960001","nwisut.01.02100855","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"914","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-04-19","13:00:00","MDT","2021-04-19 19:00:00",NA,"0.183",183,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120960027","nwisut.01.02100856","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"915","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-04-19","13:00:00","MDT","2021-04-19 19:00:00",NA,"0.812",812,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120960047","nwisut.01.02100856","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"916","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-04-19","10:45:00","MDT","2021-04-19 16:45:00",NA,"5.54",5540,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120960077","nwisut.01.02100857","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"917","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-04-19","10:45:00","MDT","2021-04-19 16:45:00",NA,"24.5",24500,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120960097","nwisut.01.02100857","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"918","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-06","10:00:00","MDT","2021-05-06 16:00:00",NA,"4.95",4950,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120994325","nwisut.01.02100893","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2336","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-05-06","10:00:00","MDT","2021-05-06 16:00:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120994360","nwisut.01.02100893","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-07-06",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"920","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-06","10:00:00","MDT","2021-05-06 16:00:00",NA,"21.9",21900,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120994452","nwisut.01.02100893","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"921","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-06","13:00:00","MDT","2021-05-06 19:00:00",NA,"0.073",73,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120994529","nwisut.01.02100892","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2339","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-05-06","13:00:00","MDT","2021-05-06 19:00:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-120994564","nwisut.01.02100892","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-07-06",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"923","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-06","13:00:00","MDT","2021-05-06 19:00:00",NA,"0.321",321,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-120994656","nwisut.01.02100892","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"924","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","11:40:00","MDT","2021-05-05 17:40:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014432","nwisut.01.02100917","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"925","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","11:40:00","MDT","2021-05-05 17:40:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014442","nwisut.01.02100917","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"926","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","11:45:00","MDT","2021-05-05 17:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014460","nwisut.01.02100918","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"927","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","11:45:00","MDT","2021-05-05 17:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014470","nwisut.01.02100918","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1292","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","12:30:00","MDT","2021-05-05 18:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014488","nwisut.01.02100919","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"929","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","12:30:00","MDT","2021-05-05 18:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014498","nwisut.01.02100919","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"930","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","12:35:00","MDT","2021-05-05 18:35:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014516","nwisut.01.02100920","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"931","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","12:35:00","MDT","2021-05-05 18:35:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014526","nwisut.01.02100920","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"932","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","13:15:00","MDT","2021-05-05 19:15:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014542","nwisut.01.02100921","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"933","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","13:15:00","MDT","2021-05-05 19:15:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014552","nwisut.01.02100921","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"934","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","10:25:00","MDT","2021-05-05 16:25:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014570","nwisut.01.02100922","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"935","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","10:25:00","MDT","2021-05-05 16:25:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014580","nwisut.01.02100922","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"936","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","10:30:00","MDT","2021-05-05 16:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014609","nwisut.01.02100924","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"937","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","10:30:00","MDT","2021-05-05 16:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121014618","nwisut.01.02100924","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"938","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-12","12:00:00","MDT","2021-05-12 18:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121070293","nwisut.01.02100931","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"939","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-12","12:00:00","MDT","2021-05-12 18:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121070320","nwisut.01.02100931","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"940","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-20","13:00:00","MDT","2021-05-20 19:00:00",NA,"0.237",237,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121119916","nwisut.01.02100978","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2358","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-05-20","13:00:00","MDT","2021-05-20 19:00:00",NA,"0.155",155,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-121119951","nwisut.01.02100978","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-08-05",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"942","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-20","13:00:00","MDT","2021-05-20 19:00:00",NA,"1.05",1050,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121120043","nwisut.01.02100978","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"943","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-20","10:00:00","MDT","2021-05-20 16:00:00",NA,"3.62",3620,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121120104","nwisut.01.02100979","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2361","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-05-20","10:00:00","MDT","2021-05-20 16:00:00",NA,"0.155",155,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-121120141","nwisut.01.02100979","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-08-05",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"945","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-20","10:00:00","MDT","2021-05-20 16:00:00",NA,"16.0",16000,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121120233","nwisut.01.02100979","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"946","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-26","13:00:00","MDT","2021-05-26 19:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121146217","nwisut.01.02101001","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"947","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-26","13:00:00","MDT","2021-05-26 19:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121146244","nwisut.01.02101001","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"948","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-27","13:00:00","MDT","2021-05-27 19:00:00",NA,"0.278",278,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121189930","nwisut.01.02101051","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2366","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-05-27","13:00:00","MDT","2021-05-27 19:00:00",NA,"0.152",152,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","sample was warm when received","NWIS-121189965","nwisut.01.02101051","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-08-13",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"950","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-27","13:00:00","MDT","2021-05-27 19:00:00",NA,"1.23",1230,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121190057","nwisut.01.02101051","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"951","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-27","10:00:00","MDT","2021-05-27 16:00:00",NA,"3.74",3740,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121190118","nwisut.01.02101052","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2369","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-05-27","10:00:00","MDT","2021-05-27 16:00:00",NA,"0.108",108,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","sample was warm when received","NWIS-121190153","nwisut.01.02101052","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-08-13",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"953","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-27","10:00:00","MDT","2021-05-27 16:00:00",NA,"16.6",16600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121190245","nwisut.01.02101052","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"954","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","10:30:00","MDT","2021-06-02 16:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200633","nwisut.01.02101054","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"955","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","10:30:00","MDT","2021-06-02 16:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200643","nwisut.01.02101054","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"956","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","10:40:00","MDT","2021-06-02 16:40:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200661","nwisut.01.02101055","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"957","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","10:40:00","MDT","2021-06-02 16:40:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"7.0",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200670","nwisut.01.02101055","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"958","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","11:50:00","MDT","2021-06-02 17:50:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200688","nwisut.01.02101056","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"959","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","11:50:00","MDT","2021-06-02 17:50:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200698","nwisut.01.02101056","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"960","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","12:05:00","MDT","2021-06-02 18:05:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200716","nwisut.01.02101057","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"961","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","12:05:00","MDT","2021-06-02 18:05:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200726","nwisut.01.02101057","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"962","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","12:50:00","MDT","2021-06-02 18:50:00",NA,NA,37,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.037",37,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200744","nwisut.01.02101058","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"963","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","12:50:00","MDT","2021-06-02 18:50:00",NA,NA,166,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.166",166,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200754","nwisut.01.02101058","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"964","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","13:05:00","MDT","2021-06-02 19:05:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200772","nwisut.01.02101059","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"965","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","13:05:00","MDT","2021-06-02 19:05:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200782","nwisut.01.02101059","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"966","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","13:35:00","MDT","2021-06-02 19:35:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200800","nwisut.01.02101060","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"967","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-02","13:35:00","MDT","2021-06-02 19:35:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121200810","nwisut.01.02101060","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"968","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-09","11:00:00","MDT","2021-06-09 17:00:00",NA,"3.86",3860,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121220994","nwisut.01.02101081","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.59248610000000",40.5924861,"-112.0321278000000",-112.0321278,"OK","16020204","USGS-403532112015502","Basin and Range basin-fill aquifers",NA,NA,"19881017","614","ft","654","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4880","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"969","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-09","11:00:00","MDT","2021-06-09 17:00:00",NA,"17.1",17100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121221288","nwisut.01.02101081","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.59248610000000",40.5924861,"-112.0321278000000",-112.0321278,"OK","16020204","USGS-403532112015502","Basin and Range basin-fill aquifers",NA,NA,"19881017","614","ft","654","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4880","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"970","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-03","11:00:00","MDT","2021-06-03 17:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121230942","nwisut.01.02101084","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"971","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-03","11:00:00","MDT","2021-06-03 17:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121230962","nwisut.01.02101084","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"972","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-02","10:30:00","MDT","2021-06-02 16:30:00",NA,"0.155",155,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121231000","nwisut.01.02101086","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"973","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-02","10:30:00","MDT","2021-06-02 16:30:00",NA,"0.686",686,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121231020","nwisut.01.02101086","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"974","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-02","14:00:00","MDT","2021-06-02 20:00:00",NA,"3.07",3070,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121231051","nwisut.01.02101085","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"975","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-02","14:00:00","MDT","2021-06-02 20:00:00",NA,"13.6",13600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121231072","nwisut.01.02101085","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"976","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-15","09:00:00","MDT","2021-06-15 15:00:00",NA,"4.91",4910,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121263227","nwisut.01.02101106","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.68328610000000",40.6832861,"-111.8058639000000",-111.8058639,"OK","16020204","USGS-404100111483201","Basin and Range basin-fill aquifers","Unconfined single aquifer",NA,"19641022","580","ft","580","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4790","feet","20","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"977","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-15","09:00:00","MDT","2021-06-15 15:00:00",NA,"21.7",21700,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121263543","nwisut.01.02101106","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.68328610000000",40.6832861,"-111.8058639000000",-111.8058639,"OK","16020204","USGS-404100111483201","Basin and Range basin-fill aquifers","Unconfined single aquifer",NA,"19641022","580","ft","580","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4790","feet","20","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"978","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-03","11:00:00","MDT","2021-04-03 17:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121268449","nwisut.01.02100763","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06055556000000",41.06055556,"-112.2483333000000",-112.2483333,"OK","16020310","USGS-410338112145401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"979","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-03","11:00:00","MDT","2021-04-03 17:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121268459","nwisut.01.02100763","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06055556000000",41.06055556,"-112.2483333000000",-112.2483333,"OK","16020310","USGS-410338112145401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"980","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-03","14:00:00","MDT","2021-04-03 20:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121268470","nwisut.01.02100764","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.01500000000000",41.015,"-112.2555556000000",-112.2555556,"OK","16020310","USGS-410054112152001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"981","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-04-03","14:00:00","MDT","2021-04-03 20:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121268479","nwisut.01.02100764","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.01500000000000",41.015,"-112.2555556000000",-112.2555556,"OK","16020310","USGS-410054112152001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"982","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-16","13:00:00","MDT","2021-06-16 19:00:00",NA,"0.027",27,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121275266","nwisut.01.02101121","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"983","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-16","13:00:00","MDT","2021-06-16 19:00:00",NA,"0.118",118,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121275293","nwisut.01.02101121","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"984","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-22","10:00:00","MDT","2021-06-22 16:00:00",NA,"1.90",1900,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121305872","nwisut.01.02101131","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.71300830000000",40.7130083,"-111.8541917000000",-111.8541917,"OK","16020204","USGS-404247111511501","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19770509","502","ft","502","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4413","feet","5","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"985","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-22","10:00:00","MDT","2021-06-22 16:00:00",NA,"8.41",8410,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121306189","nwisut.01.02101131","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.71300830000000",40.7130083,"-111.8541917000000",-111.8541917,"OK","16020204","USGS-404247111511501","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19770509","502","ft","502","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4413","feet","5","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"986","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-23","13:00:00","MDT","2021-06-23 19:00:00",NA,"0.042",42,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121325787","nwisut.01.02101155","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2404","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-06-23","13:00:00","MDT","2021-06-23 19:00:00",NA,"0.120",120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-121325822","nwisut.01.02101155","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-09-15",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"988","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-23","13:00:00","MDT","2021-06-23 19:00:00",NA,"0.187",187,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121325914","nwisut.01.02101155","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"989","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-23","10:30:00","MDT","2021-06-23 16:30:00",NA,"5.44",5440,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121325973","nwisut.01.02101156","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2407","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-06-23","10:30:00","MDT","2021-06-23 16:30:00",NA,"0.150",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-121326008","nwisut.01.02101156","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-09-15",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"991","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-23","10:30:00","MDT","2021-06-23 16:30:00",NA,"24.1",24100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121326100","nwisut.01.02101156","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"992","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-25","13:20:00","MDT","2021-05-25 19:20:00",NA,"0.029",29,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, high stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121326278","nwisut.01.02101132","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"993","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-25","13:20:00","MDT","2021-05-25 19:20:00",NA,"0.130",130,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, high stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121326301","nwisut.01.02101132","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"994","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-24","10:00:00","MDT","2021-06-24 16:00:00",NA,"2.07",2070,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121334031","nwisut.01.02101160","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.65455556000000",40.65455556,"-112.0186110000000",-112.018611,"OK","16020204","USGS-403916112010701","Basin and Range basin-fill aquifers",NA,NA,"198907","900","ft","940","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Interpolated from MAP.","NAD83","4710","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"995","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-24","10:00:00","MDT","2021-06-24 16:00:00",NA,"9.16",9160,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121334348","nwisut.01.02101160","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.65455556000000",40.65455556,"-112.0186110000000",-112.018611,"OK","16020204","USGS-403916112010701","Basin and Range basin-fill aquifers",NA,NA,"198907","900","ft","940","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Interpolated from MAP.","NAD83","4710","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"996","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","13:20:00","MDT","2021-05-05 19:20:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121353560","nwisut.01.02100942","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"997","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","13:20:00","MDT","2021-05-05 19:20:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121353571","nwisut.01.02100942","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"998","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","13:10:00","MDT","2021-05-05 19:10:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121353600","nwisut.01.02100943","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"999","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-05","13:10:00","MDT","2021-05-05 19:10:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121353614","nwisut.01.02100943","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1000","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-01","13:40:00","MDT","2021-06-01 19:40:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121353702","nwisut.01.02101088","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1001","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-01","13:40:00","MDT","2021-06-01 19:40:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121353747","nwisut.01.02101088","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1002","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-29","10:30:00","MDT","2021-06-29 16:30:00",NA,"0.332",332,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121366148","nwisut.01.02101174","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.57316667000000",40.57316667,"-111.8627778000000",-111.8627778,"OK","16020204","USGS-403423111514401","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19550331","606","ft","657","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","4548","feet","5","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"1003","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-29","10:30:00","MDT","2021-06-29 16:30:00",NA,"1.47",1470,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121366464","nwisut.01.02101174","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.57316667000000",40.57316667,"-111.8627778000000",-111.8627778,"OK","16020204","USGS-403423111514401","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19550331","606","ft","657","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","4548","feet","5","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"1004","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-29","11:00:00","MDT","2021-06-29 17:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121387974","nwisut.01.02101175","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1005","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-29","11:00:00","MDT","2021-06-29 17:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121387985","nwisut.01.02101175","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1006","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-29","14:20:00","MDT","2021-06-29 20:20:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121388002","nwisut.01.02101177","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1007","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-29","14:20:00","MDT","2021-06-29 20:20:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121388013","nwisut.01.02101177","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1008","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-29","14:57:00","MDT","2021-06-29 20:57:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"3.2",3.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121388030","nwisut.01.02101178","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1009","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-29","14:57:00","MDT","2021-06-29 20:57:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"3.2",3.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121388041","nwisut.01.02101178","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1010","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-30","10:55:00","MDT","2021-06-30 16:55:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121388058","nwisut.01.02101179","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1011","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-30","10:55:00","MDT","2021-06-30 16:55:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121388069","nwisut.01.02101179","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1012","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-30","11:15:00","MDT","2021-06-30 17:15:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.6",0.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121388086","nwisut.01.02101180","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1013","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-30","11:15:00","MDT","2021-06-30 17:15:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.6",0.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121388097","nwisut.01.02101180","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1014","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-29","12:20:00","MDT","2021-06-29 18:20:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121388114","nwisut.01.02101176","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1015","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-06-29","12:20:00","MDT","2021-06-29 18:20:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121388124","nwisut.01.02101176","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1016","Sample-Routine","Non_QC","Water","WATER","Bulk deposition","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-03-22","12:17:00","MDT","2021-03-22 18:17:00",NA,"0.103",103,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,"Laboratory Reporting Level","0.007",7,"Numeric","mg/l as N","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Ions, wf, auto IC (NRP & CO)","USGS TWRI 5-A1/1989, p 523","IC032","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,"USGS CO WSC Water-Quality Research Lab, Denver",NA,"NWIS-121395917","nwisco.01.02102146","USGS-CO","USGS Colorado Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","047",NA,"Land",NA,"40.74888889000000",40.74888889,"-109.5050000000000",-109.505,"OK","14060002","USGS-404456109301800",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Colorado Water Science Center",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,"2021-08-03",NA,NA,"6",NA,NA,"1","minutes","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","9558","feet","50","feet","Global Positioning System.","NAVD88",NA,NA,NA,NA,NA,NA +"1017","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","10:45:00","MDT","2021-07-01 16:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414083","nwisut.01.02101196","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1018","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","10:45:00","MDT","2021-07-01 16:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414094","nwisut.01.02101196","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1019","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","11:30:00","MDT","2021-07-01 17:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.1",6.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414119","nwisut.01.02101198","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1020","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","11:30:00","MDT","2021-07-01 17:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.1",6.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414130","nwisut.01.02101198","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1021","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","13:45:00","MDT","2021-07-01 19:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414147","nwisut.01.02101199","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1022","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","13:45:00","MDT","2021-07-01 19:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414158","nwisut.01.02101199","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1023","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","14:15:00","MDT","2021-07-01 20:15:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.9",1.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414175","nwisut.01.02101200","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1024","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","14:15:00","MDT","2021-07-01 20:15:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.9",1.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414186","nwisut.01.02101200","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1025","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","15:30:00","MDT","2021-07-01 21:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414214","nwisut.01.02101202","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1026","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","15:30:00","MDT","2021-07-01 21:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414225","nwisut.01.02101202","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1027","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","16:15:00","MDT","2021-07-01 22:15:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.1",6.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414242","nwisut.01.02101203","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1028","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-01","16:15:00","MDT","2021-07-01 22:15:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.1",6.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414253","nwisut.01.02101203","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1029","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-06","09:45:00","MDT","2021-07-06 15:45:00",NA,"3.45",3450,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414391","nwisut.01.02101216","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.64144444000000",40.64144444,"-112.0156389000000",-112.0156389,"OK","16020204","USGS-403821112012400","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19720720","1385","ft","1385","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4748","feet","20","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"1030","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-06","09:45:00","MDT","2021-07-06 15:45:00",NA,"15.3",15300,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121414704","nwisut.01.02101216","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.64144444000000",40.64144444,"-112.0156389000000",-112.0156389,"OK","16020204","USGS-403821112012400","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19720720","1385","ft","1385","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4748","feet","20","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"1031","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","10:35:00","MDT","2021-07-06 16:35:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429277","nwisut.01.02101238","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1032","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","10:35:00","MDT","2021-07-06 16:35:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429287","nwisut.01.02101238","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1033","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","10:40:00","MDT","2021-07-06 16:40:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429304","nwisut.01.02101239","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1034","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","10:40:00","MDT","2021-07-06 16:40:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429313","nwisut.01.02101239","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1035","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","11:52:00","MDT","2021-07-06 17:52:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429330","nwisut.01.02101240","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1036","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","11:52:00","MDT","2021-07-06 17:52:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429340","nwisut.01.02101240","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1037","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","12:00:00","MDT","2021-07-06 18:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429356","nwisut.01.02101241","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1038","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","12:00:00","MDT","2021-07-06 18:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429365","nwisut.01.02101241","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1039","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","12:45:00","MDT","2021-07-06 18:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429382","nwisut.01.02101242","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1040","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","12:45:00","MDT","2021-07-06 18:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429392","nwisut.01.02101242","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1041","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","12:50:00","MDT","2021-07-06 18:50:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429409","nwisut.01.02101243","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1042","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","12:50:00","MDT","2021-07-06 18:50:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429419","nwisut.01.02101243","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1043","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","13:30:00","MDT","2021-07-06 19:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429436","nwisut.01.02101244","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1044","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-06","13:30:00","MDT","2021-07-06 19:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429446","nwisut.01.02101244","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1045","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-08","14:00:00","MDT","2021-07-08 20:00:00",NA,"0.023",23,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429562","nwisut.01.02101253","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2463","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-07-08","14:00:00","MDT","2021-07-08 20:00:00",NA,"0.150",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-121429597","nwisut.01.02101253","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-09-29",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1047","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-08","14:00:00","MDT","2021-07-08 20:00:00",NA,"0.101",101,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429689","nwisut.01.02101253","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1048","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-08","10:00:00","MDT","2021-07-08 16:00:00",NA,"4.93",4930,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429748","nwisut.01.02101254","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2466","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-07-08","10:00:00","MDT","2021-07-08 16:00:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-121429783","nwisut.01.02101254","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-09-29",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1050","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-08","10:00:00","MDT","2021-07-08 16:00:00",NA,"21.8",21800,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429875","nwisut.01.02101254","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1051","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-01","12:30:00","MDT","2021-07-01 18:30:00",NA,"0.219",219,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121429932","nwisut.01.02101255","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2469","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-07-01","12:30:00","MDT","2021-07-01 18:30:00",NA,"0.067",67,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-121429967","nwisut.01.02101255","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-09-29",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1053","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-01","12:30:00","MDT","2021-07-01 18:30:00",NA,"0.969",969,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121430059","nwisut.01.02101255","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1054","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-01","09:30:00","MDT","2021-07-01 15:30:00",NA,"5.44",5440,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121430114","nwisut.01.02101256","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2472","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-07-01","09:30:00","MDT","2021-07-01 15:30:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-121430149","nwisut.01.02101256","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-09-29",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1056","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-01","09:30:00","MDT","2021-07-01 15:30:00",NA,"24.1",24100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121430241","nwisut.01.02101256","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1057","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-06-30","13:00:00","MDT","2021-06-30 19:00:00",NA,"0.024",24,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121430290","nwisut.01.02101257","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1058","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-06-30","13:00:00","MDT","2021-06-30 19:00:00",NA,"0.104",104,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121430317","nwisut.01.02101257","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1059","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-13","09:00:00","MDT","2021-07-13 15:00:00",NA,"2.03",2030,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121456200","nwisut.01.02101280","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.67150000000000",40.6715,"-112.0348056000000",-112.0348056,"OK","16020204","USGS-404017112020501","Basin and Range basin-fill aquifers",NA,NA,"19900121","1300","ft","1320","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Interpolated from MAP.","NAD83","4620","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1060","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-13","09:00:00","MDT","2021-07-13 15:00:00",NA,"9.00",9000,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121456512","nwisut.01.02101280","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.67150000000000",40.6715,"-112.0348056000000",-112.0348056,"OK","16020204","USGS-404017112020501","Basin and Range basin-fill aquifers",NA,NA,"19900121","1300","ft","1320","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Interpolated from MAP.","NAD83","4620","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1061","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-14","13:30:00","MDT","2021-07-14 19:30:00",NA,"0.017",17,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121481879","nwisut.01.02101293","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1062","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-14","13:30:00","MDT","2021-07-14 19:30:00",NA,"0.077",77,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121481903","nwisut.01.02101293","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1063","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-16","12:00:00","MDT","2021-07-16 18:00:00",NA,"0.062",62,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121481938","nwisut.01.02101295","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1064","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-16","12:00:00","MDT","2021-07-16 18:00:00",NA,"0.276",276,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121481965","nwisut.01.02101295","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1065","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-14","12:00:00","MDT","2021-07-14 18:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121493141","nwisut.01.02101301","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1066","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-14","12:00:00","MDT","2021-07-14 18:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121493161","nwisut.01.02101301","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1067","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-14","09:45:00","MDT","2021-07-14 15:45:00",NA,"0.025",25,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121493191","nwisut.01.02101302","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1068","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-14","09:45:00","MDT","2021-07-14 15:45:00",NA,"0.113",113,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121493206","nwisut.01.02101302","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1069","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-03-02","14:45:00","MST","2021-03-02 21:45:00",NA,"0.384",384,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121493238","nwisut.01.02101304","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","037",NA,"Lake, Reservoir, Impoundment",NA,"37.22741667000000",37.22741667,"-110.6656556000000",-110.6656556,"OK","14080205","USGS-371339110395601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3720","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1070","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-03-02","14:45:00","MST","2021-03-02 21:45:00",NA,"1.70",1700,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121493294","nwisut.01.02101304","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","037",NA,"Lake, Reservoir, Impoundment",NA,"37.22741667000000",37.22741667,"-110.6656556000000",-110.6656556,"OK","14080205","USGS-371339110395601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3720","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1071","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-26","09:30:00","MDT","2021-05-26 15:30:00",NA,"1.84",1840,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513367","nwisut.01.02101340","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.13497220000000",37.1349722,"-113.3761389000000",-113.3761389,"OK","15010008","USGS-370806113223401","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"20130410","318","ft","333","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1072","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-26","09:30:00","MDT","2021-05-26 15:30:00",NA,"8.15",8150,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513393","nwisut.01.02101340","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.13497220000000",37.1349722,"-113.3761389000000",-113.3761389,"OK","15010008","USGS-370806113223401","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"20130410","318","ft","333","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1073","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-25","15:45:00","MDT","2021-05-25 21:45:00",NA,"0.545",545,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513413","nwisut.01.02101341","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12897220000000",37.1289722,"-113.3826110000000",-113.382611,"OK","15010008","USGS-370744113225701","Other aquifers","Unconfined single aquifer",NA,"20150818","170.5","ft","170.5","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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","Navajo Sandstone (Jurassic)",NA,NA,NA,NA,NA +"1074","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-25","15:45:00","MDT","2021-05-25 21:45:00",NA,"2.41",2410,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513439","nwisut.01.02101341","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12897220000000",37.1289722,"-113.3826110000000",-113.382611,"OK","15010008","USGS-370744113225701","Other aquifers","Unconfined single aquifer",NA,"20150818","170.5","ft","170.5","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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","Navajo Sandstone (Jurassic)",NA,NA,NA,NA,NA +"1075","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-25","15:00:00","MDT","2021-05-25 21:00:00",NA,"4.46",4460,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513457","nwisut.01.02101342","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12111110000000",37.1211111,"-113.3922222000000",-113.3922222,"OK","15010008","USGS-370716113233202","Colorado Plateaus aquifers","Unconfined single aquifer",NA,NA,"301.5","ft","305","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1076","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-25","15:00:00","MDT","2021-05-25 21:00:00",NA,"19.7",19700,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513483","nwisut.01.02101342","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12111110000000",37.1211111,"-113.3922222000000",-113.3922222,"OK","15010008","USGS-370716113233202","Colorado Plateaus aquifers","Unconfined single aquifer",NA,NA,"301.5","ft","305","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1077","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-25","13:15:00","MDT","2021-05-25 19:15:00",NA,"0.214",214,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513503","nwisut.01.02101343","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.13017705000000",37.13017705,"-113.3777003000000",-113.3777003,"OK","15010008","USGS-370746113223301",NA,NA,NA,"20010515","96","ft","103.41","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1078","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-25","13:15:00","MDT","2021-05-25 19:15:00",NA,"0.949",949,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513529","nwisut.01.02101343","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.13017705000000",37.13017705,"-113.3777003000000",-113.3777003,"OK","15010008","USGS-370746113223301",NA,NA,NA,"20010515","96","ft","103.41","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1079","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-25","12:30:00","MDT","2021-05-25 18:30:00",NA,"2.73",2730,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513547","nwisut.01.02101344","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12111110000000",37.1211111,"-113.3922222000000",-113.3922222,"OK","15010008","USGS-370716113233201","Colorado Plateaus aquifers","Unconfined single aquifer",NA,NA,"61","ft","65","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1080","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-25","12:30:00","MDT","2021-05-25 18:30:00",NA,"12.1",12100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513573","nwisut.01.02101344","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12111110000000",37.1211111,"-113.3922222000000",-113.3922222,"OK","15010008","USGS-370716113233201","Colorado Plateaus aquifers","Unconfined single aquifer",NA,NA,"61","ft","65","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1081","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-25","10:00:00","MDT","2021-05-25 16:00:00",NA,"4.24",4240,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Inertial Pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513590","nwisut.01.02101345","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12434365000000",37.12434365,"-113.3936173000000",-113.3936173,"OK","15010008","USGS-370727113233001",NA,NA,NA,"19950206","160","ft","160","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1082","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-25","10:00:00","MDT","2021-05-25 16:00:00",NA,"18.8",18800,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Inertial Pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513616","nwisut.01.02101345","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12434365000000",37.12434365,"-113.3936173000000",-113.3936173,"OK","15010008","USGS-370727113233001",NA,NA,NA,"19950206","160","ft","160","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1083","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-25","09:30:00","MDT","2021-05-25 15:30:00",NA,"3.83",3830,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513636","nwisut.01.02101346","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.10187165000000",37.10187165,"-113.3803947000000",-113.3803947,"OK","15010008","USGS-370604113224601",NA,NA,NA,"20010521","118.7","ft","134","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1084","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-25","09:30:00","MDT","2021-05-25 15:30:00",NA,"17.0",17000,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513662","nwisut.01.02101346","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.10187165000000",37.10187165,"-113.3803947000000",-113.3803947,"OK","15010008","USGS-370604113224601",NA,NA,NA,"20010521","118.7","ft","134","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1085","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-05-24","19:50:00","MDT","2021-05-25 01:50:00",NA,"0.956",956,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Inertial Pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513679","nwisut.01.02101347","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.11506615000000",37.11506615,"-113.3606443000000",-113.3606443,"OK","15010008","USGS-370654113213501",NA,NA,NA,"19990503","155.5","ft","155.6","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1086","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-05-24","19:50:00","MDT","2021-05-25 01:50:00",NA,"4.23",4230,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Inertial Pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513705","nwisut.01.02101347","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.11506615000000",37.11506615,"-113.3606443000000",-113.3606443,"OK","15010008","USGS-370654113213501",NA,NA,NA,"19990503","155.5","ft","155.6","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1087","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-24","18:15:00","MDT","2021-05-25 00:15:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513725","nwisut.01.02101348","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.11312150000000",37.1131215,"-113.3915060000000",-113.391506,"OK","15010008","USGS-370646113231901",NA,NA,NA,"20010614","108.5","ft","112","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1088","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-24","18:15:00","MDT","2021-05-25 00:15:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513751","nwisut.01.02101348","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.11312150000000",37.1131215,"-113.3915060000000",-113.391506,"OK","15010008","USGS-370646113231901",NA,NA,NA,"20010614","108.5","ft","112","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1089","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-24","15:30:00","MDT","2021-05-24 21:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513771","nwisut.01.02101349","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12312150000000",37.1231215,"-113.3828948000000",-113.3828948,"OK","15010008","USGS-370655113224901",NA,NA,NA,"20010523","155","ft","158","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066","feet","0.1","feet","Global Positioning System.","NGVD29",NA,NA,NA,NA,NA,NA +"1090","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-05-24","15:30:00","MDT","2021-05-24 21:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121513797","nwisut.01.02101349","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12312150000000",37.1231215,"-113.3828948000000",-113.3828948,"OK","15010008","USGS-370655113224901",NA,NA,NA,"20010523","155","ft","158","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066","feet","0.1","feet","Global Positioning System.","NGVD29",NA,NA,NA,NA,NA,NA +"1091","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-28","14:00:00","MDT","2021-07-28 20:00:00",NA,"6.12",6120,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121538883","nwisut.01.02101386","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2509","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-07-28","14:00:00","MDT","2021-07-28 20:00:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededsee result laboratory comment","NWIS-121538918","nwisut.01.02101386","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-12-01",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1093","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-28","14:00:00","MDT","2021-07-28 20:00:00",NA,"27.1",27100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121539010","nwisut.01.02101386","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1094","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-28","12:00:00","MDT","2021-07-28 18:00:00",NA,"0.035",35,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121539069","nwisut.01.02101387","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2512","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-07-28","12:00:00","MDT","2021-07-28 18:00:00",NA,"0.375",375,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededsee result laboratory comment","NWIS-121539104","nwisut.01.02101387","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-12-01",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1096","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-28","12:00:00","MDT","2021-07-28 18:00:00",NA,"0.153",153,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121539196","nwisut.01.02101387","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1097","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-03","11:00:00","MDT","2021-08-03 17:00:00",NA,"4.42",4420,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121574454","nwisut.01.02101406","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.75878610000000",40.7587861,"-111.8461139000000",-111.8461139,"OK","16020204","USGS-404532111504401","Basin and Range basin-fill aquifers","Confined single aquifer",NA,"19560928","510","ft","510","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"1098","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-03","11:00:00","MDT","2021-08-03 17:00:00",NA,"19.5",19500,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121574607","nwisut.01.02101406","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.75878610000000",40.7587861,"-111.8461139000000",-111.8461139,"OK","16020204","USGS-404532111504401","Basin and Range basin-fill aquifers","Confined single aquifer",NA,"19560928","510","ft","510","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"1099","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-07-29","11:00:00","MDT","2021-07-29 17:00:00",NA,"3.81",3810,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121574673","nwisut.01.02101407","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.65550556000000",40.65550556,"-111.8757222000000",-111.8757222,"OK","16020204","USGS-403920111523301","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19610502","496","ft","496","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"1100","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-07-29","11:00:00","MDT","2021-07-29 17:00:00",NA,"16.9",16900,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121574855","nwisut.01.02101407","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.65550556000000",40.65550556,"-111.8757222000000",-111.8757222,"OK","16020204","USGS-403920111523301","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19610502","496","ft","496","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"1101","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-30","14:00:00","MDT","2021-07-30 20:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121582663","nwisut.01.02101414","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1102","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-30","14:00:00","MDT","2021-07-30 20:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121582690","nwisut.01.02101414","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1103","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-10","14:15:00","MDT","2021-08-10 20:15:00",NA,"0.078",78,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121623062","nwisut.01.02101445","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1104","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-10","14:15:00","MDT","2021-08-10 20:15:00",NA,"0.344",344,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121623082","nwisut.01.02101445","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1105","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-10","11:15:00","MDT","2021-08-10 17:15:00",NA,"0.092",92,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121623111","nwisut.01.02101446","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1106","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-10","11:15:00","MDT","2021-08-10 17:15:00",NA,"0.408",408,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121623131","nwisut.01.02101446","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1107","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-11","10:30:00","MDT","2021-08-11 16:30:00",NA,"1.46",1460,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121627727","nwisut.01.02101450","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.68315278000000",40.68315278,"-111.8345083000000",-111.8345083,"OK","16020204","USGS-404059111500401","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19640626","657","ft","664","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4490","feet","5","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"1108","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-11","10:30:00","MDT","2021-08-11 16:30:00",NA,"6.47",6470,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121627912","nwisut.01.02101450","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.68315278000000",40.68315278,"-111.8345083000000",-111.8345083,"OK","16020204","USGS-404059111500401","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19640626","657","ft","664","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4490","feet","5","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"1109","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-05","11:00:00","MDT","2021-08-05 17:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121627991","nwisut.01.02101451","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.69008610000000",40.6900861,"-111.9198056000000",-111.9198056,"OK","16020204","USGS-404124111551101","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19920216","965","ft","980","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"1110","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-05","11:00:00","MDT","2021-08-05 17:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121628176","nwisut.01.02101451","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.69008610000000",40.6900861,"-111.9198056000000",-111.9198056,"OK","16020204","USGS-404124111551101","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19920216","965","ft","980","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"1111","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","10:40:00","MDT","2021-07-29 16:40:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121654340","nwisut.01.02101470","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1112","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","10:40:00","MDT","2021-07-29 16:40:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121654350","nwisut.01.02101470","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1113","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","10:45:00","MDT","2021-07-29 16:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121654368","nwisut.01.02101471","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1114","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","10:45:00","MDT","2021-07-29 16:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121654377","nwisut.01.02101471","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1115","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","11:50:00","MDT","2021-07-29 17:50:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121654395","nwisut.01.02101472","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1116","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","11:50:00","MDT","2021-07-29 17:50:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121654405","nwisut.01.02101472","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1117","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","11:55:00","MDT","2021-07-29 17:55:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121654423","nwisut.01.02101473","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1118","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","11:55:00","MDT","2021-07-29 17:55:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121654433","nwisut.01.02101473","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1483","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-13","13:30:00","MDT","2021-08-13 19:30:00",NA,"0.172",172,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121673464","nwisut.01.02101502","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2537","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-08-13","13:30:00","MDT","2021-08-13 19:30:00",NA,"0.624",624,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-121673499","nwisut.01.02101502","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-11-16",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1121","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-13","13:30:00","MDT","2021-08-13 19:30:00",NA,"0.760",760,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121673590","nwisut.01.02101502","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1486","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-13","10:00:00","MDT","2021-08-13 16:00:00",NA,"3.41",3410,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121673650","nwisut.01.02101503","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2540","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-08-13","10:00:00","MDT","2021-08-13 16:00:00",NA,"0.572",572,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-121673685","nwisut.01.02101503","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-11-16",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1124","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-13","10:00:00","MDT","2021-08-13 16:00:00",NA,"15.1",15100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121673775","nwisut.01.02101503","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1125","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-19","09:45:00","MDT","2021-08-19 15:45:00",NA,"0.921",921,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121711747","nwisut.01.02101510","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.52750000000000",40.5275,"-111.9208333000000",-111.9208333,"OK","16020204","USGS-403139111551501",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1126","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-19","09:45:00","MDT","2021-08-19 15:45:00",NA,"4.08",4080,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121712056","nwisut.01.02101510","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.52750000000000",40.5275,"-111.9208333000000",-111.9208333,"OK","16020204","USGS-403139111551501",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1127","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-12","10:00:00","MDT","2021-08-12 16:00:00",NA,"1.56",1560,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121712208","nwisut.01.02101511","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.60643889000000",40.60643889,"-111.9038972000000",-111.9038972,"OK","16020204","USGS-403623111541401","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19730411","701","ft","701","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"1128","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-12","10:00:00","MDT","2021-08-12 16:00:00",NA,"6.92",6920,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121712388","nwisut.01.02101511","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.60643889000000",40.60643889,"-111.9038972000000",-111.9038972,"OK","16020204","USGS-403623111541401","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19730411","701","ft","701","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"1129","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","09:00:00","MDT","2021-08-31 15:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121761269","nwisut.01.02101543","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.70500000000000",40.705,"-111.9344444000000",-111.9344444,"OK","16020204","USGS-404218111560401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1130","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","09:00:00","MDT","2021-08-31 15:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121761446","nwisut.01.02101543","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.70500000000000",40.705,"-111.9344444000000",-111.9344444,"OK","16020204","USGS-404218111560401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1131","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-26","10:00:00","MDT","2021-08-26 16:00:00",NA,"4.58",4580,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121761523","nwisut.01.02101544","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.77411667000000",40.77411667,"-111.8858778000000",-111.8858778,"OK","16020204","USGS-404627111532601","Basin and Range basin-fill aquifers","Unconfined single aquifer",NA,"19430628","464","ft","464","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"1132","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-26","10:00:00","MDT","2021-08-26 16:00:00",NA,"20.3",20300,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121761699","nwisut.01.02101544","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.77411667000000",40.77411667,"-111.8858778000000",-111.8858778,"OK","16020204","USGS-404627111532601","Basin and Range basin-fill aquifers","Unconfined single aquifer",NA,"19430628","464","ft","464","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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","Valley Fill",NA,NA,NA,NA,NA +"1133","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-24","09:30:00","MDT","2021-08-24 15:30:00",NA,"1.46",1460,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121761782","nwisut.01.02101545","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.58976667000000",40.58976667,"-111.8629417000000",-111.8629417,"OK","16020204","USGS-403523111514801","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19560710","650","ft","650","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4590","feet","20","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"1134","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-24","09:30:00","MDT","2021-08-24 15:30:00",NA,"6.44",6440,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121761961","nwisut.01.02101545","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.58976667000000",40.58976667,"-111.8629417000000",-111.8629417,"OK","16020204","USGS-403523111514801","Basin and Range basin-fill aquifers","Confined multiple aquifers",NA,"19560710","650","ft","650","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4590","feet","20","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"1135","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-24","14:15:00","MDT","2021-08-24 20:15:00",NA,"0.017",17,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121857510","nwisut.01.02101559","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1136","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-24","14:15:00","MDT","2021-08-24 20:15:00",NA,"0.075",75,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121857534","nwisut.01.02101559","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1137","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-09-07","13:45:00","MDT","2021-09-07 19:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121877920","nwisut.01.02101574","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1138","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-09-07","13:45:00","MDT","2021-09-07 19:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121877955","nwisut.01.02101574","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1139","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","10:30:00","MDT","2021-08-31 16:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904446","nwisut.01.02101592","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1140","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","10:30:00","MDT","2021-08-31 16:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904456","nwisut.01.02101592","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1141","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","10:43:00","MDT","2021-08-31 16:43:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904474","nwisut.01.02101593","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1142","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","10:43:00","MDT","2021-08-31 16:43:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904483","nwisut.01.02101593","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1143","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","11:46:00","MDT","2021-08-31 17:46:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904500","nwisut.01.02101594","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1144","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","11:46:00","MDT","2021-08-31 17:46:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904509","nwisut.01.02101594","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1145","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","11:56:00","MDT","2021-08-31 17:56:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.5",5.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904527","nwisut.01.02101595","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1146","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","11:56:00","MDT","2021-08-31 17:56:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.5",5.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904537","nwisut.01.02101595","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1147","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","12:44:00","MDT","2021-08-31 18:44:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904555","nwisut.01.02101596","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1148","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","12:44:00","MDT","2021-08-31 18:44:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904565","nwisut.01.02101596","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1149","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","12:54:00","MDT","2021-08-31 18:54:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904583","nwisut.01.02101597","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1150","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","12:54:00","MDT","2021-08-31 18:54:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904593","nwisut.01.02101597","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1151","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","13:40:00","MDT","2021-08-31 19:40:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904611","nwisut.01.02101598","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1152","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-08-31","13:40:00","MDT","2021-08-31 19:40:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-121904621","nwisut.01.02101598","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1153","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-09-20","14:00:00","MDT","2021-09-20 20:00:00",NA,"1.30",1300,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122417350","nwisut.01.02101629","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1154","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-09-20","14:00:00","MDT","2021-09-20 20:00:00",NA,"5.77",5770,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122417370","nwisut.01.02101629","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1155","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-09-20","10:30:00","MDT","2021-09-20 16:30:00",NA,"0.100",100,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122417397","nwisut.01.02101630","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1156","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-09-20","10:30:00","MDT","2021-09-20 16:30:00",NA,"0.441",441,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122417417","nwisut.01.02101630","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1157","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-09-16","11:30:00","MDT","2021-09-16 17:30:00",NA,"0.135",135,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122428384","nwisut.01.02101631","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2575","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-09-16","11:30:00","MDT","2021-09-16 17:30:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededsee result laboratory comment","NWIS-122428419","nwisut.01.02101631","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-02-04",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1159","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-09-16","11:30:00","MDT","2021-09-16 17:30:00",NA,"0.599",599,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122428511","nwisut.01.02101631","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1160","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-25","12:00:00","MDT","2021-08-25 18:00:00",NA,"0.918",918,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122428569","nwisut.01.02101632","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2578","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_NA","2021-08-25","12:00:00","MDT","2021-08-25 18:00:00",NA,NA,30,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed",NA,"UG/L","No Result Value","NonStandardized","Not Detected","Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededsee result laboratory comment","NWIS-122428604","nwisut.01.02101632","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-12-06",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1162","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-25","12:00:00","MDT","2021-08-25 18:00:00",NA,"4.06",4060,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122428696","nwisut.01.02101632","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1163","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-08-25","09:00:00","MDT","2021-08-25 15:00:00",NA,"4.65",4650,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122428757","nwisut.01.02101633","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2581","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-08-25","09:00:00","MDT","2021-08-25 15:00:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededsee result laboratory comment","NWIS-122428792","nwisut.01.02101633","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"49570",NA,NA,"2021-12-06",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1165","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-08-25","09:00:00","MDT","2021-08-25 15:00:00",NA,"20.6",20600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122428884","nwisut.01.02101633","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1166","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-09-24","13:00:00","MDT","2021-09-24 19:00:00",NA,"0.011",11,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122428933","nwisut.01.02101634","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1167","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-09-24","13:00:00","MDT","2021-09-24 19:00:00",NA,"0.048",48,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122428960","nwisut.01.02101634","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1168","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-07","14:00:00","MDT","2021-07-07 20:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122493603","nwisut.01.02101286","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1169","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-07","14:00:00","MDT","2021-07-07 20:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122493648","nwisut.01.02101286","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1170","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-07","14:40:00","MDT","2021-07-07 20:40:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122493680","nwisut.01.02101285","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1171","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-07","14:40:00","MDT","2021-07-07 20:40:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122493715","nwisut.01.02101285","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1172","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-10-06","13:30:00","MDT","2021-10-06 19:30:00",NA,"0.366",366,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122503785","nwisut.01.02200021","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2590","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-10-06","13:30:00","MDT","2021-10-06 19:30:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededsee result laboratory comment","NWIS-122503820","nwisut.01.02200021","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-02-05",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1174","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-10-06","13:30:00","MDT","2021-10-06 19:30:00",NA,"1.62",1620,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122503912","nwisut.01.02200021","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1175","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-10-06","11:00:00","MDT","2021-10-06 17:00:00",NA,"4.87",4870,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122503973","nwisut.01.02200022","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2593","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-10-06","11:00:00","MDT","2021-10-06 17:00:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededsee result laboratory comment","NWIS-122504008","nwisut.01.02200022","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-02-05",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1177","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-10-06","11:00:00","MDT","2021-10-06 17:00:00",NA,"21.6",21600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122504100","nwisut.01.02200022","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1178","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-07","14:00:00","MDT","2021-10-07 20:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122511206","nwisut.01.02200028","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1179","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-07","14:00:00","MDT","2021-10-07 20:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122511233","nwisut.01.02200028","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1180","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-10-13","12:00:00","MDT","2021-10-13 18:00:00",NA,"0.560",560,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122527360","nwisut.01.02200041","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2598","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-10-13","12:00:00","MDT","2021-10-13 18:00:00",NA,"0.044",44,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededbelow the reporting level but at or above the detection levelsee result laboratory comment","NWIS-122527395","nwisut.01.02200041","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-02-04",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1182","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-10-13","12:00:00","MDT","2021-10-13 18:00:00",NA,"2.48",2480,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122527487","nwisut.01.02200041","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1183","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-10-21","13:00:00","MDT","2021-10-21 19:00:00",NA,"0.728",728,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122567746","nwisut.01.02200068","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2601","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-10-21","13:00:00","MDT","2021-10-21 19:00:00",NA,"0.050",50,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededbelow the reporting level but at or above the detection levelsee result laboratory comment","NWIS-122567781","nwisut.01.02200068","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-02-11",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1185","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-10-21","13:00:00","MDT","2021-10-21 19:00:00",NA,"3.22",3220,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122567872","nwisut.01.02200068","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1186","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-10-21","11:30:00","MDT","2021-10-21 17:30:00",NA,"6.47",6470,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122567931","nwisut.01.02200069","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2604","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-10-21","11:30:00","MDT","2021-10-21 17:30:00",NA,"0.188",188,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededsee result laboratory comment","NWIS-122567966","nwisut.01.02200069","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-02-11",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1188","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-10-21","11:30:00","MDT","2021-10-21 17:30:00",NA,"28.6",28600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122568057","nwisut.01.02200069","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1189","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","12:30:00","MDT","2021-07-29 18:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122593381","nwisut.01.02101712","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1190","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","12:30:00","MDT","2021-07-29 18:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122593391","nwisut.01.02101712","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1191","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","12:35:00","MDT","2021-07-29 18:35:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122593409","nwisut.01.02101713","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1192","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","12:35:00","MDT","2021-07-29 18:35:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122593419","nwisut.01.02101713","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1193","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","13:15:00","MDT","2021-07-29 19:15:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122593437","nwisut.01.02101714","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1194","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-07-29","13:15:00","MDT","2021-07-29 19:15:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122593447","nwisut.01.02101714","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1195","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-28","13:45:00","MDT","2021-10-28 19:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618733","nwisut.01.02200104","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1196","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-28","13:45:00","MDT","2021-10-28 19:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618744","nwisut.01.02200104","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1197","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-28","15:15:00","MDT","2021-10-28 21:15:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618761","nwisut.01.02200105","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1198","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-28","15:15:00","MDT","2021-10-28 21:15:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618772","nwisut.01.02200105","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1199","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-29","11:15:00","MDT","2021-10-29 17:15:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618786","nwisut.01.02200106","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1200","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-29","11:15:00","MDT","2021-10-29 17:15:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618797","nwisut.01.02200106","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1201","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-10-29","12:00:00","MDT","2021-10-29 18:00:00",NA,"0.091",91,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618812","nwisut.01.02200107","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1202","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-10-29","12:00:00","MDT","2021-10-29 18:00:00",NA,"0.401",401,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618823","nwisut.01.02200107","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1203","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-29","14:00:00","MDT","2021-10-29 20:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618840","nwisut.01.02200108","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1204","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-29","14:00:00","MDT","2021-10-29 20:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618851","nwisut.01.02200108","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1205","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-29","14:30:00","MDT","2021-10-29 20:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618868","nwisut.01.02200109","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1206","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-29","14:30:00","MDT","2021-10-29 20:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122618879","nwisut.01.02200109","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1207","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","10:40:00","MDT","2021-11-01 16:40:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626827","nwisut.01.02200111","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1208","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","10:40:00","MDT","2021-11-01 16:40:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626837","nwisut.01.02200111","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1209","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","10:48:00","MDT","2021-11-01 16:48:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626855","nwisut.01.02200112","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1210","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","10:48:00","MDT","2021-11-01 16:48:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626865","nwisut.01.02200112","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1211","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","11:59:00","MDT","2021-11-01 17:59:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626883","nwisut.01.02200113","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1212","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","11:59:00","MDT","2021-11-01 17:59:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626893","nwisut.01.02200113","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1213","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","12:10:00","MDT","2021-11-01 18:10:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.9",5.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626911","nwisut.01.02200114","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1214","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","12:10:00","MDT","2021-11-01 18:10:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.9",5.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626921","nwisut.01.02200114","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1215","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","12:52:00","MDT","2021-11-01 18:52:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626939","nwisut.01.02200115","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1216","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","12:52:00","MDT","2021-11-01 18:52:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626949","nwisut.01.02200115","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1217","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","12:58:00","MDT","2021-11-01 18:58:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.9",1.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626967","nwisut.01.02200116","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1218","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","12:58:00","MDT","2021-11-01 18:58:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.9",1.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626977","nwisut.01.02200116","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1219","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","13:33:00","MDT","2021-11-01 19:33:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122626995","nwisut.01.02200117","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1220","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","13:33:00","MDT","2021-11-01 19:33:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122627005","nwisut.01.02200117","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1221","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","12:00:00","MDT","2021-11-01 18:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122627022","nwisut.01.02200118","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1222","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","12:00:00","MDT","2021-11-01 18:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122627033","nwisut.01.02200118","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1223","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","12:45:00","MDT","2021-11-01 18:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.6",2.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122627050","nwisut.01.02200119","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1224","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-01","12:45:00","MDT","2021-11-01 18:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.6",2.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122627061","nwisut.01.02200119","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1225","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-11-04","12:00:00","MDT","2021-11-04 18:00:00",NA,"0.743",743,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Not determined","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122645958","nwisut.01.02200122","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2643","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-11-04","12:00:00","MDT","2021-11-04 18:00:00",NA,"0.039",39,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable","Hold time parameters were exceeded during the collection to analysis phase of sample processing.",NA,"Not determined","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","holding time exceededbelow the reporting level but at or above the detection levelsee result laboratory comment","NWIS-122645991","nwisut.01.02200122","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-02-18",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1227","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-11-04","12:00:00","MDT","2021-11-04 18:00:00",NA,"3.29",3290,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Not determined","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122646080","nwisut.01.02200122","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1228","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-04","10:45:00","MDT","2021-11-04 16:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708271","nwisut.01.02200156","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"173","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-04","10:45:00","MDT","2021-11-04 16:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708282","nwisut.01.02200156","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1230","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-03","11:00:00","MDT","2021-11-03 17:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708301","nwisut.01.02200157","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"378","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-03","11:00:00","MDT","2021-11-03 17:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708312","nwisut.01.02200157","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1232","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-03","11:45:00","MDT","2021-11-03 17:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.4",5.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708330","nwisut.01.02200158","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1233","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-03","11:45:00","MDT","2021-11-03 17:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.4",5.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708340","nwisut.01.02200158","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1234","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-04","14:45:00","MDT","2021-11-04 20:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708382","nwisut.01.02200162","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1235","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-04","14:45:00","MDT","2021-11-04 20:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708419","nwisut.01.02200162","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1236","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-04","14:30:00","MDT","2021-11-04 20:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708450","nwisut.01.02200163","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1237","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-04","14:30:00","MDT","2021-11-04 20:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708496","nwisut.01.02200163","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1238","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-27","11:10:00","MDT","2021-10-27 17:10:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708528","nwisut.01.02200164","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1239","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-10-27","11:10:00","MDT","2021-10-27 17:10:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122708548","nwisut.01.02200164","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1240","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-09-17","13:15:00","MDT","2021-09-17 19:15:00",NA,"0.021",21,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122713074","nwisut.01.02101752","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1241","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-09-17","13:15:00","MDT","2021-09-17 19:15:00",NA,"0.095",95,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122713098","nwisut.01.02101752","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1242","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-10","10:15:00","MST","2021-11-10 17:15:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, high stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122723065","nwisut.01.02200178","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1243","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-10","10:15:00","MST","2021-11-10 17:15:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, high stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122723086","nwisut.01.02200178","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1244","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-09-07","13:30:00","MDT","2021-09-07 19:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122745747","nwisut.01.02101576","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1245","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-09-07","13:30:00","MDT","2021-09-07 19:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122745792","nwisut.01.02101576","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1246","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-05","14:45:00","MDT","2021-11-05 20:45:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.16",0.16,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122752918","nwisut.01.02200159","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27138889000000",41.27138889,"-112.3561110000000",-112.356111,"OK","16020310","USGS-411403112200801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4194","feet","1","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1247","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-05","14:45:00","MDT","2021-11-05 20:45:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.16",0.16,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122752928","nwisut.01.02200159","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27138889000000",41.27138889,"-112.3561110000000",-112.356111,"OK","16020310","USGS-411403112200801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4194","feet","1","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1248","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-11-23","12:40:00","MST","2021-11-23 19:40:00",NA,"1.79",1790,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122752967","nwisut.01.02200199","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1249","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-11-23","12:40:00","MST","2021-11-23 19:40:00",NA,"7.93",7930,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122752990","nwisut.01.02200199","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1250","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-11-23","10:15:00","MST","2021-11-23 17:15:00",NA,"2.52",2520,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122753025","nwisut.01.02200200","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1251","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-11-23","10:15:00","MST","2021-11-23 17:15:00",NA,"11.1",11100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122753048","nwisut.01.02200200","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1252","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-03","14:15:00","MDT","2021-11-03 20:15:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122771094","nwisut.01.02200210","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1253","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-03","14:15:00","MDT","2021-11-03 20:15:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122771118","nwisut.01.02200210","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1254","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","11:36:00","MST","2021-11-30 18:36:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777771","nwisut.01.02200222","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1255","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","11:36:00","MST","2021-11-30 18:36:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777781","nwisut.01.02200222","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1256","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","11:41:00","MST","2021-11-30 18:41:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.5",5.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777799","nwisut.01.02200223","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1257","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","11:41:00","MST","2021-11-30 18:41:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.5",5.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777809","nwisut.01.02200223","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1258","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","12:22:00","MST","2021-11-30 19:22:00",NA,NA,78,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.078",78,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777827","nwisut.01.02200224","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1259","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","12:22:00","MST","2021-11-30 19:22:00",NA,NA,344,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.344",344,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777837","nwisut.01.02200224","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1260","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","12:25:00","MST","2021-11-30 19:25:00",NA,NA,78,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.078",78,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777855","nwisut.01.02200225","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1261","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","12:25:00","MST","2021-11-30 19:25:00",NA,NA,343,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.343",343,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777865","nwisut.01.02200225","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1262","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","13:03:00","MST","2021-11-30 20:03:00",NA,NA,77,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.077",77,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777883","nwisut.01.02200226","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1263","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","13:03:00","MST","2021-11-30 20:03:00",NA,NA,342,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.342",342,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777893","nwisut.01.02200226","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1264","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","10:10:00","MST","2021-11-30 17:10:00",NA,NA,78,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.078",78,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777986","nwisut.01.02200220","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1265","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","10:10:00","MST","2021-11-30 17:10:00",NA,NA,343,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.343",343,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122777996","nwisut.01.02200220","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"73","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","10:20:00","MST","2021-11-30 17:20:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122778015","nwisut.01.02200221","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1267","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-30","10:20:00","MST","2021-11-30 17:20:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122778025","nwisut.01.02200221","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1268","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-19","12:00:00","MST","2021-11-19 19:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122787189","nwisut.01.02200244","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"74","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-11-19","12:00:00","MST","2021-11-19 19:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122787212","nwisut.01.02200244","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"296","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-12-02","10:00:00","MST","2021-12-02 17:00:00",NA,"6.77",6770,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122787242","nwisut.01.02200243","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2684","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-12-02","10:00:00","MST","2021-12-02 17:00:00",NA,"0.186",186,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-122787277","nwisut.01.02200243","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-02-24",NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1272","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-12-02","10:00:00","MST","2021-12-02 17:00:00",NA,"30.0",30000,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122787369","nwisut.01.02200243","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"542","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-12-02","13:00:00","MST","2021-12-02 20:00:00",NA,"0.922",922,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122787429","nwisut.01.02200242","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2686","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-12-02","13:00:00","MST","2021-12-02 20:00:00",NA,"0.039",39,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-122787464","nwisut.01.02200242","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-02-24",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"181","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-12-02","13:00:00","MST","2021-12-02 20:00:00",NA,"4.08",4080,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122787556","nwisut.01.02200242","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"111","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-12-03","11:30:00","MST","2021-12-03 18:30:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122792212","nwisut.01.02200254","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1277","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-12-03","11:30:00","MST","2021-12-03 18:30:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122792231","nwisut.01.02200254","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"182","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-12-09","12:00:00","MST","2021-12-09 19:00:00",NA,"5.96",5960,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122806859","nwisut.01.02200265","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2690","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-12-09","12:00:00","MST","2021-12-09 19:00:00",NA,"0.348",348,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-122806894","nwisut.01.02200265","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-03-09",NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1280","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-12-09","12:00:00","MST","2021-12-09 19:00:00",NA,"26.4",26400,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122806986","nwisut.01.02200265","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1281","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-12-09","10:00:00","MST","2021-12-09 17:00:00",NA,"0.438",438,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Rising stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122807051","nwisut.01.02200266","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2693","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2021-12-09","10:00:00","MST","2021-12-09 17:00:00",NA,"0.784",784,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Rising stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-122807086","nwisut.01.02200266","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-03-09",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1283","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-12-09","10:00:00","MST","2021-12-09 17:00:00",NA,"1.94",1940,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Rising stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122807178","nwisut.01.02200266","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1284","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-12-08","12:30:00","MST","2021-12-08 19:30:00",NA,"1.65",1650,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122828284","nwisut.01.02200274","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.50818056000000",40.50818056,"-112.0728110000000",-112.072811,"OK","16020204","USGS-403029112043401","Basin and Range basin-fill aquifers","Confined single aquifer",NA,"19920130","182","ft","186","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5315","feet","10","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"1285","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-12-08","12:30:00","MST","2021-12-08 19:30:00",NA,"7.29",7290,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122828552","nwisut.01.02200274","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Well",NA,"40.50818056000000",40.50818056,"-112.0728110000000",-112.072811,"OK","16020204","USGS-403029112043401","Basin and Range basin-fill aquifers","Confined single aquifer",NA,"19920130","182","ft","186","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5315","feet","10","feet","Interpolated from topographic map.","NGVD29","Valley Fill",NA,NA,NA,NA,NA +"1286","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-12-16","12:00:00","MST","2021-12-16 19:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122839746","nwisut.01.02200285","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1287","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2021-12-16","12:00:00","MST","2021-12-16 19:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122839773","nwisut.01.02200285","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1288","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-12-21","10:45:00","MST","2021-12-21 17:45:00",NA,"0.026",26,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122872093","nwisut.01.02200308","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1289","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-12-21","10:45:00","MST","2021-12-21 17:45:00",NA,"0.114",114,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122872117","nwisut.01.02200308","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1290","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2021-12-29","13:00:00","MST","2021-12-29 20:00:00",NA,"0.930",930,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122894167","nwisut.01.02200325","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1291","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2021-12-29","13:00:00","MST","2021-12-29 20:00:00",NA,"4.12",4120,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122894289","nwisut.01.02200325","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1656","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-01-06","13:30:00","MST","2022-01-06 20:30:00",NA,"1.95",1950,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122932690","nwisut.01.02200369","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1293","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-01-06","13:30:00","MST","2022-01-06 20:30:00",NA,"8.63",8630,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122932711","nwisut.01.02200369","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1294","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-01-06","11:00:00","MST","2022-01-06 18:00:00",NA,"3.73",3730,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122932741","nwisut.01.02200370","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1295","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-01-06","11:00:00","MST","2022-01-06 18:00:00",NA,"16.5",16500,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122932761","nwisut.01.02200370","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1296","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-10","14:25:00","MST","2022-01-10 21:25:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122932790","nwisut.01.02200371","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"1297","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-10","14:25:00","MST","2022-01-10 21:25:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122932827","nwisut.01.02200371","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"1298","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-10","14:15:00","MST","2022-01-10 21:15:00",NA,NA,78,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.078",78,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122932857","nwisut.01.02200372","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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",NA,NA,NA,NA,NA,NA +"1299","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-10","14:15:00","MST","2022-01-10 21:15:00",NA,NA,345,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.345",345,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122932902","nwisut.01.02200372","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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",NA,NA,NA,NA,NA,NA +"1300","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-11","13:35:00","MST","2022-01-11 20:35:00",NA,NA,38,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.038",38,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122961057","nwisut.01.02200402","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1301","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-11","13:35:00","MST","2022-01-11 20:35:00",NA,NA,169,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.169",169,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122961067","nwisut.01.02200402","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1302","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-11","10:40:00","MST","2022-01-11 17:40:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122961085","nwisut.01.02200398","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1303","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-11","10:40:00","MST","2022-01-11 17:40:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122961095","nwisut.01.02200398","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1304","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-11","10:45:00","MST","2022-01-11 17:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122961113","nwisut.01.02200399","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1305","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-11","10:45:00","MST","2022-01-11 17:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122961123","nwisut.01.02200399","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1306","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-11","12:11:00","MST","2022-01-11 19:11:00",NA,NA,38,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.038",38,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122961141","nwisut.01.02200400","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1307","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-11","12:11:00","MST","2022-01-11 19:11:00",NA,NA,170,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.17",170,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122961151","nwisut.01.02200400","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1308","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-11","12:12:00","MST","2022-01-11 19:12:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122961169","nwisut.01.02200401","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1309","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-11","12:12:00","MST","2022-01-11 19:12:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122961179","nwisut.01.02200401","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1310","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-01-14","13:30:00","MST","2022-01-14 20:30:00",NA,"1.23",1230,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,"Not on paperwork added","Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122971023","nwisut.01.02200405","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2722","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_NA","2022-01-14","13:30:00","MST","2022-01-14 20:30:00",NA,NA,30,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed",NA,"UG/L","No Result Value","NonStandardized","Not Detected","Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,"Not on paperwork added","Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-122971058","nwisut.01.02200405","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-03-28",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1312","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-01-14","13:30:00","MST","2022-01-14 20:30:00",NA,"5.44",5440,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,"Not on paperwork added","Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122971150","nwisut.01.02200405","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1313","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-01-14","10:00:00","MST","2022-01-14 17:00:00",NA,"6.30",6300,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122971209","nwisut.01.02200406","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2725","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-01-14","10:00:00","MST","2022-01-14 17:00:00",NA,"0.236",236,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-122971244","nwisut.01.02200406","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-03-28",NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1315","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-01-14","10:00:00","MST","2022-01-14 17:00:00",NA,"27.9",27900,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-122971335","nwisut.01.02200406","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1316","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-01-25","11:45:00","MST","2022-01-25 18:45:00",NA,"1.61",1610,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123011721","nwisut.01.02200427","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1317","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-01-25","11:45:00","MST","2022-01-25 18:45:00",NA,"7.12",7120,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123011741","nwisut.01.02200427","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1318","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-01-26","11:45:00","MST","2022-01-26 18:45:00",NA,"0.034",34,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123016233","nwisut.01.02200430","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1319","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-01-26","11:45:00","MST","2022-01-26 18:45:00",NA,"0.149",149,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123016257","nwisut.01.02200430","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1320","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","10:45:00","MST","2022-01-31 17:45:00",NA,NA,77,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.077",77,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037427","nwisut.01.02200459","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1321","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","10:45:00","MST","2022-01-31 17:45:00",NA,NA,339,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.339",339,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037437","nwisut.01.02200459","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1322","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","10:55:00","MST","2022-01-31 17:55:00",NA,NA,77,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.077",77,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.7",6.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037455","nwisut.01.02200460","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1323","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","10:55:00","MST","2022-01-31 17:55:00",NA,NA,343,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.343",343,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.7",6.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037465","nwisut.01.02200460","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1324","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","11:50:00","MST","2022-01-31 18:50:00",NA,NA,77,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.077",77,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037483","nwisut.01.02200461","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1325","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","11:50:00","MST","2022-01-31 18:50:00",NA,NA,343,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.343",343,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037493","nwisut.01.02200461","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1326","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","12:02:00","MST","2022-01-31 19:02:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037511","nwisut.01.02200462","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1327","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","12:02:00","MST","2022-01-31 19:02:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037521","nwisut.01.02200462","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1328","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","12:40:00","MST","2022-01-31 19:40:00",NA,NA,77,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.077",77,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037539","nwisut.01.02200463","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1329","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","12:40:00","MST","2022-01-31 19:40:00",NA,NA,340,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.34",340,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037549","nwisut.01.02200463","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1330","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","12:55:00","MST","2022-01-31 19:55:00",NA,NA,77,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.077",77,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037567","nwisut.01.02200464","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1331","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-31","12:55:00","MST","2022-01-31 19:55:00",NA,NA,339,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.339",339,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037577","nwisut.01.02200464","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1332","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-01-31","13:29:00","MST","2022-01-31 20:29:00",NA,"0.090",90,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037617","nwisut.01.02200465","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1333","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-01-31","13:29:00","MST","2022-01-31 20:29:00",NA,"0.397",397,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123037627","nwisut.01.02200465","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1334","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-09","09:55:00","MST","2022-02-09 16:55:00",NA,"0.244",244,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123071792","nwisut.01.02200490","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Well",NA,"40.51731944000000",40.51731944,"-111.4987806000000",-111.4987806,"OK","16020203","USGS-403102111295801","Basin and Range carbonate-rock aquifers","Mixed (confined and unconfined) multiple aquifers",NA,"19950424","404","ft","404","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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","Park City Formation or Group",NA,NA,NA,NA,NA +"1335","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-09","09:55:00","MST","2022-02-09 16:55:00",NA,"1.08",1080,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123071839","nwisut.01.02200490","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Well",NA,"40.51731944000000",40.51731944,"-111.4987806000000",-111.4987806,"OK","16020203","USGS-403102111295801","Basin and Range carbonate-rock aquifers","Mixed (confined and unconfined) multiple aquifers",NA,"19950424","404","ft","404","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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","Park City Formation or Group",NA,NA,NA,NA,NA +"1336","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-02","13:45:00","MST","2022-02-02 20:45:00",NA,"0.159",159,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123071850","nwisut.01.02200489","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.53023230000000",40.5302323,"-111.4849116000000",-111.4849116,"OK","16020203","USGS-403149111290300",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5710","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1337","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-02","13:45:00","MST","2022-02-02 20:45:00",NA,"0.705",705,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123071897","nwisut.01.02200489","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.53023230000000",40.5302323,"-111.4849116000000",-111.4849116,"OK","16020203","USGS-403149111290300",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5710","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1338","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-02","12:15:00","MST","2022-02-02 19:15:00",NA,"0.203",203,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123071908","nwisut.01.02200488","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.53689880000000",40.5368988,"-111.4857453000000",-111.4857453,"OK","16020203","USGS-403213111290600",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5750","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1339","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-02","12:15:00","MST","2022-02-02 19:15:00",NA,"0.898",898,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123071955","nwisut.01.02200488","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.53689880000000",40.5368988,"-111.4857453000000",-111.4857453,"OK","16020203","USGS-403213111290600",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5750","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1340","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-02","11:00:00","MST","2022-02-02 18:00:00",NA,"0.113",113,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123071977","nwisut.01.02200487","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.54273200000000",40.542732,"-111.4999131000000",-111.4999131,"OK","16020203","USGS-403234111295700",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5915","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1341","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-02","11:00:00","MST","2022-02-02 18:00:00",NA,"0.502",502,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123072024","nwisut.01.02200487","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.54273200000000",40.542732,"-111.4999131000000",-111.4999131,"OK","16020203","USGS-403234111295700",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5915","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1342","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-02","12:52:00","MST","2022-02-02 19:52:00",NA,"0.555",555,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123072035","nwisut.01.02200485","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Well",NA,"40.51718889000000",40.51718889,"-111.4989000000000",-111.4989,"OK","16020203","USGS-403101111295802","Basin and Range carbonate-rock aquifers","Confined single aquifer",NA,"20131118","1010","ft","1010","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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","Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA +"1343","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-02","12:52:00","MST","2022-02-02 19:52:00",NA,"2.46",2460,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123072082","nwisut.01.02200485","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Well",NA,"40.51718889000000",40.51718889,"-111.4989000000000",-111.4989,"OK","16020203","USGS-403101111295802","Basin and Range carbonate-rock aquifers","Confined single aquifer",NA,"20131118","1010","ft","1010","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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","Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA +"1344","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-10","12:00:00","MST","2022-02-10 19:00:00",NA,"1.08",1080,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123084124","nwisut.01.02200499","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1345","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-10","12:00:00","MST","2022-02-10 19:00:00",NA,"4.80",4800,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123084244","nwisut.01.02200499","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1346","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-08","11:00:00","MST","2022-02-08 18:00:00",NA,"0.012",12,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123084287","nwisut.01.02200500","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1347","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-08","11:00:00","MST","2022-02-08 18:00:00",NA,"0.053",53,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123084310","nwisut.01.02200500","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1348","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-17","10:00:00","MST","2022-02-17 17:00:00",NA,"1.59",1590,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123100210","nwisut.01.02200527","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2760","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-02-17","10:00:00","MST","2022-02-17 17:00:00",NA,"0.051",51,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-123100245","nwisut.01.02200527","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-04-12",NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1350","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-17","10:00:00","MST","2022-02-17 17:00:00",NA,"7.06",7060,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123100337","nwisut.01.02200527","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1351","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-17","12:00:00","MST","2022-02-17 19:00:00",NA,"5.08",5080,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123100397","nwisut.01.02200526","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2763","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-02-17","12:00:00","MST","2022-02-17 19:00:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123100432","nwisut.01.02200526","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-04-12",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1353","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-17","12:00:00","MST","2022-02-17 19:00:00",NA,"22.5",22500,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123100524","nwisut.01.02200526","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1354","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-16","11:35:00","MST","2022-02-16 18:35:00",NA,"0.332",332,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123100609","nwisut.01.02200520","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Spring",NA,"40.54385000000000",40.54385,"-111.4912500000000",-111.49125,"OK","16020203","USGS-403238111292801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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","Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA +"1355","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-16","11:35:00","MST","2022-02-16 18:35:00",NA,"1.47",1470,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123100656","nwisut.01.02200520","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Spring",NA,"40.54385000000000",40.54385,"-111.4912500000000",-111.49125,"OK","16020203","USGS-403238111292801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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","Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA +"1356","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-16","12:20:00","MST","2022-02-16 19:20:00",NA,"0.375",375,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123100667","nwisut.01.02200521","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Spring",NA,"40.54361944000000",40.54361944,"-111.4916000000000",-111.4916,"OK","16020203","USGS-403237111293001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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","Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA +"1357","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-16","12:20:00","MST","2022-02-16 19:20:00",NA,"1.66",1660,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123100714","nwisut.01.02200521","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Spring",NA,"40.54361944000000",40.54361944,"-111.4916000000000",-111.4916,"OK","16020203","USGS-403237111293001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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","Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA +"1358","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-03","10:45:00","MST","2022-02-03 17:45:00",NA,"1.37",1370,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123112926","nwisut.01.02200546","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1359","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-03","10:45:00","MST","2022-02-03 17:45:00",NA,"6.07",6070,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123112946","nwisut.01.02200546","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1360","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-23","14:15:00","MST","2022-02-23 21:15:00",NA,"0.153",153,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123118596","nwisut.01.02200555","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.53023230000000",40.5302323,"-111.4849116000000",-111.4849116,"OK","16020203","USGS-403149111290300",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5710","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1361","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-23","14:15:00","MST","2022-02-23 21:15:00",NA,"0.677",677,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123118643","nwisut.01.02200555","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.53023230000000",40.5302323,"-111.4849116000000",-111.4849116,"OK","16020203","USGS-403149111290300",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5710","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1362","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-23","13:15:00","MST","2022-02-23 20:15:00",NA,"0.212",212,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123118654","nwisut.01.02200554","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.53689880000000",40.5368988,"-111.4857453000000",-111.4857453,"OK","16020203","USGS-403213111290600",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5750","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1363","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-23","13:15:00","MST","2022-02-23 20:15:00",NA,"0.939",939,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123118701","nwisut.01.02200554","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.53689880000000",40.5368988,"-111.4857453000000",-111.4857453,"OK","16020203","USGS-403213111290600",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5750","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1364","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-23","11:00:00","MST","2022-02-23 18:00:00",NA,"0.115",115,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123118711","nwisut.01.02200553","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.54273200000000",40.542732,"-111.4999131000000",-111.4999131,"OK","16020203","USGS-403234111295700",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5915","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1365","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-23","11:00:00","MST","2022-02-23 18:00:00",NA,"0.508",508,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123118758","nwisut.01.02200553","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.54273200000000",40.542732,"-111.4999131000000",-111.4999131,"OK","16020203","USGS-403234111295700",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5915","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1366","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-23","13:30:00","MST","2022-02-23 20:30:00",NA,"0.569",569,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123118769","nwisut.01.02200552","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Well",NA,"40.51718889000000",40.51718889,"-111.4989000000000",-111.4989,"OK","16020203","USGS-403101111295802","Basin and Range carbonate-rock aquifers","Confined single aquifer",NA,"20131118","1010","ft","1010","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"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","Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA +"1367","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-23","13:30:00","MST","2022-02-23 20:30:00",NA,"2.52",2520,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123118816","nwisut.01.02200552","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Well",NA,"40.51718889000000",40.51718889,"-111.4989000000000",-111.4989,"OK","16020203","USGS-403101111295802","Basin and Range carbonate-rock aquifers","Confined single aquifer",NA,"20131118","1010","ft","1010","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"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","Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA +"1368","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-23","10:50:00","MST","2022-02-23 17:50:00",NA,"0.365",365,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123118836","nwisut.01.02200550","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Spring",NA,"40.53773217000000",40.53773217,"-111.4968572000000",-111.4968572,"OK","16020203","USGS-403216111294601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5870","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1369","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-23","10:50:00","MST","2022-02-23 17:50:00",NA,"1.61",1610,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123118883","nwisut.01.02200550","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Spring",NA,"40.53773217000000",40.53773217,"-111.4968572000000",-111.4968572,"OK","16020203","USGS-403216111294601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5870","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1370","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-16","11:30:00","MST","2022-02-16 18:30:00",NA,"4.96",4960,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135074","nwisut.01.02200565","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1371","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-16","11:30:00","MST","2022-02-16 18:30:00",NA,"22.0",22000,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135094","nwisut.01.02200565","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1372","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-15","13:00:00","MST","2022-02-15 20:00:00",NA,"0.017",17,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135123","nwisut.01.02200566","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1373","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-15","13:00:00","MST","2022-02-15 20:00:00",NA,"0.074",74,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135144","nwisut.01.02200566","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1374","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-02-28","13:45:00","MST","2022-02-28 20:45:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135166","nwisut.01.02200567","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.55439805000000",40.55439805,"-111.4332426000000",-111.4332426,"OK","16020203","USGS-10155200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5691.59","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"270","sq mi",NA,NA +"1375","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-02-28","13:45:00","MST","2022-02-28 20:45:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135213","nwisut.01.02200567","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.55439805000000",40.55439805,"-111.4332426000000",-111.4332426,"OK","16020203","USGS-10155200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5691.59","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"270","sq mi",NA,NA +"1376","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-28","14:30:00","MST","2022-02-28 21:30:00",NA,"0.178",178,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135222","nwisut.01.02200568","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.48412210000000",40.4841221,"-111.4635198000000",-111.4635198,"OK","16020203","USGS-10155500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5427.04","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"359","sq mi",NA,NA +"1377","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-28","14:30:00","MST","2022-02-28 21:30:00",NA,"0.789",789,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135269","nwisut.01.02200568","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.48412210000000",40.4841221,"-111.4635198000000",-111.4635198,"OK","16020203","USGS-10155500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5427.04","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"359","sq mi",NA,NA +"1378","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-28","14:45:00","MST","2022-02-28 21:45:00",NA,"0.720",720,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135278","nwisut.01.02200569","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.48523320000000",40.4852332,"-111.4671312000000",-111.4671312,"OK","16020203","USGS-10156000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5426.64","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"31.8","sq mi",NA,NA +"1379","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-28","14:45:00","MST","2022-02-28 21:45:00",NA,"3.19",3190,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135325","nwisut.01.02200569","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.48523320000000",40.4852332,"-111.4671312000000",-111.4671312,"OK","16020203","USGS-10156000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5426.64","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"31.8","sq mi",NA,NA +"1380","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-02-16","15:00:00","MST","2022-02-16 22:00:00",NA,"6.31",6310,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135346","nwisut.01.02200564","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1381","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-02-16","15:00:00","MST","2022-02-16 22:00:00",NA,"27.9",27900,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123135366","nwisut.01.02200564","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1382","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","10:15:00","MST","2022-03-01 17:15:00",NA,NA,120,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.12",120,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123145891","nwisut.01.02200576","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1383","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","10:15:00","MST","2022-03-01 17:15:00",NA,NA,531,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.531",531,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123145901","nwisut.01.02200576","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1384","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","10:30:00","MST","2022-03-01 17:30:00",NA,NA,120,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.12",120,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123145919","nwisut.01.02200577","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1385","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","10:30:00","MST","2022-03-01 17:30:00",NA,NA,531,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.531",531,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123145929","nwisut.01.02200577","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1386","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","11:30:00","MST","2022-03-01 18:30:00",NA,NA,120,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.12",120,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123145947","nwisut.01.02200578","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1387","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","11:30:00","MST","2022-03-01 18:30:00",NA,NA,531,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.531",531,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123145957","nwisut.01.02200578","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1388","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","11:40:00","MST","2022-03-01 18:40:00",NA,NA,120,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.12",120,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123145974","nwisut.01.02200579","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1389","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","11:40:00","MST","2022-03-01 18:40:00",NA,NA,531,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.531",531,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123145983","nwisut.01.02200579","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1390","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","12:25:00","MST","2022-03-01 19:25:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146001","nwisut.01.02200580","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1391","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","12:25:00","MST","2022-03-01 19:25:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146011","nwisut.01.02200580","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1392","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","12:35:00","MST","2022-03-01 19:35:00",NA,NA,120,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.12",120,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146029","nwisut.01.02200581","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1393","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","12:35:00","MST","2022-03-01 19:35:00",NA,NA,531,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.531",531,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146039","nwisut.01.02200581","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1394","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","13:15:00","MST","2022-03-01 20:15:00",NA,NA,118,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.118",118,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146057","nwisut.01.02200582","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1395","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-01","13:15:00","MST","2022-03-01 20:15:00",NA,NA,521,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.521",521,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146067","nwisut.01.02200582","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1396","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-01","12:30:00","MST","2022-03-01 19:30:00",NA,"0.904",904,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146120","nwisut.01.02200586","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1397","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-01","12:30:00","MST","2022-03-01 19:30:00",NA,"4.00",4000,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146242","nwisut.01.02200586","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1398","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-02-25","13:00:00","MST","2022-02-25 20:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146285","nwisut.01.02200587","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1399","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-02-25","13:00:00","MST","2022-02-25 20:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146309","nwisut.01.02200587","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1400","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-02","12:50:00","MST","2022-03-02 19:50:00",NA,"0.135",135,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146334","nwisut.01.02200589","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Spring",NA,"40.50023327000000",40.50023327,"-111.4929664000000",-111.4929664,"OK","16020203","USGS-403001111293201",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5720","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1401","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-02","12:50:00","MST","2022-03-02 19:50:00",NA,"0.597",597,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123146381","nwisut.01.02200589","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Spring",NA,"40.50023327000000",40.50023327,"-111.4929664000000",-111.4929664,"OK","16020203","USGS-403001111293201",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5720","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1402","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-16","12:45:00","MDT","2022-03-16 18:45:00",NA,"0.046",46,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123230285","nwisut.01.02200677","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.53071944000000",40.53071944,"-111.4849500000000",-111.48495,"OK","16020203","USGS-403151111290601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1403","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-16","12:45:00","MDT","2022-03-16 18:45:00",NA,"0.204",204,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123230332","nwisut.01.02200677","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","051",NA,"Stream",NA,"40.53071944000000",40.53071944,"-111.4849500000000",-111.48495,"OK","16020203","USGS-403151111290601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1404","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-17","12:45:00","MDT","2022-03-17 18:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123230364","nwisut.01.02200679","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1405","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-17","12:45:00","MDT","2022-03-17 18:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123230398","nwisut.01.02200679","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1406","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-17","13:00:00","MDT","2022-03-17 19:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123230430","nwisut.01.02200680","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1407","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-17","13:00:00","MDT","2022-03-17 19:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123230474","nwisut.01.02200680","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1408","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-15","14:00:00","MDT","2022-03-15 20:00:00",NA,"0.018",18,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123298106","nwisut.01.02200752","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1409","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-15","14:00:00","MDT","2022-03-15 20:00:00",NA,"0.081",81,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123298131","nwisut.01.02200752","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1410","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-31","15:30:00","MDT","2022-03-31 21:30:00",NA,"5.46",5460,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123316705","nwisut.01.02200781","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1411","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-31","15:30:00","MDT","2022-03-31 21:30:00",NA,"24.1",24100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123316738","nwisut.01.02200781","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1412","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-31","11:10:00","MDT","2022-03-31 17:10:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123316775","nwisut.01.02200782","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1413","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-31","11:10:00","MDT","2022-03-31 17:10:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123316807","nwisut.01.02200782","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1414","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-30","13:45:00","MDT","2022-03-30 19:45:00",NA,"5.45",5450,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123316841","nwisut.01.02200783","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1415","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-30","13:45:00","MDT","2022-03-30 19:45:00",NA,"24.1",24100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123316873","nwisut.01.02200783","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1416","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-30","10:55:00","MDT","2022-03-30 16:55:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123316904","nwisut.01.02200784","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1417","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-30","10:55:00","MDT","2022-03-30 16:55:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123316924","nwisut.01.02200784","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1418","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-30","14:00:00","MDT","2022-03-30 20:00:00",NA,"0.029",29,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Rising stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325256","nwisut.01.02200794","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1419","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-30","14:00:00","MDT","2022-03-30 20:00:00",NA,"0.129",129,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Rising stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325281","nwisut.01.02200794","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1420","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-24","12:00:00","MDT","2022-03-24 18:00:00",NA,"0.590",590,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,"Not on paperwork","Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325311","nwisut.01.02200795","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2832","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-03-24","12:00:00","MDT","2022-03-24 18:00:00",NA,"0.038",38,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,"Not on paperwork","Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-123325346","nwisut.01.02200795","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-05-12",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1422","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-24","12:00:00","MDT","2022-03-24 18:00:00",NA,"2.61",2610,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,"Not on paperwork","Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325436","nwisut.01.02200795","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1423","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-24","10:00:00","MDT","2022-03-24 16:00:00",NA,"6.74",6740,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325495","nwisut.01.02200796","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2835","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-03-24","10:00:00","MDT","2022-03-24 16:00:00",NA,"0.166",166,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123325530","nwisut.01.02200796","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-05-12",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1425","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-24","10:00:00","MDT","2022-03-24 16:00:00",NA,"29.8",29800,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325619","nwisut.01.02200796","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1426","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-23","12:00:00","MDT","2022-03-23 18:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325660","nwisut.01.02200797","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1427","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-03-23","12:00:00","MDT","2022-03-23 18:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325687","nwisut.01.02200797","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1428","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-11","10:30:00","MST","2022-03-11 17:30:00",NA,"0.918",918,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Grab sample",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325717","nwisut.01.02200798","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"2840","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_NA","2022-03-11","10:30:00","MST","2022-03-11 17:30:00",NA,NA,30,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed",NA,"UG/L","No Result Value","NonStandardized","Not Detected","Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Grab sample",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123325752","nwisut.01.02200798","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-04-26",NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1430","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-11","10:30:00","MST","2022-03-11 17:30:00",NA,"4.06",4060,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Grab sample",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325841","nwisut.01.02200798","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,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",NA,NA,"46","sq mi",NA,NA +"1431","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-11","09:30:00","MST","2022-03-11 16:30:00",NA,"6.93",6930,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123325900","nwisut.01.02200799","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2843","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-03-11","09:30:00","MST","2022-03-11 16:30:00",NA,"0.195",195,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123325935","nwisut.01.02200799","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-04-26",NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1433","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-03-11","09:30:00","MST","2022-03-11 16:30:00",NA,"30.7",30700,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123326023","nwisut.01.02200799","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1434","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-06","13:00:00","MDT","2022-04-06 19:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123328920","nwisut.01.02200810","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1435","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-06","13:00:00","MDT","2022-04-06 19:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123328945","nwisut.01.02200810","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1436","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-07","15:00:00","MDT","2022-04-07 21:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123359458","nwisut.01.02200833","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1437","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-07","15:00:00","MDT","2022-04-07 21:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123359495","nwisut.01.02200833","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1438","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-07","14:45:00","MDT","2022-04-07 20:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","55","USGS parameter code 82398","Composite - Multiple point samples",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123359525","nwisut.01.02200834","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1439","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-07","14:45:00","MDT","2022-04-07 20:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","55","USGS parameter code 82398","Composite - Multiple point samples",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123359558","nwisut.01.02200834","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1440","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-22","09:15:00","MST","2022-01-22 16:15:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368362","nwisut.01.02200838","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1441","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-22","09:15:00","MST","2022-01-22 16:15:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368385","nwisut.01.02200838","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1442","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-21","10:00:00","MST","2022-01-21 17:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368404","nwisut.01.02200839","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1443","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-21","10:00:00","MST","2022-01-21 17:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368427","nwisut.01.02200839","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1444","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-20","10:10:00","MST","2022-01-20 17:10:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368446","nwisut.01.02200840","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1445","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-20","10:10:00","MST","2022-01-20 17:10:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368471","nwisut.01.02200840","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1446","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-19","15:00:00","MST","2022-01-19 22:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368491","nwisut.01.02200841","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1447","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-19","15:00:00","MST","2022-01-19 22:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368514","nwisut.01.02200841","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1448","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-19","08:45:00","MST","2022-01-19 15:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368533","nwisut.01.02200842","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1449","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-19","08:45:00","MST","2022-01-19 15:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368556","nwisut.01.02200842","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1450","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-18","16:10:00","MST","2022-01-18 23:10:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368575","nwisut.01.02200843","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1451","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-18","16:10:00","MST","2022-01-18 23:10:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368598","nwisut.01.02200843","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1452","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-18","09:00:00","MST","2022-01-18 16:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368617","nwisut.01.02200844","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1453","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-18","09:00:00","MST","2022-01-18 16:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368640","nwisut.01.02200844","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1454","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-17","17:20:00","MST","2022-01-18 00:20:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368659","nwisut.01.02200845","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1455","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-01-17","17:20:00","MST","2022-01-18 00:20:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8040","USGS parameter code 82398","Spigot",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123368682","nwisut.01.02200845","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.19102220000000",37.1910222,"-113.2673722000000",-113.2673722,"OK","15010008","USGS-371128113160301","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"19720515","237.4","ft","522","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"7",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","Coconino Sandstone of Aubrey Group",NA,NA,NA,NA,NA +"1456","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-14","12:30:00","MDT","2022-04-14 18:30:00",NA,"0.803",803,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"Grab sample",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123400287","nwisut.01.02200858","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2868","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-04-14","12:30:00","MDT","2022-04-14 18:30:00",NA,"0.035",35,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"Grab sample",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-123400322","nwisut.01.02200858","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-05-26",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1458","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-14","12:30:00","MDT","2022-04-14 18:30:00",NA,"3.56",3560,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"Grab sample",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123400413","nwisut.01.02200858","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1459","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-14","10:00:00","MDT","2022-04-14 16:00:00",NA,"4.79",4790,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123400472","nwisut.01.02200859","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2871","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-04-14","10:00:00","MDT","2022-04-14 16:00:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123400507","nwisut.01.02200859","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-05-26",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1461","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-14","10:00:00","MDT","2022-04-14 16:00:00",NA,"21.2",21200,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123400598","nwisut.01.02200859","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1462","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-21","12:30:00","MDT","2022-04-21 18:30:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123434244","nwisut.01.02200880","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1463","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-21","12:30:00","MDT","2022-04-21 18:30:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123434268","nwisut.01.02200880","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1464","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-21","11:00:00","MDT","2022-04-21 17:00:00",NA,"0.015",15,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123441856","nwisut.01.02200886","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1465","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-21","11:00:00","MDT","2022-04-21 17:00:00",NA,"0.065",65,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123441877","nwisut.01.02200886","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1466","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","12:56:00","MDT","2022-04-25 18:56:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123474893","nwisut.01.02200923","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1467","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","12:56:00","MDT","2022-04-25 18:56:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123474903","nwisut.01.02200923","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1468","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","13:00:00","MDT","2022-04-25 19:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123474921","nwisut.01.02200924","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1469","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","13:00:00","MDT","2022-04-25 19:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123474931","nwisut.01.02200924","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1470","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","14:02:00","MDT","2022-04-25 20:02:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123474949","nwisut.01.02200925","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1471","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","14:02:00","MDT","2022-04-25 20:02:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123474959","nwisut.01.02200925","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1472","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","10:45:00","MDT","2022-04-25 16:45:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123474977","nwisut.01.02200926","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1473","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","10:45:00","MDT","2022-04-25 16:45:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123474987","nwisut.01.02200926","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1474","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","11:00:00","MDT","2022-04-25 17:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123475005","nwisut.01.02200927","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1475","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","11:00:00","MDT","2022-04-25 17:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123475015","nwisut.01.02200927","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1476","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","12:08:00","MDT","2022-04-25 18:08:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123475033","nwisut.01.02200928","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1477","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","12:08:00","MDT","2022-04-25 18:08:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123475043","nwisut.01.02200928","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1478","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","12:15:00","MDT","2022-04-25 18:15:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123475061","nwisut.01.02200929","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1479","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","12:15:00","MDT","2022-04-25 18:15:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123475071","nwisut.01.02200929","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1480","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-05-05","12:00:00","MDT","2022-05-05 18:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123510053","nwisut.01.02200942","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1481","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-05-05","12:00:00","MDT","2022-05-05 18:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123510077","nwisut.01.02200942","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1482","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-28","13:00:00","MDT","2022-04-28 19:00:00",NA,"0.581",581,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123510110","nwisut.01.02200943","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2894","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-04-28","13:00:00","MDT","2022-04-28 19:00:00",NA,"0.030",30,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO","below the reporting level but at or above the detection level","NWIS-123510145","nwisut.01.02200943","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-06-06",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1484","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-28","13:00:00","MDT","2022-04-28 19:00:00",NA,"2.57",2570,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123510236","nwisut.01.02200943","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1485","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-28","10:00:00","MDT","2022-04-28 16:00:00",NA,"5.98",5980,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123510296","nwisut.01.02200944","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2897","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-04-28","10:00:00","MDT","2022-04-28 16:00:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123510331","nwisut.01.02200944","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-06-16",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1487","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-28","10:00:00","MDT","2022-04-28 16:00:00",NA,"26.5",26500,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123510422","nwisut.01.02200944","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1488","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-27","14:15:00","MDT","2022-04-27 20:15:00",NA,"0.337",337,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548190","nwisut.01.02200955","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12897220000000",37.1289722,"-113.3826110000000",-113.382611,"OK","15010008","USGS-370744113225701","Other aquifers","Unconfined single aquifer",NA,"20150818","170.5","ft","170.5","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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","Navajo Sandstone (Jurassic)",NA,NA,NA,NA,NA +"1489","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-27","14:15:00","MDT","2022-04-27 20:15:00",NA,"1.49",1490,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548213","nwisut.01.02200955","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12897220000000",37.1289722,"-113.3826110000000",-113.382611,"OK","15010008","USGS-370744113225701","Other aquifers","Unconfined single aquifer",NA,"20150818","170.5","ft","170.5","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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","Navajo Sandstone (Jurassic)",NA,NA,NA,NA,NA +"1490","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-27","12:40:00","MDT","2022-04-27 18:40:00",NA,"1.66",1660,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548232","nwisut.01.02200956","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.13497220000000",37.1349722,"-113.3761389000000",-113.3761389,"OK","15010008","USGS-370806113223401","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"20130410","318","ft","333","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1491","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-27","12:40:00","MDT","2022-04-27 18:40:00",NA,"7.34",7340,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548255","nwisut.01.02200956","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.13497220000000",37.1349722,"-113.3761389000000",-113.3761389,"OK","15010008","USGS-370806113223401","Colorado Plateaus aquifers","Unconfined single aquifer",NA,"20130410","318","ft","333","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1492","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-27","10:30:00","MDT","2022-04-27 16:30:00",NA,"3.71",3710,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8010","USGS parameter code 82398","Other",NA,"Inertial Pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548274","nwisut.01.02200957","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12434365000000",37.12434365,"-113.3936173000000",-113.3936173,"OK","15010008","USGS-370727113233001",NA,NA,NA,"19950206","160","ft","160","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1493","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-27","10:30:00","MDT","2022-04-27 16:30:00",NA,"16.4",16400,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8010","USGS parameter code 82398","Other",NA,"Inertial Pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548297","nwisut.01.02200957","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12434365000000",37.12434365,"-113.3936173000000",-113.3936173,"OK","15010008","USGS-370727113233001",NA,NA,NA,"19950206","160","ft","160","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1494","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-27","10:15:00","MDT","2022-04-27 16:15:00",NA,"0.198",198,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548316","nwisut.01.02200958","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.13017705000000",37.13017705,"-113.3777003000000",-113.3777003,"OK","15010008","USGS-370746113223301",NA,NA,NA,"20010515","96","ft","103.41","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1495","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-27","10:15:00","MDT","2022-04-27 16:15:00",NA,"0.876",876,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548339","nwisut.01.02200958","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.13017705000000",37.13017705,"-113.3777003000000",-113.3777003,"OK","15010008","USGS-370746113223301",NA,NA,NA,"20010515","96","ft","103.41","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1496","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-26","16:15:00","MDT","2022-04-26 22:15:00",NA,NA,37,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.037",37,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8010","USGS parameter code 82398","Other",NA,"Peristaltic pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548358","nwisut.01.02200959","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Lake, Reservoir, Impoundment",NA,"37.12129167000000",37.12129167,"-113.3819750000000",-113.381975,"OK","15010008","USGS-370737113221301",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1497","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-26","16:15:00","MDT","2022-04-26 22:15:00",NA,NA,164,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.164",164,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8010","USGS parameter code 82398","Other",NA,"Peristaltic pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548381","nwisut.01.02200959","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Lake, Reservoir, Impoundment",NA,"37.12129167000000",37.12129167,"-113.3819750000000",-113.381975,"OK","15010008","USGS-370737113221301",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1498","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-26","14:45:00","MDT","2022-04-26 20:45:00",NA,"0.867",867,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8010","USGS parameter code 82398","Other",NA,"Inertial Pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548398","nwisut.01.02200960","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.11506615000000",37.11506615,"-113.3606443000000",-113.3606443,"OK","15010008","USGS-370654113213501",NA,NA,NA,"19990503","155.5","ft","155.6","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1499","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-26","14:45:00","MDT","2022-04-26 20:45:00",NA,"3.84",3840,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","8010","USGS parameter code 82398","Other",NA,"Inertial Pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548421","nwisut.01.02200960","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.11506615000000",37.11506615,"-113.3606443000000",-113.3606443,"OK","15010008","USGS-370654113213501",NA,NA,NA,"19990503","155.5","ft","155.6","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1500","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-26","13:45:00","MDT","2022-04-26 19:45:00",NA,"3.48",3480,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548440","nwisut.01.02200961","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.10187165000000",37.10187165,"-113.3803947000000",-113.3803947,"OK","15010008","USGS-370604113224601",NA,NA,NA,"20010521","118.7","ft","134","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1501","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-26","13:45:00","MDT","2022-04-26 19:45:00",NA,"15.4",15400,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548463","nwisut.01.02200961","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.10187165000000",37.10187165,"-113.3803947000000",-113.3803947,"OK","15010008","USGS-370604113224601",NA,NA,NA,"20010521","118.7","ft","134","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1502","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-26","09:15:00","MDT","2022-04-26 15:15:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548482","nwisut.01.02200962","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12312150000000",37.1231215,"-113.3828948000000",-113.3828948,"OK","15010008","USGS-370655113224901",NA,NA,NA,"20010523","155","ft","158","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066","feet","0.1","feet","Global Positioning System.","NGVD29",NA,NA,NA,NA,NA,NA +"1503","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-26","09:15:00","MDT","2022-04-26 15:15:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548505","nwisut.01.02200962","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12312150000000",37.1231215,"-113.3828948000000",-113.3828948,"OK","15010008","USGS-370655113224901",NA,NA,NA,"20010523","155","ft","158","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066","feet","0.1","feet","Global Positioning System.","NGVD29",NA,NA,NA,NA,NA,NA +"1504","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","17:30:00","MDT","2022-04-25 23:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548524","nwisut.01.02200963","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.11312150000000",37.1131215,"-113.3915060000000",-113.391506,"OK","15010008","USGS-370646113231901",NA,NA,NA,"20010614","108.5","ft","112","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1505","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-25","17:30:00","MDT","2022-04-25 23:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548547","nwisut.01.02200963","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.11312150000000",37.1131215,"-113.3915060000000",-113.391506,"OK","15010008","USGS-370646113231901",NA,NA,NA,"20010614","108.5","ft","112","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1506","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-25","15:45:00","MDT","2022-04-25 21:45:00",NA,"4.18",4180,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548566","nwisut.01.02200964","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12111110000000",37.1211111,"-113.3922222000000",-113.3922222,"OK","15010008","USGS-370716113233202","Colorado Plateaus aquifers","Unconfined single aquifer",NA,NA,"301.5","ft","305","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1507","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-25","15:45:00","MDT","2022-04-25 21:45:00",NA,"18.5",18500,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548589","nwisut.01.02200964","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12111110000000",37.1211111,"-113.3922222000000",-113.3922222,"OK","15010008","USGS-370716113233202","Colorado Plateaus aquifers","Unconfined single aquifer",NA,NA,"301.5","ft","305","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1508","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-04-25","14:25:00","MDT","2022-04-25 20:25:00",NA,"2.80",2800,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548608","nwisut.01.02200965","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12111110000000",37.1211111,"-113.3922222000000",-113.3922222,"OK","15010008","USGS-370716113233201","Colorado Plateaus aquifers","Unconfined single aquifer",NA,NA,"61","ft","65","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1509","Sample-Routine","Non_QC","Water","WATER","Groundwater","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-04-25","14:25:00","MDT","2022-04-25 20:25:00",NA,"12.4",12400,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548631","nwisut.01.02200965","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","053",NA,"Well",NA,"37.12111110000000",37.1211111,"-113.3922222000000",-113.3922222,"OK","15010008","USGS-370716113233201","Colorado Plateaus aquifers","Unconfined single aquifer",NA,NA,"61","ft","65","ft","NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Utah Water Science Center",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","Navajo Sandstone of Glen Canyon Group",NA,NA,NA,NA,NA +"1510","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-05-04","11:00:00","MDT","2022-05-04 17:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548709","nwisut.01.02200968","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1511","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-05-04","11:00:00","MDT","2022-05-04 17:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548730","nwisut.01.02200968","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1512","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-05-03","13:30:00","MDT","2022-05-03 19:30:00",NA,"0.242",242,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548761","nwisut.01.02200969","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1513","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-05-03","13:30:00","MDT","2022-05-03 19:30:00",NA,"1.07",1070,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548781","nwisut.01.02200969","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1514","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-05-03","10:00:00","MDT","2022-05-03 16:00:00",NA,"0.049",49,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548811","nwisut.01.02200970","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1515","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-05-03","10:00:00","MDT","2022-05-03 16:00:00",NA,"0.216",216,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548831","nwisut.01.02200970","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1516","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-26","14:00:00","MDT","2022-04-26 20:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548859","nwisut.01.02200971","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1517","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-26","14:00:00","MDT","2022-04-26 20:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548879","nwisut.01.02200971","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1518","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-13","12:30:00","MDT","2022-04-13 18:30:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548908","nwisut.01.02200972","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1519","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-04-13","12:30:00","MDT","2022-04-13 18:30:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123548923","nwisut.01.02200972","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.23410640000000",41.2341064,"-112.3371697000000",-112.3371697,"OK","16020310","USGS-10010060",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1520","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-05-20","14:00:00","MDT","2022-05-20 20:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123606821","nwisut.01.02201033","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1521","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-05-20","14:00:00","MDT","2022-05-20 20:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123606845","nwisut.01.02201033","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1522","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-05-25","15:30:00","MDT","2022-05-25 21:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"3",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123650834","nwisut.01.02201091","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1523","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-05-25","15:30:00","MDT","2022-05-25 21:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"3",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123650866","nwisut.01.02201091","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1524","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-05-25","11:00:00","MDT","2022-05-25 17:00:00",NA,"0.022",22,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123669669","nwisut.01.02201098","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1525","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-05-25","11:00:00","MDT","2022-05-25 17:00:00",NA,"0.099",99,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123669691","nwisut.01.02201098","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1526","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","13:44:00","MDT","2022-06-02 19:44:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689487","nwisut.01.02201123","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1527","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","13:44:00","MDT","2022-06-02 19:44:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689497","nwisut.01.02201123","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1528","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","10:30:00","MDT","2022-06-02 16:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689527","nwisut.01.02201117","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1529","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","10:30:00","MDT","2022-06-02 16:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689537","nwisut.01.02201117","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1530","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","10:32:00","MDT","2022-06-02 16:32:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689555","nwisut.01.02201118","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1531","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","10:32:00","MDT","2022-06-02 16:32:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689565","nwisut.01.02201118","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1532","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","11:50:00","MDT","2022-06-02 17:50:00",NA,NA,78,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.078",78,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689583","nwisut.01.02201119","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1533","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","11:50:00","MDT","2022-06-02 17:50:00",NA,NA,344,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.344",344,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689593","nwisut.01.02201119","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1534","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","12:15:00","MDT","2022-06-02 18:15:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.5",5.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689611","nwisut.01.02201120","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1535","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","12:15:00","MDT","2022-06-02 18:15:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.5",5.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689621","nwisut.01.02201120","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1536","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","12:47:00","MDT","2022-06-02 18:47:00",NA,NA,120,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.12",120,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689639","nwisut.01.02201121","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1537","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","12:47:00","MDT","2022-06-02 18:47:00",NA,NA,531,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.531",531,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689649","nwisut.01.02201121","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1538","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","13:06:00","MDT","2022-06-02 19:06:00",NA,NA,78,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.078",78,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689667","nwisut.01.02201122","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1539","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-02","13:06:00","MDT","2022-06-02 19:06:00",NA,NA,345,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.345",345,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123689677","nwisut.01.02201122","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1540","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-09","11:30:00","MDT","2022-06-09 17:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.5",5.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732221","nwisut.01.02201155","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1541","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-09","11:30:00","MDT","2022-06-09 17:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.5",5.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732232","nwisut.01.02201155","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1542","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-09","13:50:00","MDT","2022-06-09 19:50:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732249","nwisut.01.02201156","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1543","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-09","13:50:00","MDT","2022-06-09 19:50:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732260","nwisut.01.02201156","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1544","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-09","14:20:00","MDT","2022-06-09 20:20:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.7",1.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732277","nwisut.01.02201157","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1545","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-09","14:20:00","MDT","2022-06-09 20:20:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.7",1.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732288","nwisut.01.02201157","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1546","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-07","11:30:00","MDT","2022-06-07 17:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732337","nwisut.01.02201144","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"41.03965920000000",41.0396592,"-112.5060734000000",-112.5060734,"OK","16020310","USGS-410323112301901",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1547","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-07","11:30:00","MDT","2022-06-07 17:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732348","nwisut.01.02201144","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"41.03965920000000",41.0396592,"-112.5060734000000",-112.5060734,"OK","16020310","USGS-410323112301901",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1548","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-07","12:00:00","MDT","2022-06-07 18:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.8",2.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732365","nwisut.01.02201145","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"41.03965920000000",41.0396592,"-112.5060734000000",-112.5060734,"OK","16020310","USGS-410323112301901",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1549","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-07","12:00:00","MDT","2022-06-07 18:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.8",2.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732376","nwisut.01.02201145","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"41.03965920000000",41.0396592,"-112.5060734000000",-112.5060734,"OK","16020310","USGS-410323112301901",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1550","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-07","13:20:00","MDT","2022-06-07 19:20:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732393","nwisut.01.02201146","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1551","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-07","13:20:00","MDT","2022-06-07 19:20:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732404","nwisut.01.02201146","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1552","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-07","14:45:00","MDT","2022-06-07 20:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732431","nwisut.01.02201148","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1553","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-07","14:45:00","MDT","2022-06-07 20:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732442","nwisut.01.02201148","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1554","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-07","15:20:00","MDT","2022-06-07 21:20:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732459","nwisut.01.02201149","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1555","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-07","15:20:00","MDT","2022-06-07 21:20:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732470","nwisut.01.02201149","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.11021468000000",41.11021468,"-112.4519024000000",-112.4519024,"OK","16020310","USGS-410637112270401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1556","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-08","11:30:00","MDT","2022-06-08 17:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732487","nwisut.01.02201150","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1557","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-08","11:30:00","MDT","2022-06-08 17:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732497","nwisut.01.02201150","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"585","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-08","12:45:00","MDT","2022-06-08 18:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.7",2.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732514","nwisut.01.02201151","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1559","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-08","12:45:00","MDT","2022-06-08 18:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.7",2.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732525","nwisut.01.02201151","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","045",NA,"Lake, Reservoir, Impoundment",NA,"40.76855400000000",40.768554,"-112.3280062000000",-112.3280062,"OK","16020310","USGS-404607112193801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1560","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-08","14:15:00","MDT","2022-06-08 20:15:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732540","nwisut.01.02201152","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1561","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-08","14:15:00","MDT","2022-06-08 20:15:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732551","nwisut.01.02201152","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1562","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-08","14:45:00","MDT","2022-06-08 20:45:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.1",6.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732566","nwisut.01.02201153","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1563","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-08","14:45:00","MDT","2022-06-08 20:45:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.1",6.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732577","nwisut.01.02201153","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"470","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-09","10:40:00","MDT","2022-06-09 16:40:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732595","nwisut.01.02201154","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"471","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-09","10:40:00","MDT","2022-06-09 16:40:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.2",0.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123732606","nwisut.01.02201154","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"472","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-05-25","13:30:00","MDT","2022-05-25 19:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123749184","nwisut.01.02201169","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"473","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-05-25","13:30:00","MDT","2022-05-25 19:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123749221","nwisut.01.02201169","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"474","Sample-Routine","Non_QC","Water","WATER","Bulk deposition","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-21","14:45:00","MDT","2022-03-21 20:45:00",NA,"0.090",90,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,"Laboratory Reporting Level","0.007",7,"Numeric","mg/l as N","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Ions, wf, auto IC (NRP & CO)","USGS TWRI 5-A1/1989, p 523","IC032","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS CO WSC Water-Quality Research Lab, Denver",NA,"NWIS-123801144","nwisco.01.02202367","USGS-CO","USGS Colorado Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","047",NA,"Land",NA,"40.74888889000000",40.74888889,"-109.5050000000000",-109.505,"OK","14060002","USGS-404456109301800",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Colorado Water Science Center",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,"2022-08-25",NA,NA,"6",NA,NA,"1","minutes","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","9558","feet","50","feet","Global Positioning System.","NAVD88",NA,NA,NA,NA,NA,NA +"475","Sample-Routine","Non_QC","Water","WATER","Bulk deposition","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-03-22","09:30:00","MDT","2022-03-22 15:30:00",NA,"0.067",67,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,"Laboratory Reporting Level","0.007",7,"Numeric","mg/l as N","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Ions, wf, auto IC (NRP & CO)","USGS TWRI 5-A1/1989, p 523","IC032","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS CO WSC Water-Quality Research Lab, Denver",NA,"NWIS-123801263","nwisco.01.02202372","USGS-CO","USGS Colorado Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","013",NA,"Land",NA,"40.59555556000000",40.59555556,"-110.4338889000000",-110.4338889,"OK","14060003","USGS-403544110260200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"USGS - Colorado Water Science Center",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,"2022-08-25",NA,NA,"6",NA,NA,"1","minutes","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","10147.4","feet","40","feet","Global Positioning System.","NAVD88",NA,NA,NA,NA,NA,NA +"476","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-06-09","14:00:00","MDT","2022-06-09 20:00:00",NA,"2.63",2630,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123838923","nwisut.01.02201208","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2982","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-06-09","14:00:00","MDT","2022-06-09 20:00:00",NA,"0.113",113,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123838956","nwisut.01.02201208","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-07-27",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"478","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-06-09","14:00:00","MDT","2022-06-09 20:00:00",NA,"11.6",11600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123839047","nwisut.01.02201208","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"479","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-06-09","10:30:00","MDT","2022-06-09 16:30:00",NA,"0.202",202,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 Teflon bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123839108","nwisut.01.02201209","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2985","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-06-09","10:30:00","MDT","2022-06-09 16:30:00",NA,"0.073",73,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 Teflon bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123839141","nwisut.01.02201209","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-07-27",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"481","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-06-09","10:30:00","MDT","2022-06-09 16:30:00",NA,"0.894",894,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 Teflon bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123839232","nwisut.01.02201209","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"482","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-08","14:00:00","MDT","2022-06-08 20:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123839276","nwisut.01.02201210","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"483","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-08","14:00:00","MDT","2022-06-08 20:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123839300","nwisut.01.02201210","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"484","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-05-26","12:30:00","MDT","2022-05-26 18:30:00",NA,"2.56",2560,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, high stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123839328","nwisut.01.02201211","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"2990","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-05-26","12:30:00","MDT","2022-05-26 18:30:00",NA,"0.116",116,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, high stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123839361","nwisut.01.02201211","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-07-20",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"486","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-05-26","12:30:00","MDT","2022-05-26 18:30:00",NA,"11.3",11300,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, high stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123839451","nwisut.01.02201211","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"487","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-05-25","13:00:00","MDT","2022-05-25 19:00:00",NA,"0.170",170,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123839497","nwisut.01.02201212","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"2993","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-05-25","13:00:00","MDT","2022-05-25 19:00:00",NA,"0.091",91,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123839528","nwisut.01.02201212","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-07-20",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"489","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-05-25","13:00:00","MDT","2022-05-25 19:00:00",NA,"0.751",751,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Falling stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123839617","nwisut.01.02201212","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"490","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-06-14","12:30:00","MDT","2022-06-14 18:30:00",NA,"2.73",2730,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850060","nwisut.01.02201228","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"491","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-06-14","12:30:00","MDT","2022-06-14 18:30:00",NA,"12.1",12100,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850096","nwisut.01.02201228","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"492","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-06-14","14:00:00","MDT","2022-06-14 20:00:00",NA,"0.215",215,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850153","nwisut.01.02201227","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"493","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-06-14","14:00:00","MDT","2022-06-14 20:00:00",NA,"0.951",951,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850173","nwisut.01.02201227","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"494","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-16","14:00:00","MDT","2022-06-16 20:00:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850201","nwisut.01.02201224","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"495","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-16","14:00:00","MDT","2022-06-16 20:00:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850237","nwisut.01.02201224","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"496","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-16","12:30:00","MDT","2022-06-16 18:30:00",NA,NA,37,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.037",37,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850270","nwisut.01.02201225","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"497","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-16","12:30:00","MDT","2022-06-16 18:30:00",NA,NA,165,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.165",165,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850316","nwisut.01.02201225","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"498","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-15","10:45:00","MDT","2022-06-15 16:45:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850351","nwisut.01.02201226","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"620","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-15","10:45:00","MDT","2022-06-15 16:45:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850387","nwisut.01.02201226","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1594","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","13:00:00","MDT","2022-06-28 19:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850417","nwisut.01.02201221","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1231","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","13:00:00","MDT","2022-06-28 19:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"2.0",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850427","nwisut.01.02201221","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1596","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","13:35:00","MDT","2022-06-28 19:35:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850445","nwisut.01.02201222","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1597","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","13:35:00","MDT","2022-06-28 19:35:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850455","nwisut.01.02201222","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1598","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","12:05:00","MDT","2022-06-28 18:05:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850473","nwisut.01.02201218","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1599","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","12:05:00","MDT","2022-06-28 18:05:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850483","nwisut.01.02201218","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1600","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","12:09:00","MDT","2022-06-28 18:09:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.9",5.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850501","nwisut.01.02201219","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1601","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","12:09:00","MDT","2022-06-28 18:09:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.9",5.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850511","nwisut.01.02201219","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1602","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","10:50:00","MDT","2022-06-28 16:50:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850541","nwisut.01.02201216","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1603","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","10:50:00","MDT","2022-06-28 16:50:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850551","nwisut.01.02201216","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1604","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","11:00:00","MDT","2022-06-28 17:00:00",NA,NA,77,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.077",77,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850569","nwisut.01.02201217","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1605","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","11:00:00","MDT","2022-06-28 17:00:00",NA,NA,341,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.341",341,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850579","nwisut.01.02201217","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1606","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","12:55:00","MDT","2022-06-28 18:55:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850597","nwisut.01.02201220","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1607","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-06-28","12:55:00","MDT","2022-06-28 18:55:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Not applicable","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123850607","nwisut.01.02201220","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1608","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-07-01","17:00:00","MDT","2022-07-01 23:00:00",NA,"0.035",35,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123872297","nwisut.01.02201244","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1609","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-07-01","17:00:00","MDT","2022-07-01 23:00:00",NA,"0.155",155,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123872321","nwisut.01.02201244","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1610","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-07-05","10:00:00","MDT","2022-07-05 16:00:00",NA,"4.90",4900,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123872352","nwisut.01.02201243","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"3022","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-07-05","10:00:00","MDT","2022-07-05 16:00:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123872385","nwisut.01.02201243","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-09-09",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1612","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-07-05","10:00:00","MDT","2022-07-05 16:00:00",NA,"21.7",21700,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123872476","nwisut.01.02201243","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1613","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-07-05","13:00:00","MDT","2022-07-05 19:00:00",NA,"0.110",110,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123872535","nwisut.01.02201242","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"3025","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-07-05","13:00:00","MDT","2022-07-05 19:00:00",NA,"0.178",178,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123872568","nwisut.01.02201242","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-09-09",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1615","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-07-05","13:00:00","MDT","2022-07-05 19:00:00",NA,"0.488",488,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123872659","nwisut.01.02201242","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1616","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-07-08","12:30:00","MDT","2022-07-08 18:30:00",NA,"0.013",13,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123915875","nwisut.01.02201287","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1617","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-07-08","12:30:00","MDT","2022-07-08 18:30:00",NA,"0.056",56,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123915896","nwisut.01.02201287","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1618","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-07-21","12:00:00","MDT","2022-07-21 18:00:00",NA,"0.068",68,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123992793","nwisut.01.02201307","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"3030","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-07-21","12:00:00","MDT","2022-07-21 18:00:00",NA,"0.128",128,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123992826","nwisut.01.02201307","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-09-23",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1620","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-07-21","12:00:00","MDT","2022-07-21 18:00:00",NA,"0.300",300,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123992917","nwisut.01.02201307","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1621","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-07-21","09:30:00","MDT","2022-07-21 15:30:00",NA,"5.94",5940,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123992973","nwisut.01.02201308","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"3033","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-07-21","09:30:00","MDT","2022-07-21 15:30:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-123993005","nwisut.01.02201308","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-09-23",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1623","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-07-21","09:30:00","MDT","2022-07-21 15:30:00",NA,"26.3",26300,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123993096","nwisut.01.02201308","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1624","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-07-20","14:00:00","MDT","2022-07-20 20:00:00",NA,"0.054",54,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123993146","nwisut.01.02201309","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1625","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-07-20","14:00:00","MDT","2022-07-20 20:00:00",NA,"0.238",238,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-123993156","nwisut.01.02201309","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1626","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-07-20","14:15:00","MDT","2022-07-20 20:15:00",NA,"0.033",33,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124084642","nwisut.01.02201351","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1627","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-07-20","14:15:00","MDT","2022-07-20 20:15:00",NA,"0.148",148,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124084662","nwisut.01.02201351","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1628","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-07-20","11:45:00","MDT","2022-07-20 17:45:00",NA,"0.163",163,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124084689","nwisut.01.02201352","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1629","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-07-20","11:45:00","MDT","2022-07-20 17:45:00",NA,"0.719",719,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124084709","nwisut.01.02201352","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1266","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-07-27","10:30:00","MDT","2022-07-27 16:30:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124084735","nwisut.01.02201353","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1631","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-07-27","10:30:00","MDT","2022-07-27 16:30:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124084755","nwisut.01.02201353","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1632","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-07-22","14:30:00","MDT","2022-07-22 20:30:00",NA,NA,75,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.075",75,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124084773","nwisut.01.02201354","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1269","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-07-22","14:30:00","MDT","2022-07-22 20:30:00",NA,NA,334,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.334",334,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124084804","nwisut.01.02201354","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1270","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-07-22","13:00:00","MDT","2022-07-22 19:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124084819","nwisut.01.02201355","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1635","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-07-22","13:00:00","MDT","2022-07-22 19:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Not applicable",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124084851","nwisut.01.02201355","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1636","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-08-02","13:15:00","MDT","2022-08-02 19:15:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124093564","nwisut.01.02201390","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1273","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-08-02","13:15:00","MDT","2022-08-02 19:15:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124093587","nwisut.01.02201390","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1638","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-08-04","12:00:00","MDT","2022-08-04 18:00:00",NA,"0.046",46,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124093701","nwisut.01.02201394","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"3050","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-08-04","12:00:00","MDT","2022-08-04 18:00:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-124093734","nwisut.01.02201394","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-10-17",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1276","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-08-04","12:00:00","MDT","2022-08-04 18:00:00",NA,"0.204",204,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124093825","nwisut.01.02201394","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1641","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-08-04","10:00:00","MDT","2022-08-04 16:00:00",NA,"4.88",4880,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124093881","nwisut.01.02201395","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"3053","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-08-04","10:00:00","MDT","2022-08-04 16:00:00",NA,"0.333",333,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-124093914","nwisut.01.02201395","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-10-17",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1643","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-08-04","10:00:00","MDT","2022-08-04 16:00:00",NA,"21.6",21600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124094005","nwisut.01.02201395","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1644","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-07-27","14:30:00","MDT","2022-07-27 20:30:00",NA,"0.045",45,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124222061","nwisut.01.02201393","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1645","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-07-27","14:30:00","MDT","2022-07-27 20:30:00",NA,"0.199",199,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124222071","nwisut.01.02201393","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.77994627000000",40.77994627,"-111.8060450000000",-111.806045,"OK","16020204","USGS-10172200",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"7.25","sq mi",NA,NA +"1646","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-08-18","10:30:00","MDT","2022-08-18 16:30:00",NA,"4.89",4890,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124324811","nwisut.01.02201527","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"3058","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-08-18","10:30:00","MDT","2022-08-18 16:30:00",NA,"0.093",93,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-124324846","nwisut.01.02201527","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-10-31",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1648","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-08-18","10:30:00","MDT","2022-08-18 16:30:00",NA,"21.7",21700,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124324936","nwisut.01.02201527","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1649","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-08-18","13:30:00","MDT","2022-08-18 19:30:00",NA,"0.307",307,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124324998","nwisut.01.02201526","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"3061","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_NA","2022-08-18","13:30:00","MDT","2022-08-18 19:30:00",NA,NA,30,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed",NA,"UG/L","No Result Value","NonStandardized","Not Detected","Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-124325033","nwisut.01.02201526","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-10-31",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1651","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-08-18","13:30:00","MDT","2022-08-18 19:30:00",NA,"1.36",1360,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124325122","nwisut.01.02201526","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1652","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-08-29","12:00:00","MDT","2022-08-29 18:00:00",NA,"0.251",251,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124325174","nwisut.01.02201525","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"3064","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-08-29","12:00:00","MDT","2022-08-29 18:00:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-124325209","nwisut.01.02201525","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-11-18",NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1654","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-08-29","12:00:00","MDT","2022-08-29 18:00:00",NA,"1.11",1110,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124325299","nwisut.01.02201525","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.66430556000000",40.66430556,"-111.8988610000000",-111.898861,"OK","16020204","USGS-10168000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,"46","sq mi",NA,NA +"1655","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-09-08","13:00:00","MDT","2022-09-08 19:00:00",NA,"6.46",6460,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124325353","nwisut.01.02201524","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"3067","Sample-Routine","Non_QC","Water","WATER","Surface Water","Suspended","SUSPENDED","Accepted","Nitrogen","NITROGEN",NA,NA,NA,NA,"Not Reviewed","NITROGEN_SUSPENDED_NA_UG/L","2022-09-08","13:00:00","MDT","2022-09-08 19:00:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/l","UG/L","Convert","NonStandardized",NA,"Long Term Method Detection Level","0.03",30,"Numeric","mg/l","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","TPN, GF/F, combusion",NA,"COMB7","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,"USGS-National Water Quality Lab, Denver, CO",NA,"NWIS-124325388","nwisut.01.02201524","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"49570",NA,NA,"2022-11-04",NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1657","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-09-08","13:00:00","MDT","2022-09-08 19:00:00",NA,"28.6",28600,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124325479","nwisut.01.02201524","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.73355737000000",40.73355737,"-111.9232703000000",-111.9232703,"OK","16020204","USGS-10171000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"3438","sq mi","3183","sq mi" +"1658","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","10:30:00","MDT","2022-09-08 16:30:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356660","nwisut.01.02201534","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1659","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","10:30:00","MDT","2022-09-08 16:30:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"1.5",1.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356670","nwisut.01.02201534","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1660","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","11:20:00","MDT","2022-09-08 17:20:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356685","nwisut.01.02201535","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1661","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","11:20:00","MDT","2022-09-08 17:20:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356695","nwisut.01.02201535","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.07271780000000",41.0727178,"-112.3341186000000",-112.3341186,"OK","16020310","USGS-410422112200001",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1662","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","12:00:00","MDT","2022-09-08 18:00:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356712","nwisut.01.02201536","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1663","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","12:00:00","MDT","2022-09-08 18:00:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356722","nwisut.01.02201536","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1664","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","12:18:00","MDT","2022-09-08 18:18:00",NA,NA,78,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.078",78,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356739","nwisut.01.02201537","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1665","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","12:18:00","MDT","2022-09-08 18:18:00",NA,NA,346,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.346",346,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"6.0",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356749","nwisut.01.02201537","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"40.89882998000000",40.89882998,"-112.3496756000000",-112.3496756,"OK","16020310","USGS-405356112205601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1666","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","13:05:00","MDT","2022-09-08 19:05:00",NA,NA,79,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.079",79,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356765","nwisut.01.02201538","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1667","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","13:05:00","MDT","2022-09-08 19:05:00",NA,NA,349,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.349",349,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356774","nwisut.01.02201538","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1668","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","13:20:00","MDT","2022-09-08 19:20:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.5",5.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356791","nwisut.01.02201539","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1669","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","13:20:00","MDT","2022-09-08 19:20:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"5.5",5.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356801","nwisut.01.02201539","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.11215620000000",41.1121562,"-112.6413570000000",-112.641357,"OK","16020310","USGS-410644112382601",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29",NA,NA,NA,NA,NA,NA +"1670","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","10:23:00","MDT","2022-09-08 16:23:00",NA,NA,80,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.08",80,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356815","nwisut.01.02201533","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1671","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","10:23:00","MDT","2022-09-08 16:23:00",NA,NA,354,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.354",354,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,"0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","USGS","USGS","USGS",NA,"Unknown",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124356824","nwisut.01.02201533","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.18771490000000",41.1877149,"-112.4130094000000",-112.4130094,"OK","16020310","USGS-411116112244401",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29",NA,NA,NA,NA,NA,NA +"1672","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-07","14:30:00","MDT","2022-09-07 20:30:00",NA,NA,35,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.035",35,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124398991","nwisut.01.02201554","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1673","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-07","14:30:00","MDT","2022-09-07 20:30:00",NA,NA,157,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.157",157,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","50","USGS parameter code 82398","Point sample",NA,"Other",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124399024","nwisut.01.02201554","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010026",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,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",NA,NA,NA,NA,NA,NA +"1674","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-07","13:30:00","MDT","2022-09-07 19:30:00",NA,NA,40,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.04",40,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124399050","nwisut.01.02201555","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1675","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-07","13:30:00","MDT","2022-09-07 19:30:00",NA,NA,177,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.177",177,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124399089","nwisut.01.02201555","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","003",NA,"Lake, Reservoir, Impoundment",NA,"41.22086110000000",41.2208611,"-112.7663889000000",-112.7663889,"OK","16020310","USGS-10010025",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"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",NA,NA,NA,NA,NA,NA +"1676","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-09-08","11:00:00","MDT","2022-09-08 17:00:00",NA,"1.25",1250,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124402624","nwisut.01.02201560","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1677","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-09-08","11:00:00","MDT","2022-09-08 17:00:00",NA,"5.54",5540,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124402662","nwisut.01.02201560","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","057",NA,"Stream",NA,"41.27827650000000",41.2782765,"-112.0918866000000",-112.0918866,"OK","16020102","USGS-10141000",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88",NA,NA,"2081","sq mi",NA,NA +"1678","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-06","12:00:00","MDT","2022-09-06 18:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124402694","nwisut.01.02201561","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1679","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-06","12:00:00","MDT","2022-09-06 18:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124402714","nwisut.01.02201561","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","011",NA,"Lake, Reservoir, Impoundment",NA,"41.06656389000000",41.06656389,"-112.2302556000000",-112.2302556,"OK","16020310","USGS-410401112134801",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4192.41","feet","0.1","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1680","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","13:00:00","MDT","2022-09-08 19:00:00",NA,NA,10,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.01",10,"Numeric","mg/l as N","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124402791","nwisut.01.02201559","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1681","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,NA,"Not Reviewed","NITRATE_DISSOLVED_NA_NA","2022-09-08","13:00:00","MDT","2022-09-08 19:00:00",NA,NA,44,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Historical Lower Reporting Limit","0.044",44,"Numeric","mg/l asNO3","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, low stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124402829","nwisut.01.02201559","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","035",NA,"Stream",NA,"40.81661107000000",40.81661107,"-112.1007767000000",-112.1007767,"OK","16020204","USGS-10172630",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline",NA,NA,NA,"Preliminary",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,NA,NA,NA,NA +"1682","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS N","Accepted","NITRATE_DISSOLVED_AS N_UG/L","2022-09-21","12:15:00","MDT","2022-09-21 18:15:00",NA,"0.015",15,"Numeric","Actual","N","N","mg/l as N","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124439668","nwisut.01.02201589","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"00618",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1683","Sample-Routine","Non_QC","Water","WATER","Surface Water","Dissolved","DISSOLVED","Accepted","Nitrate","NITRATE",NA,NA,NA,"AS NO3","Accepted","NITRATE_DISSOLVED_AS NO3_UG/L","2022-09-21","12:15:00","MDT","2022-09-21 18:15:00",NA,"0.067",67,"Numeric","Actual","N","N","mg/l asNO3","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7","ALGOR","USGS",NA,"Not Reviewed","10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle",NA,"Pass","NA - Not Applicable",NA,NA,"Stable, normal stage","Routine sample",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS-124439697","nwisut.01.02201589","USGS-UT","USGS Utah Water Science Center","N","Not a duplicate","Y","Not a duplicate","Unique",NA,NA,NA,NA,NA,NA,"N","US","49","009",NA,"Stream",NA,"40.90829296000000",40.90829296,"-109.4229140000000",-109.422914,"OK","14040106","USGS-09234500",NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",NA,FALSE,"Flag",NA,NA,NA,NA,NA,"U.S. Geological Survey",NA,NA,NA,"Accepted",NA,NA,NA,"71851",NA,NA,NA,NA,NA,"6",NA,"24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88",NA,NA,"19400","sq mi","15100","sq mi" +"1684","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","12:39:00","MST","2020-10-14 19:39:00",NA,"2.87",2870,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871463617","WFWQC_UT-WFWQC1020-4917712-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:30",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4917712-1014-LAB/results/871463617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1685","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","13:18:00","MST","2020-11-11 20:18:00",NA,"3.7",3700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871463628","WFWQC_UT-WFWQC1120-4917712-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:31",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4917712-1111-LAB/results/871463628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1686","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","12:33:00","MST","2020-12-09 19:33:00",NA,"5.52",5520,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871463639","WFWQC_UT-WFWQC1220-4917712-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:31",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4917712-1209-LAB/results/871463639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1687","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-13","08:46:00","MST","2020-10-13 15:46:00",NA,"2.23",2230,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871463738","WFWQC_UT-WFWQC1020-4994948-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Ck south of Spring Ck Park tennis courts 2100 South, Lehi","River/Stream",NA,"40.3620150000",40.362015,"-111.8380950000",-111.838095,"OK","16020201","WFWQC_UT-4994948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:33",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3620150000","-111.8380950000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4994948-1013-LAB/results/871463738/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1688","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-10","09:16:00","MST","2020-11-10 16:16:00",NA,"3.22",3220,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871463749","WFWQC_UT-WFWQC1120-4994948-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Ck south of Spring Ck Park tennis courts 2100 South, Lehi","River/Stream",NA,"40.3620150000",40.362015,"-111.8380950000",-111.838095,"OK","16020201","WFWQC_UT-4994948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:33",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3620150000","-111.8380950000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4994948-1110-LAB/results/871463749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1689","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-08","09:18:00","MST","2020-12-08 16:18:00",NA,"3.69",3690,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871463760","WFWQC_UT-WFWQC1220-4994948-1208-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Ck south of Spring Ck Park tennis courts 2100 South, Lehi","River/Stream",NA,"40.3620150000",40.362015,"-111.8380950000",-111.838095,"OK","16020201","WFWQC_UT-4994948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:34",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3620150000","-111.8380950000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4994948-1208-LAB/results/871463760/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1690","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-13","08:28:00","MST","2020-10-13 15:28:00",NA,"1.17",1170,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871463859","WFWQC_UT-WFWQC1020-4994952-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:36",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4994952-1013-LAB/results/871463859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1691","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-10","08:51:00","MST","2020-11-10 15:51:00",NA,"1.61",1610,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871463870","WFWQC_UT-WFWQC1120-4994952-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:36",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4994952-1110-LAB/results/871463870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1692","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-08","08:59:00","MST","2020-12-08 15:59:00",NA,"1.59",1590,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871463881","WFWQC_UT-WFWQC1220-4994952-1208-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:36",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4994952-1208-LAB/results/871463881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1693","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-13","09:16:00","MST","2020-10-13 16:16:00",NA,"8.96",8960,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464035","WFWQC_UT-WFWQC1020-4995043-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4995043-1013-LAB/results/871464035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1694","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-10","09:53:00","MST","2020-11-10 16:53:00",NA,"8.17",8170,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464046","WFWQC_UT-WFWQC1120-4995043-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4995043-1110-LAB/results/871464046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1695","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-08","09:58:00","MST","2020-12-08 16:58:00",NA,"8.32",8320,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464057","WFWQC_UT-WFWQC1220-4995043-1208-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4995043-1208-LAB/results/871464057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1696","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-13","09:54:00","MST","2020-10-13 16:54:00",NA,"2.52",2520,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464156","WFWQC_UT-WFWQC1020-4995075-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4995075-1013-LAB/results/871464156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1697","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-10","10:13:00","MST","2020-11-10 17:13:00",NA,"3.22",3220,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464167","WFWQC_UT-WFWQC1120-4995075-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4995075-1110-LAB/results/871464167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1698","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-08","10:21:00","MST","2020-12-08 17:21:00",NA,"3.95",3950,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464178","WFWQC_UT-WFWQC1220-4995075-1208-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4995075-1208-LAB/results/871464178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1699","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-13","11:38:00","MST","2020-10-13 18:38:00",NA,"11.8",11800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464277","WFWQC_UT-WFWQC1020-4995210-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4995210-1013-LAB/results/871464277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1700","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-10","12:34:00","MST","2020-11-10 19:34:00",NA,"10.5",10500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464288","WFWQC_UT-WFWQC1120-4995210-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4995210-1110-LAB/results/871464288/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1701","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-08","12:07:00","MST","2020-12-08 19:07:00",NA,"12.6",12600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464299","WFWQC_UT-WFWQC1220-4995210-1208-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4995210-1208-LAB/results/871464299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1702","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-13","14:38:00","MST","2020-10-13 21:38:00",NA,"0.587",587,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464486","WFWQC_UT-WFWQC1020-4995575-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4995575-1013-LAB/results/871464486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1703","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-10","15:34:00","MST","2020-11-10 22:34:00",NA,"0.634",634,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464497","WFWQC_UT-WFWQC1120-4995575-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4995575-1110-LAB/results/871464497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1704","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-08","15:27:00","MST","2020-12-08 22:27:00",NA,"0.531",531,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464508","WFWQC_UT-WFWQC1220-4995575-1208-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4995575-1208-LAB/results/871464508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1705","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","12:02:00","MST","2020-10-14 19:02:00",NA,"3.75",3750,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464606","WFWQC_UT-WFWQC1020-4996003-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996003-1014-LAB/results/871464606/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1706","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","12:43:00","MST","2020-11-11 19:43:00",NA,"5.73",5730,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464617","WFWQC_UT-WFWQC1120-4996003-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996003-1111-LAB/results/871464617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1707","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","11:59:00","MST","2020-12-09 18:59:00",NA,"7.23",7230,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464628","WFWQC_UT-WFWQC1220-4996003-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996003-1209-LAB/results/871464628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1708","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","11:40:00","MST","2020-10-14 18:40:00",NA,"5.37",5370,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464726","WFWQC_UT-WFWQC1020-4996020-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996020-1014-LAB/results/871464726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1709","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","12:29:00","MST","2020-11-11 19:29:00",NA,"6.99",6990,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464737","WFWQC_UT-WFWQC1120-4996020-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996020-1111-LAB/results/871464737/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1710","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","11:46:00","MST","2020-12-09 18:46:00",NA,"8.55",8550,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464748","WFWQC_UT-WFWQC1220-4996020-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996020-1209-LAB/results/871464748/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1711","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","11:24:00","MST","2020-10-14 18:24:00",NA,"2.83",2830,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464846","WFWQC_UT-WFWQC1020-4996022-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996022-1014-LAB/results/871464846/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1712","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","12:13:00","MST","2020-11-11 19:13:00",NA,"4.06",4060,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464857","WFWQC_UT-WFWQC1120-4996022-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996022-1111-LAB/results/871464857/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1713","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","11:37:00","MST","2020-12-09 18:37:00",NA,"4.39",4390,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464868","WFWQC_UT-WFWQC1220-4996022-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996022-1209-LAB/results/871464868/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1593","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","10:50:00","MST","2020-10-14 17:50:00",NA,"1.36",1360,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464966","WFWQC_UT-WFWQC1020-4996100-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996100-1014-LAB/results/871464966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1715","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","11:40:00","MST","2020-11-11 18:40:00",NA,"1.12",1120,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464977","WFWQC_UT-WFWQC1120-4996100-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996100-1111-LAB/results/871464977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1716","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","10:59:00","MST","2020-12-09 17:59:00",NA,"1.19",1190,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871464988","WFWQC_UT-WFWQC1220-4996100-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996100-1209-LAB/results/871464988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1717","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","09:38:00","MST","2020-10-14 16:38:00",NA,"9.45",9450,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465086","WFWQC_UT-WFWQC1020-4996190-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996190-1014-LAB/results/871465086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1718","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","09:37:00","MST","2020-11-11 16:37:00",NA,"9.57",9570,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465097","WFWQC_UT-WFWQC1120-4996190-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996190-1111-LAB/results/871465097/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1719","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","09:43:00","MST","2020-12-09 16:43:00",NA,"6",6000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465108","WFWQC_UT-WFWQC1220-4996190-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996190-1209-LAB/results/871465108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1720","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","10:38:00","MST","2020-10-14 17:38:00",NA,"9.36",9360,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465206","WFWQC_UT-WFWQC1020-4996275-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996275-1014-LAB/results/871465206/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1721","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","10:38:00","MST","2020-11-11 17:38:00",NA,"9.8",9800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465217","WFWQC_UT-WFWQC1120-4996275-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996275-1111-LAB/results/871465217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1722","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","10:45:00","MST","2020-12-09 17:45:00",NA,"7.28",7280,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465228","WFWQC_UT-WFWQC1220-4996275-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996275-1209-LAB/results/871465228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1723","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","09:25:00","MST","2020-10-14 16:25:00",NA,"0.973",973,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465326","WFWQC_UT-WFWQC1020-4996410-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996410-1014-LAB/results/871465326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1724","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","09:22:00","MST","2020-11-11 16:22:00",NA,"1.26",1260,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465337","WFWQC_UT-WFWQC1120-4996410-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996410-1111-LAB/results/871465337/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1725","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","09:28:00","MST","2020-12-09 16:28:00",NA,"0.991",991,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465348","WFWQC_UT-WFWQC1220-4996410-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:23:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996410-1209-LAB/results/871465348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1726","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","10:07:00","MST","2020-10-14 17:07:00",NA,"13.24",13240,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465446","WFWQC_UT-WFWQC1020-4996540-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996540-1014-LAB/results/871465446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1727","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","10:08:00","MST","2020-11-11 17:08:00",NA,"10.5",10500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465457","WFWQC_UT-WFWQC1120-4996540-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996540-1111-LAB/results/871465457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1728","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","10:13:00","MST","2020-12-09 17:13:00",NA,"11.2",11200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465468","WFWQC_UT-WFWQC1220-4996540-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996540-1209-LAB/results/871465468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1729","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","09:07:00","MST","2020-10-14 16:07:00",NA,"18.14",18140,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465566","WFWQC_UT-WFWQC1020-4996550-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996550-1014-LAB/results/871465566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1730","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","09:05:00","MST","2020-11-11 16:05:00",NA,"22.8",22800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465577","WFWQC_UT-WFWQC1120-4996550-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996550-1111-LAB/results/871465577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1731","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","09:10:00","MST","2020-12-09 16:10:00",NA,"19.86",19860,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465588","WFWQC_UT-WFWQC1220-4996550-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996550-1209-LAB/results/871465588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1732","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","08:56:00","MST","2020-10-14 15:56:00",NA,"20",20000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465675","WFWQC_UT-WFWQC1020-4996560-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996560-1014-LAB/results/871465675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1733","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","08:53:00","MST","2020-11-11 15:53:00",NA,"26.1",26100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465686","WFWQC_UT-WFWQC1120-4996560-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996560-1111-LAB/results/871465686/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1734","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","09:00:00","MST","2020-12-09 16:00:00",NA,"23",23000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465697","WFWQC_UT-WFWQC1220-4996560-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996560-1209-LAB/results/871465697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1735","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","10:19:00","MST","2020-10-14 17:19:00",NA,"6.6",6600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465795","WFWQC_UT-WFWQC1020-4996566-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996566-1014-LAB/results/871465795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1736","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","10:19:00","MST","2020-11-11 17:19:00",NA,"9.69",9690,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465806","WFWQC_UT-WFWQC1120-4996566-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996566-1111-LAB/results/871465806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1737","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","10:24:00","MST","2020-12-09 17:24:00",NA,"11.4",11400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465817","WFWQC_UT-WFWQC1220-4996566-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996566-1209-LAB/results/871465817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1738","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","08:43:00","MST","2020-10-14 15:43:00",NA,"2.67",2670,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465915","WFWQC_UT-WFWQC1020-4996570-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996570-1014-LAB/results/871465915/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1739","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","08:38:00","MST","2020-11-11 15:38:00",NA,"2.36",2360,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465926","WFWQC_UT-WFWQC1120-4996570-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996570-1111-LAB/results/871465926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1740","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","08:48:00","MST","2020-12-09 15:48:00",NA,"0.939",939,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871465937","WFWQC_UT-WFWQC1220-4996570-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996570-1209-LAB/results/871465937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1741","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-13","13:09:00","MST","2020-10-13 20:09:00",NA,"0.246",246,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871466036","WFWQC_UT-WFWQC1020-4996680-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996680-1013-LAB/results/871466036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1742","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-10","14:12:00","MST","2020-11-10 21:12:00",NA,"0.245",245,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871466047","WFWQC_UT-WFWQC1120-4996680-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996680-1110-LAB/results/871466047/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1743","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-08","13:23:00","MST","2020-12-08 20:23:00",NA,"0.298",298,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-871466058","WFWQC_UT-WFWQC1220-4996680-1208-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2020-12-28T16:24:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996680-1208-LAB/results/871466058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1744","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-14","13:09:00","MST","2020-10-14 20:09:00",NA,"1.71",1710,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-872082644","WFWQC_UT-WFWQC1020-5919860-1014-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at 6400 S Road","River/Stream",NA,"40.1144010000",40.114401,"-111.7929820000",-111.792982,"OK","16020202","WFWQC_UT-5919860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-01-08T13:36:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1144010000","-111.7929820000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-5919860-1014-LAB/results/872082644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1745","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-11","13:47:00","MST","2020-11-11 20:47:00",NA,"1.93",1930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-872082655","WFWQC_UT-WFWQC1120-5919860-1111-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at 6400 S Road","River/Stream",NA,"40.1144010000",40.114401,"-111.7929820000",-111.792982,"OK","16020202","WFWQC_UT-5919860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-01-08T13:36:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1144010000","-111.7929820000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-5919860-1111-LAB/results/872082655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1746","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-09","12:57:00","MST","2020-12-09 19:57:00",NA,"6.44",6440,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-872082666","WFWQC_UT-WFWQC1220-5919860-1209-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at 6400 S Road","River/Stream",NA,"40.1144010000",40.114401,"-111.7929820000",-111.792982,"OK","16020202","WFWQC_UT-5919860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-01-08T13:36:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1144010000","-111.7929820000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-5919860-1209-LAB/results/872082666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1747","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-13","10:19:00","MST","2020-10-13 17:19:00",NA,"0.653",653,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-872083510","WFWQC_UT-WFWQC1020-4995222-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-01-08T13:46:18",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4995222-1013-LAB/results/872083510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1748","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-10","10:34:00","MST","2020-11-10 17:34:00",NA,"2.39",2390,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-872083534","WFWQC_UT-WFWQC1120-4995222-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-01-08T13:46:18",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4995222-1110-LAB/results/872083534/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1749","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-08","10:38:00","MST","2020-12-08 17:38:00",NA,"3.96",3960,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-872083559","WFWQC_UT-WFWQC1220-4995222-1208-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-01-08T13:46:19",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4995222-1208-LAB/results/872083559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1750","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-16",NA,NA,NA,NA,"0.175",175,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Practical Quantitation Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Anion Chromatography Method",NA,"9056","USEPA",NA,"Valid","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-875331626","952307_WQX-L1286923-01","952307_WQX","LT Environmental Inc.","N","Not a duplicate","Y","Not a duplicate","Unique","Long-Term Monitoring Plan for Water Resources","Baseline water quality monitoring in the Uinta Basin, Utah","GASCO - 030812003",NA,NA,NA,"N","US","49","047","SW-05","River/Stream",NA,"39.8424877830",39.842487783,"-109.9160602910",-109.916060291,"OK","14060005","952307_WQX-4933370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-08T12:01:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"39.8424877830","-109.9160602910","Final",NA,NA,NA,NA,NA,NA,"2020-11-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1286923-01/results/875331626/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1751","Quality Control Sample-Blind Duplicate","QC_duplicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-16",NA,NA,NA,NA,"0.164",164,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Practical Quantitation Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Anion Chromatography Method",NA,"9056","USEPA",NA,"Valid","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-875331808","952307_WQX-L1286944-01","952307_WQX","LT Environmental Inc.","N","Not a duplicate","Y","Not a duplicate","Unique","Long-Term Monitoring Plan for Water Resources","Baseline water quality monitoring in the Uinta Basin, Utah","GASCO - 030812003",NA,NA,NA,"N","US","49","047","SW-05","River/Stream",NA,"39.8424877830",39.842487783,"-109.9160602910",-109.916060291,"OK","14060005","952307_WQX-4933370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-08T12:01:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"39.8424877830","-109.9160602910","Final",NA,NA,NA,NA,NA,NA,"2020-11-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1286944-01/results/875331808/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1752","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-17",NA,NA,NA,NA,"4.55",4550,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Practical Quantitation Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Anion Chromatography Method",NA,"9056","USEPA",NA,"Valid","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-875331995","952307_WQX-L1287560-01","952307_WQX","LT Environmental Inc.","N","Not a duplicate","Y","Not a duplicate","Unique","Long-Term Monitoring Plan for Water Resources","Baseline water quality monitoring in the Uinta Basin, Utah","GASCO - 030812003",NA,NA,NA,"N","US","49","047","SW-09","River/Stream",NA,"40.0721394630",40.072139463,"-109.8575265990",-109.857526599,"OK","14060005","952307_WQX-4933476",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-08T12:01:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0721394630","-109.8575265990","Final",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1287560-01/results/875331995/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1753","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-17",NA,NA,NA,NA,"4.75",4750,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Practical Quantitation Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Anion Chromatography Method",NA,"9056","USEPA",NA,"Valid","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-875332182","952307_WQX-L1287638-01","952307_WQX","LT Environmental Inc.","N","Not a duplicate","Y","Not a duplicate","Unique","Long-Term Monitoring Plan for Water Resources","Baseline water quality monitoring in the Uinta Basin, Utah","GASCO - 030812003",NA,NA,NA,"N","US","49","047","SW-08","River/Stream",NA,"40.0827104690",40.082710469,"-109.8737316460",-109.873731646,"OK","14060005","952307_WQX-4933480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-08T12:01:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0827104690","-109.8737316460","Final",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1287638-01/results/875332182/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1754","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-17",NA,NA,NA,NA,"0.0547",54.7,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Practical Quantitation Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Anion Chromatography Method",NA,"9056","USEPA",NA,"Valid","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle","H;J","Suspect","H - Holding time exceeded: ; J - 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,NA,NA,NA,NA,NA,NA,"STORET-875332368","952307_WQX-L1287642-01","952307_WQX","LT Environmental Inc.","N","Not a duplicate","Y","Not a duplicate","Unique","Long-Term Monitoring Plan for Water Resources","Baseline water quality monitoring in the Uinta Basin, Utah","GASCO - 030812003",NA,NA,NA,"N","US","49","047","SW-11","River/Stream",NA,"40.0849676760",40.084967676,"-109.6757471220",-109.675747122,"OK","14060001","952307_WQX-4937020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-08T12:01:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0849676760","-109.6757471220","Final",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1287642-01/results/875332368/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1755","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2020-11-18",NA,NA,NA,NA,NA,2000,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","2",2000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Anion Chromatography Method",NA,"9056","USEPA",NA,"Valid","LTE_SP","952307_WQX","Well water collection by submergible pump",NA,"Pump/Submersible","H","Suspect","H - Holding time exceeded: ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-875332558","952307_WQX-L1288466-01","952307_WQX","LT Environmental Inc.","N","Not a duplicate","Y","Not a duplicate","Unique","Long-Term Monitoring Plan for Water Resources","Baseline water quality monitoring in the Uinta Basin, Utah","GASCO - 030812003",NA,NA,NA,"N","US","49","047","Gasco Well","Well",NA,"40.0019823170",40.001982317,"-109.9267343060",-109.926734306,"OK","14060005","952307_WQX-Gasco Well",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-08T12:02:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0019823170","-109.9267343060","Final",NA,NA,NA,NA,NA,NA,"2020-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1288466-01/results/875332558/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1756","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2020-11-18",NA,NA,NA,NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Anion Chromatography Method",NA,"9056","USEPA",NA,"Valid","LTE_Bailer","952307_WQX","Well water collection by bailer",NA,"Pump/Bailer",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-875332749","952307_WQX-L1288246-01","952307_WQX","LT Environmental Inc.","N","Not a duplicate","Y","Not a duplicate","Unique","Long-Term Monitoring Plan for Water Resources","Baseline water quality monitoring in the Uinta Basin, Utah","GASCO - 030812003",NA,NA,NA,"N","US","49","047","GW-15","Well",NA,"40.0076920160",40.007692016,"-109.7642711150",-109.764271115,"OK","14060005","952307_WQX-GW-15",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-08T12:02:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0076920160","-109.7642711150","Final",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1288246-01/results/875332749/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1757","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2020-11-18",NA,NA,NA,NA,NA,10000,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","10",10000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Anion Chromatography Method",NA,"9056","USEPA",NA,"Valid","LTE_Bailer","952307_WQX","Well water collection by bailer",NA,"Pump/Bailer","H","Suspect","H - Holding time exceeded: ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-875332940","952307_WQX-L1288244-01","952307_WQX","LT Environmental Inc.","N","Not a duplicate","Y","Not a duplicate","Unique","Long-Term Monitoring Plan for Water Resources","Baseline water quality monitoring in the Uinta Basin, Utah","GASCO - 030812003",NA,NA,NA,"N","US","49","047","GW-22","Well",NA,"40.0202836990",40.020283699,"-109.7489583640",-109.748958364,"OK","14060005","952307_WQX-GW-22",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-08T12:02:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0202836990","-109.7489583640","Final",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1288244-01/results/875332940/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1758","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-16",NA,NA,NA,NA,"0.626",626,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Practical Quantitation Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Anion Chromatography Method",NA,"9056","USEPA",NA,"Valid","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-875333128","952307_WQX-L1286941-01","952307_WQX","LT Environmental Inc.","N","Not a duplicate","Y","Not a duplicate","Unique","Long-Term Monitoring Plan for Water Resources","Baseline water quality monitoring in the Uinta Basin, Utah","GASCO - 030812003",NA,NA,NA,"N","US","49","013","Rye Spring 3","Spring",NA,"39.8545350100",39.85453501,"-110.2910545200",-110.29105452,"OK","14060005","952307_WQX-Rye Spring 3",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-08T12:02:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"39.8545350100","-110.2910545200","Final",NA,NA,NA,NA,NA,NA,"2020-11-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1286941-01/results/875333128/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1759","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-16",NA,NA,NA,NA,"0.381",381,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Practical Quantitation Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Anion Chromatography Method",NA,"9056","USEPA",NA,"Valid","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-875333312","952307_WQX-L1286916-01","952307_WQX","LT Environmental Inc.","N","Not a duplicate","Y","Not a duplicate","Unique","Long-Term Monitoring Plan for Water Resources","Baseline water quality monitoring in the Uinta Basin, Utah","GASCO - 030812003",NA,NA,NA,"N","US","49","013","Unnamed Spring 2","Spring",NA,"40.0125260000",40.012526,"-110.0080130000",-110.008013,"OK","14060005","952307_WQX-Unnamed Spring 2",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-08T12:02:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0125260000","-110.0080130000","Final",NA,NA,NA,NA,NA,NA,"2020-11-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1286916-01/results/875333312/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1760","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_UG/L","2020-12-07","09:20:00","MST","2020-12-07 16:20:00",NA,"0.264",264,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Laboratory Reporting Level","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492310","NTHRNUTE-GW03:202012070920:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","Well","NWNE Sec 21 T3S R2E","40.2131055600",40.21310556,"-109.7702916700",-109.77029167,"OK","14060003","NTHRNUTE-GW03",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2131055600","-109.7702916700","Final",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW03%3A202012070920%3ASR/results/876492310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2020-12-07","09:20:00","MST","2020-12-07 16:20:00",NA,NA,250,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.25",250,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492313","NTHRNUTE-GW03:202012070920:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","Well","NWNE Sec 21 T3S R2E","40.2131055600",40.21310556,"-109.7702916700",-109.77029167,"OK","14060003","NTHRNUTE-GW03",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2131055600","-109.7702916700","Final",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW03%3A202012070920%3ASR/results/876492313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1762","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_UG/L","2020-12-09","09:50:00","MST","2020-12-09 16:50:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492421","NTHRNUTE-GW04:202012090950:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","Well","Lot 4 Sec 3 T4S R2E","40.1710083300",40.17100833,"-109.7627250000",-109.762725,"OK","14060003","NTHRNUTE-GW04",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1710083300","-109.7627250000","Final",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW04%3A202012090950%3ASR/results/876492421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"48","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2020-12-09","09:50:00","MST","2020-12-09 16:50:00",NA,NA,250,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.25",250,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492424","NTHRNUTE-GW04:202012090950:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","Well","Lot 4 Sec 3 T4S R2E","40.1710083300",40.17100833,"-109.7627250000",-109.762725,"OK","14060003","NTHRNUTE-GW04",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1710083300","-109.7627250000","Final",NA,NA,NA,NA,NA,NA,"2020-12-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW04%3A202012090950%3ASR/results/876492424/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1764","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_UG/L","2020-12-09","09:00:00","MST","2020-12-09 16:00:00",NA,"0.125",125,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Laboratory Reporting Level","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492532","NTHRNUTE-GW08:202012090900:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","Well","NWNW Sec 28 T3S R2E","40.1970805600",40.19708056,"-109.7817111100",-109.78171111,"OK","14060003","NTHRNUTE-GW08",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1970805600","-109.7817111100","Final",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW08%3A202012090900%3ASR/results/876492532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"50","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2020-12-09","09:00:00","MST","2020-12-09 16:00:00",NA,NA,250,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.25",250,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492535","NTHRNUTE-GW08:202012090900:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","Well","NWNW Sec 28 T3S R2E","40.1970805600",40.19708056,"-109.7817111100",-109.78171111,"OK","14060003","NTHRNUTE-GW08",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1970805600","-109.7817111100","Final",NA,NA,NA,NA,NA,NA,"2020-12-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW08%3A202012090900%3ASR/results/876492535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1766","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_UG/L","2020-12-07","08:40:00","MST","2020-12-07 15:40:00",NA,"0.349",349,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Laboratory Reporting Level","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492642","NTHRNUTE-SW01:202012070840:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA Special project","River/Stream","NENE Sec 10 T3S R1E","40.2415777800",40.24157778,"-109.8594277800",-109.85942778,"OK","14060003","NTHRNUTE-SW01",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2415777800","-109.8594277800","Final",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW01%3A202012070840%3ASR/results/876492642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"25","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2020-12-07","08:40:00","MST","2020-12-07 15:40:00",NA,NA,250,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.25",250,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492644","NTHRNUTE-SW01:202012070840:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA Special project","River/Stream","NENE Sec 10 T3S R1E","40.2415777800",40.24157778,"-109.8594277800",-109.85942778,"OK","14060003","NTHRNUTE-SW01",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2415777800","-109.8594277800","Final",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW01%3A202012070840%3ASR/results/876492644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1768","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_UG/L","2020-12-07","10:45:00","MST","2020-12-07 17:45:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492744","NTHRNUTE-SW02:202012071045:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","River/Stream","Lot 1 Sec 30 T3S R1E, NWSW Sec 29 T3S R1E","40.1929611100",40.19296111,"-109.9158194400",-109.91581944,"OK","14060003","NTHRNUTE-SW02",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1929611100","-109.9158194400","Final",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW02%3A202012071045%3ASR/results/876492744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2020-12-07","10:45:00","MST","2020-12-07 17:45:00",NA,NA,250,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.25",250,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492747","NTHRNUTE-SW02:202012071045:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","River/Stream","Lot 1 Sec 30 T3S R1E, NWSW Sec 29 T3S R1E","40.1929611100",40.19296111,"-109.9158194400",-109.91581944,"OK","14060003","NTHRNUTE-SW02",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1929611100","-109.9158194400","Final",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW02%3A202012071045%3ASR/results/876492747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1770","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_UG/L","2020-12-07","10:00:00","MST","2020-12-07 17:00:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492847","NTHRNUTE-SW03:202012071000:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","River/Stream","SESE Sec 17 T3S R2E, NWSW Sec 23 T3S R1E","40.2067166700",40.20671667,"-109.8592388900",-109.85923889,"OK","14060003","NTHRNUTE-SW03",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2067166700","-109.8592388900","Final",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW03%3A202012071000%3ASR/results/876492847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"16","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2020-12-07","10:00:00","MST","2020-12-07 17:00:00",NA,NA,250,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.25",250,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492850","NTHRNUTE-SW03:202012071000:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","River/Stream","SESE Sec 17 T3S R2E, NWSW Sec 23 T3S R1E","40.2067166700",40.20671667,"-109.8592388900",-109.85923889,"OK","14060003","NTHRNUTE-SW03",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2067166700","-109.8592388900","Final",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW03%3A202012071000%3ASR/results/876492850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1772","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_UG/L","2020-12-07","07:30:00","MST","2020-12-07 14:30:00",NA,"0.252",252,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Laboratory Reporting Level","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492951","NTHRNUTE-SW04:202012070730:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","River/Stream","SWSW Sec 8 T3S R2E","40.2329166700",40.23291667,"-109.8021833300",-109.80218333,"OK","14060003","NTHRNUTE-SW04",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:14",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2329166700","-109.8021833300","Final",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW04%3A202012070730%3ASR/results/876492951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2020-12-07","07:30:00","MST","2020-12-07 14:30:00",NA,NA,250,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.25",250,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876492953","NTHRNUTE-SW04:202012070730:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","River/Stream","SWSW Sec 8 T3S R2E","40.2329166700",40.23291667,"-109.8021833300",-109.80218333,"OK","14060003","NTHRNUTE-SW04",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:14",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2329166700","-109.8021833300","Final",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW04%3A202012070730%3ASR/results/876492953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1774","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_UG/L","2020-12-09","07:40:00","MST","2020-12-09 14:40:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876493053","NTHRNUTE-SW08:202012090740:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","River/Stream","Lot 7 Sec 11 T4S R2E","40.1520694400",40.15206944,"-109.7411805600",-109.74118056,"OK","14060003","NTHRNUTE-SW08",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:15",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1520694400","-109.7411805600","Final",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW08%3A202012090740%3ASR/results/876493053/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"20","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2020-12-09","07:40:00","MST","2020-12-09 14:40:00",NA,NA,250,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Laboratory Reporting Level","0.25",250,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-876493056","NTHRNUTE-SW08:202012090740:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Randlett EDA Programmatic Environmental Assessment","Randlett EDA Programmatic Environmental Assessment","Randlett EDA",NA,"N",NA,"N","US","49","047","EDA special project","River/Stream","Lot 7 Sec 11 T4S R2E","40.1520694400",40.15206944,"-109.7411805600",-109.74118056,"OK","14060003","NTHRNUTE-SW08",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-02-17T12:14:15",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1520694400","-109.7411805600","Final",NA,NA,NA,NA,NA,NA,"2020-12-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW08%3A202012090740%3ASR/results/876493056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1776","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"5.4",5400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824693","WFWQC_UT-WFWQC1020-4992070-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:16",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1777","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"2.53",2530,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824706","WFWQC_UT-WFWQC1120-4992070-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:16",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1778","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"5.2",5200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824719","WFWQC_UT-WFWQC1220-4992070-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:16",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1779","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"0.841",841,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824758","WFWQC_UT-WFWQC1020-4994600-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1780","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"2.05",2050,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824771","WFWQC_UT-WFWQC1120-4994600-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1781","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"1.35",1350,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824784","WFWQC_UT-WFWQC1220-4994600-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1782","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"6.76",6760,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824823","WFWQC_UT-WFWQC1020-4992290-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1783","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"6.49",6490,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824836","WFWQC_UT-WFWQC1120-4992290-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"242","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"14.1",14100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824849","WFWQC_UT-WFWQC1220-4992290-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"204","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-22",NA,NA,NA,NA,"6.04",6040,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824888","WFWQC_UT-WFWQC1020-4991860-1022-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"100","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"6.28",6280,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824913","WFWQC_UT-WFWQC1220-4991860-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:18",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"327","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"7.62",7620,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824952","WFWQC_UT-WFWQC1020-4992320-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:18",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1788","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"6.8",6800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824965","WFWQC_UT-WFWQC1120-4992320-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:18",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1789","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"15.8",15800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883824978","WFWQC_UT-WFWQC1220-4992320-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:18",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1790","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-22",NA,NA,NA,NA,"6.02",6020,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825017","WFWQC_UT-WFWQC1020-4991900-1022-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:18",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1791","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"4.21",4210,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825030","WFWQC_UT-WFWQC1120-4991900-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:18",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"210","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"5.28",5280,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825043","WFWQC_UT-WFWQC1220-4991900-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:18",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1793","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"3.55",3550,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825082","WFWQC_UT-WFWQC1020-4992880-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"334","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"3.08",3080,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825095","WFWQC_UT-WFWQC1120-4992880-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1795","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"3.79",3790,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825108","WFWQC_UT-WFWQC1220-4992880-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1796","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"5.3",5300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825147","WFWQC_UT-WFWQC1020-4991940-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"134","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"5.09",5090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825172","WFWQC_UT-WFWQC1220-4991940-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"338","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"4.92",4920,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825211","WFWQC_UT-WFWQC1020-4994100-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1799","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"3.49",3490,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825224","WFWQC_UT-WFWQC1120-4994100-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"150","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"5.28",5280,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825237","WFWQC_UT-WFWQC1220-4994100-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"219","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"3.08",3080,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825276","WFWQC_UT-WFWQC1020-4994170-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:20",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"99","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"3.23",3230,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825289","WFWQC_UT-WFWQC1120-4994170-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:20",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"140","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"4.14",4140,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825302","WFWQC_UT-WFWQC1220-4994170-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:20",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"222","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"2.48",2480,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825341","WFWQC_UT-WFWQC1020-4994270-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:20",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"223","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"3.15",3150,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825354","WFWQC_UT-WFWQC1120-4994270-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:20",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"224","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"4.06",4060,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825367","WFWQC_UT-WFWQC1220-4994270-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:20",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"225","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"0.562",562,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825406","WFWQC_UT-WFWQC1020-4992950-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:20",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"145","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"0.921",921,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825419","WFWQC_UT-WFWQC1120-4992950-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:21",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"105","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"0.595",595,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825432","WFWQC_UT-WFWQC1220-4992950-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:21",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"106","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-22",NA,NA,NA,NA,"5.59",5590,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825471","WFWQC_UT-WFWQC1020-4990890-1022-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:21",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"78","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"6.61",6610,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825496","WFWQC_UT-WFWQC1220-4990890-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:21",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"121","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-22",NA,NA,NA,NA,"6.45",6450,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825535","WFWQC_UT-WFWQC1020-4991820-1022-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:22",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"109","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-17",NA,NA,NA,NA,"6.3",6300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825560","WFWQC_UT-WFWQC1220-4991820-1217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:22",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"190","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"16",16000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825599","WFWQC_UT-WFWQC1020-4992500-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:22",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"87","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"9.98",9980,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825612","WFWQC_UT-WFWQC1120-4992500-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:22",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"193","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"26.4",26400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825625","WFWQC_UT-WFWQC1220-4992500-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:22",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"153","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"0.88",880,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825664","WFWQC_UT-WFWQC1020-4993580-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:23",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"75","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"1.15",1150,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825677","WFWQC_UT-WFWQC1120-4993580-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:23",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"156","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"0.841",841,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825690","WFWQC_UT-WFWQC1220-4993580-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:23",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"84","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-22",NA,NA,NA,NA,"7.06",7060,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825729","WFWQC_UT-WFWQC1020-4991800-1022-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:23",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"81","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-17",NA,NA,NA,NA,"5.96",5960,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825754","WFWQC_UT-WFWQC1220-4991800-1217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"120","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"2.07",2070,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825793","WFWQC_UT-WFWQC1020-4992540-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"282","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"2.52",2520,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825806","WFWQC_UT-WFWQC1120-4992540-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"161","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"1.59",1590,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825819","WFWQC_UT-WFWQC1220-4992540-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"123","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"14",14000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825858","WFWQC_UT-WFWQC1020-4992480-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"245","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"9.63",9630,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825871","WFWQC_UT-WFWQC1120-4992480-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"137","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"24.9",24900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825884","WFWQC_UT-WFWQC1220-4992480-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"110","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"0.79",790,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825923","WFWQC_UT-WFWQC1020-4994730-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"98","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"1.67",1670,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825936","WFWQC_UT-WFWQC1120-4994730-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"86","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"0.999",999,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825949","WFWQC_UT-WFWQC1220-4994730-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"76","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-22",NA,NA,NA,NA,"0.25",250,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883825988","WFWQC_UT-WFWQC1020-4990780-1022-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"82","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-19",NA,NA,NA,NA,"8.5",8500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826001","WFWQC_UT-WFWQC1120-4990780-1119-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"89","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-17",NA,NA,NA,NA,"5.84",5840,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826014","WFWQC_UT-WFWQC1220-4990780-1217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"79","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-22",NA,NA,NA,NA,"13.8",13800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826053","WFWQC_UT-WFWQC1020-4991810-1022-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"80","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-19",NA,NA,NA,NA,"9.75",9750,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826066","WFWQC_UT-WFWQC1120-4991810-1119-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"95","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-17",NA,NA,NA,NA,"13.4",13400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826079","WFWQC_UT-WFWQC1220-4991810-1217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"93","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"8.66",8660,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826118","WFWQC_UT-WFWQC1020-4994160-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"94","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-18",NA,NA,NA,NA,"3.72",3720,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826131","WFWQC_UT-WFWQC1120-4994160-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"176","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"6.53",6530,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826144","WFWQC_UT-WFWQC1220-4994160-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"177","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-22",NA,NA,NA,NA,"6.41",6410,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826183","WFWQC_UT-WFWQC1020-4990790-1022-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"138","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-17",NA,NA,NA,NA,"6.85",6850,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826208","WFWQC_UT-WFWQC1220-4990790-1217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"139","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-22",NA,NA,NA,NA,"6.09",6090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826247","WFWQC_UT-WFWQC1020-4990770-1022-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"261","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-11-19",NA,NA,NA,NA,"4.72",4720,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826260","WFWQC_UT-WFWQC1120-4990770-1119-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"77","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-17",NA,NA,NA,NA,"6.17",6170,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826273","WFWQC_UT-WFWQC1220-4990770-1217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"142","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-10-21",NA,NA,NA,NA,"7.01",7010,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826312","WFWQC_UT-WFWQC1020-4991290-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"92","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2020-12-16",NA,NA,NA,NA,"7.89",7890,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-883826337","WFWQC_UT-WFWQC1220-4991290-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-04-02T19:20:28",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2044","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-05-26","14:09:00","MST","2021-05-26 21:09:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-902714899","NTHRNUTE-IDR:202105261409:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","INDIAN CREEK","River/Stream",NA,"40.1572222222",40.1572222222,"-110.4050000000",-110.405,"OK","14060004","NTHRNUTE-IDR",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-07-13T21:01:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1572222222","-110.4050000000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"53","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"None",NA,"Not Reviewed","AMMONIA_UNFILTERED_NA_UG/L","2021-05-26","14:09:00","MST","2021-05-26 21:09:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-902714901","NTHRNUTE-IDR:202105261409:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","INDIAN CREEK","River/Stream",NA,"40.1572222222",40.1572222222,"-110.4050000000",-110.405,"OK","14060004","NTHRNUTE-IDR",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-07-13T21:01:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1572222222","-110.4050000000","Final",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202105261409%3ASR/results/902714901/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"54","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"None",NA,"Not Reviewed","AMMONIA_UNFILTERED_NA_UG/L","2021-05-26","12:47:00","MST","2021-05-26 19:47:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-902714993","NTHRNUTE-RKD:202105261247:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","Rock Creek","River/Stream","Knights Diversion below 3rd bridge.","40.3110798300",40.31107983,"-110.4938520000",-110.493852,"OK","14060003","NTHRNUTE-RKD",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-07-13T21:01:31",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3110798300","-110.4938520000","Final",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-RKD%3A202105261247%3ASR/results/902714993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2045","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-05-26","12:47:00","MST","2021-05-26 19:47:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-902714995","NTHRNUTE-RKD:202105261247:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","Rock Creek","River/Stream","Knights Diversion below 3rd bridge.","40.3110798300",40.31107983,"-110.4938520000",-110.493852,"OK","14060003","NTHRNUTE-RKD",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-07-13T21:01:31",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3110798300","-110.4938520000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2046","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-05-26","15:06:00","MST","2021-05-26 22:06:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-902715004","NTHRNUTE-SCC:202105261506:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","Sowers Canyon Creek","River/Stream","River/Stream","40.0615548300",40.06155483,"-110.2903830000",-110.290383,"OK","14060003","NTHRNUTE-SCC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-07-13T21:01:31",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0615548300","-110.2903830000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"57","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"None",NA,"Not Reviewed","AMMONIA_UNFILTERED_NA_UG/L","2021-05-26","15:06:00","MST","2021-05-26 22:06:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-902715006","NTHRNUTE-SCC:202105261506:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","Sowers Canyon Creek","River/Stream","River/Stream","40.0615548300",40.06155483,"-110.2903830000",-110.290383,"OK","14060003","NTHRNUTE-SCC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-07-13T21:01:31",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0615548300","-110.2903830000","Final",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SCC%3A202105261506%3ASR/results/902715006/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"58","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"None",NA,"Not Reviewed","AMMONIA_UNFILTERED_NA_UG/L","2021-06-01","11:53:00","MST","2021-06-01 18:53:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-902715057","NTHRNUTE-WRB:202106011153:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Whiterocks River 2","River/Stream","River above Uriah Heeps.","40.5331460000",40.533146,"-109.9237518300",-109.92375183,"OK","14060003","NTHRNUTE-WRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-07-13T21:01:32",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5331460000","-109.9237518300","Final",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202106011153%3ASR/results/902715057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2047","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-06-01","11:53:00","MST","2021-06-01 18:53:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-902715059","NTHRNUTE-WRB:202106011153:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Whiterocks River 2","River/Stream","River above Uriah Heeps.","40.5331460000",40.533146,"-109.9237518300",-109.92375183,"OK","14060003","NTHRNUTE-WRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-07-13T21:01:32",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5331460000","-109.9237518300","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3262","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-04","17:25:00","MST","2020-10-05 00:25:00",NA,"0.104",104,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533138","UTAHDWQ_WQX-BLMGSE201004-4951850-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT US89 XING","River/Stream",NA,"37.1074900000",37.10749,"-111.9068500000",-111.90685,"OK","14070007","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1074900000","-111.9068500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4951850-1004-4-C/results/911533138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3263","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-04","11:25:00","MST","2020-10-04 18:25:00",NA,"0.111",111,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533144","UTAHDWQ_WQX-BLMGSE201004-4953980-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4953980-1004-4-C/results/911533144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3264","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-04","11:25:00","MST","2020-10-04 18:25:00",NA,"0.144",144,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533148","UTAHDWQ_WQX-BLMGSE201004-4953980-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4953980-1004-4-C/results/911533148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3265","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-04","11:17:00","MST","2020-10-04 18:17:00",NA,"0.115",115,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533170","UTAHDWQ_WQX-BLMGSE201004-4953981-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4953981-1004-4-C/results/911533170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3266","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-04","11:17:00","MST","2020-10-04 18:17:00",NA,"0.141",141,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533174","UTAHDWQ_WQX-BLMGSE201004-4953981-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4953981-1004-4-C/results/911533174/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3267","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","08:51:00","MST","2020-10-05 15:51:00",NA,"0.191",191,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533198","UTAHDWQ_WQX-BLMGSE201004-5994520-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"37.1841500000",37.18415,"-111.3684900000",-111.36849,"OK","14070006","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1841500000","-111.3684900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-5994520-1005-4-C/results/911533198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3268","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","10:25:00","MST","2020-10-05 17:25:00",NA,"0.658",658,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533204","UTAHDWQ_WQX-BLMGSE201004-5994530-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-5994530-1005-4-C/results/911533204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3269","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","10:25:00","MST","2020-10-05 17:25:00",NA,"0.492",492,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533208","UTAHDWQ_WQX-BLMGSE201004-5994530-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-5994530-1005-4-C/results/911533208/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3270","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","13:15:00","MST","2020-10-05 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533230","UTAHDWQ_WQX-BLMGSE201004-4951766-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4951766-1005-4-C/results/911533230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3271","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","13:15:00","MST","2020-10-05 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533234","UTAHDWQ_WQX-BLMGSE201004-4951766-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4951766-1005-4-C/results/911533234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3272","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","11:55:00","MST","2020-10-05 18:55:00",NA,"0.108",108,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533256","UTAHDWQ_WQX-BLMGSE201004-5994550-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-5994550-1005-4-C/results/911533256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3273","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-04","12:38:00","MST","2020-10-04 19:38:00",NA,"0.163",163,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533262","UTAHDWQ_WQX-BLMGSE201004-5994650-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-5994650-1004-4-C/results/911533262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3274","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","14:30:00","MST","2020-11-16 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533271","UTAHDWQ_WQX-BLMMOAB201113-4953193-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4953193-1116-4-C/results/911533271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3275","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","14:30:00","MST","2020-11-16 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533275","UTAHDWQ_WQX-BLMMOAB201113-4953193-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4953193-1116-4-C/results/911533275/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3276","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-13","13:45:00","MST","2020-11-13 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533283","UTAHDWQ_WQX-BLMMOAB201113-4955780-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955780-1113-4-C/results/911533283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3277","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-13","13:45:00","MST","2020-11-13 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533287","UTAHDWQ_WQX-BLMMOAB201113-4955780-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955780-1113-4-C/results/911533287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3278","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-13","14:15:00","MST","2020-11-13 21:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533295","UTAHDWQ_WQX-BLMMOAB201113-4955790-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955790-1113-4-C/results/911533295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3279","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-13","14:15:00","MST","2020-11-13 21:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533299","UTAHDWQ_WQX-BLMMOAB201113-4955790-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955790-1113-4-C/results/911533299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3280","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-13","14:15:00","MST","2020-11-13 21:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533307","UTAHDWQ_WQX-BLMMOAB201113-4955791-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955791-1113-4-C/results/911533307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3281","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-13","14:15:00","MST","2020-11-13 21:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533311","UTAHDWQ_WQX-BLMMOAB201113-4955791-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955791-1113-4-C/results/911533311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3282","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-13","13:00:00","MST","2020-11-13 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533319","UTAHDWQ_WQX-BLMMOAB201113-4955815-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955815-1113-4-C/results/911533319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3283","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-13","13:00:00","MST","2020-11-13 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533323","UTAHDWQ_WQX-BLMMOAB201113-4955815-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955815-1113-4-C/results/911533323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3284","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","13:00:00","MST","2020-11-16 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533331","UTAHDWQ_WQX-BLMMOAB201113-4957002-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Moab Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4957002",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4957002-1116-4-C/results/911533331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3285","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","13:00:00","MST","2020-11-16 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533335","UTAHDWQ_WQX-BLMMOAB201113-4957002-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Moab Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4957002",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4957002-1116-4-C/results/911533335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3286","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-19","13:30:00","MST","2020-10-19 20:30:00",NA,"0.205",205,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533343","UTAHDWQ_WQX-BLMMOAB201016-4953193-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201016-4953193-1019-4-C/results/911533343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3287","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-19","13:30:00","MST","2020-10-19 20:30:00",NA,"0.178",178,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533347","UTAHDWQ_WQX-BLMMOAB201016-4953193-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201016-4953193-1019-4-C/results/911533347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3288","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-16","12:30:00","MST","2020-10-16 19:30:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533375","UTAHDWQ_WQX-BLMMOAB201016-4955790-1016-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201016-4955790-1016-4-C/results/911533375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3289","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-16","12:30:00","MST","2020-10-16 19:30:00",NA,"0.146",146,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533379","UTAHDWQ_WQX-BLMMOAB201016-4955790-1016-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201016-4955790-1016-4-C/results/911533379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3290","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","13:00:00","MST","2020-12-02 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533402","UTAHDWQ_WQX-BLMMOAB201202-4955780-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955780-1202-4-C/results/911533402/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3291","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","13:00:00","MST","2020-12-02 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533406","UTAHDWQ_WQX-BLMMOAB201202-4955780-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955780-1202-4-C/results/911533406/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3292","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","12:20:00","MST","2020-12-02 19:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533419","UTAHDWQ_WQX-BLMMOAB201202-4955790-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955790-1202-4-C/results/911533419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3293","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","12:20:00","MST","2020-12-02 19:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533423","UTAHDWQ_WQX-BLMMOAB201202-4955790-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955790-1202-4-C/results/911533423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3294","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","12:30:00","MST","2020-12-02 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533431","UTAHDWQ_WQX-BLMMOAB201202-4955791-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955791-1202-4-C/results/911533431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3295","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","12:30:00","MST","2020-12-02 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533435","UTAHDWQ_WQX-BLMMOAB201202-4955791-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955791-1202-4-C/results/911533435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3296","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","13:50:00","MST","2020-12-02 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533443","UTAHDWQ_WQX-BLMMOAB201202-4955815-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955815-1202-4-C/results/911533443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3297","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","13:50:00","MST","2020-12-02 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533447","UTAHDWQ_WQX-BLMMOAB201202-4955815-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955815-1202-4-C/results/911533447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3298","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","12:15:00","MST","2021-03-31 19:15:00",NA,"0.517",517,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533455","UTAHDWQ_WQX-BLMMOAB210308-4953060-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953060-0331-4-C/results/911533455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3299","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","12:15:00","MST","2021-03-31 19:15:00",NA,"0.939",939,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533459","UTAHDWQ_WQX-BLMMOAB210308-4953060-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953060-0331-4-C/results/911533459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3300","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","14:00:00","MST","2021-03-31 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533487","UTAHDWQ_WQX-BLMMOAB210308-4953193-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953193-0331-4-C/results/911533487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3301","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","14:00:00","MST","2021-03-31 21:00:00",NA,"0.094",94,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533491","UTAHDWQ_WQX-BLMMOAB210308-4953193-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953193-0331-4-C/results/911533491/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3302","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","14:30:00","MST","2021-03-31 21:30:00",NA,"0.107",107,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533519","UTAHDWQ_WQX-BLMMOAB210308-4953205-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953205-0331-4-C/results/911533519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3303","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","14:30:00","MST","2021-03-31 21:30:00",NA,"0.17",170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533523","UTAHDWQ_WQX-BLMMOAB210308-4953205-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953205-0331-4-C/results/911533523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3304","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","15:00:00","MST","2021-03-31 22:00:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533551","UTAHDWQ_WQX-BLMMOAB210308-4953210-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COMB WASH BL FISH CK","River/Stream",NA,"37.3841600000",37.38416,"-109.6684600000",-109.66846,"OK","14080201","UTAHDWQ_WQX-4953210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3841600000","-109.6684600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953210-0331-4-C/results/911533551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3305","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","15:00:00","MST","2021-03-31 22:00:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533555","UTAHDWQ_WQX-BLMMOAB210308-4953210-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COMB WASH BL FISH CK","River/Stream",NA,"37.3841600000",37.38416,"-109.6684600000",-109.66846,"OK","14080201","UTAHDWQ_WQX-4953210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3841600000","-109.6684600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953210-0331-4-C/results/911533555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3306","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","14:00:00","MST","2021-03-08 21:00:00",NA,"0.123",123,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533583","UTAHDWQ_WQX-BLMMOAB210308-4955780-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955780-0308-4-C/results/911533583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3307","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","14:00:00","MST","2021-03-08 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533587","UTAHDWQ_WQX-BLMMOAB210308-4955780-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955780-0308-4-C/results/911533587/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3308","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","13:45:00","MST","2021-03-08 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533610","UTAHDWQ_WQX-BLMMOAB210308-4955790-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955790-0308-4-C/results/911533610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3309","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","13:45:00","MST","2021-03-08 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533614","UTAHDWQ_WQX-BLMMOAB210308-4955790-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955790-0308-4-C/results/911533614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3310","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","13:45:00","MST","2021-03-08 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533647","UTAHDWQ_WQX-BLMMOAB210308-4955791-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955791-0308-4-C/results/911533647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3311","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","13:45:00","MST","2021-03-08 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533651","UTAHDWQ_WQX-BLMMOAB210308-4955791-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955791-0308-4-C/results/911533651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3312","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","15:00:00","MST","2021-03-08 22:00:00",NA,"0.146",146,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533679","UTAHDWQ_WQX-BLMMOAB210308-4955810-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955810-0308-4-C/results/911533679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3313","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","15:00:00","MST","2021-03-08 22:00:00",NA,"0.105",105,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533683","UTAHDWQ_WQX-BLMMOAB210308-4955810-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955810-0308-4-C/results/911533683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3314","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","14:45:00","MST","2021-03-08 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533711","UTAHDWQ_WQX-BLMMOAB210308-4955815-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955815-0308-4-C/results/911533711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3315","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","14:45:00","MST","2021-03-08 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533715","UTAHDWQ_WQX-BLMMOAB210308-4955815-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955815-0308-4-C/results/911533715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3316","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","13:15:00","MST","2021-03-18 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533743","UTAHDWQ_WQX-BLMMOAB210308-4957002-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Moab Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4957002",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4957002-0318-4-C/results/911533743/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3317","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","13:15:00","MST","2021-03-18 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533747","UTAHDWQ_WQX-BLMMOAB210308-4957002-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Moab Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4957002",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4957002-0318-4-C/results/911533747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3318","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","13:15:00","MST","2021-03-18 20:15:00",NA,"0.102",102,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533770","UTAHDWQ_WQX-BLMMOAB210308-4958750-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","FISHER CK AT MOUTH","River/Stream",NA,"38.7433200000",38.74332,"-109.1351100000",-109.13511,"OK","14030004","UTAHDWQ_WQX-4958750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.7433200000","-109.1351100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4958750-0318-4-C/results/911533770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3319","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","13:15:00","MST","2021-03-18 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533774","UTAHDWQ_WQX-BLMMOAB210308-4958750-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","FISHER CK AT MOUTH","River/Stream",NA,"38.7433200000",38.74332,"-109.1351100000",-109.13511,"OK","14030004","UTAHDWQ_WQX-4958750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.7433200000","-109.1351100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4958750-0318-4-C/results/911533774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3320","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","15:00:00","MST","2021-02-22 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533796","UTAHDWQ_WQX-BLMRF210222-4948002-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Richfield QA/QC Equipment Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4948002",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4948002-0222-4-C/results/911533796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3321","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","14:45:00","MST","2021-02-22 21:45:00",NA,"0.13",130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533820","UTAHDWQ_WQX-BLMRF210222-4949263-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah","River/Stream",NA,"38.1018500000",38.10185,"-112.0214700000",-112.02147,"OK","16030002","UTAHDWQ_WQX-4949263",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.1018500000","-112.0214700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949263-0222-4-C/results/911533820/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3322","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","14:45:00","MST","2021-02-22 21:45:00",NA,"0.119",119,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533824","UTAHDWQ_WQX-BLMRF210222-4949263-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah","River/Stream",NA,"38.1018500000",38.10185,"-112.0214700000",-112.02147,"OK","16030002","UTAHDWQ_WQX-4949263",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.1018500000","-112.0214700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949263-0222-4-C/results/911533824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3323","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","09:45:00","MST","2021-02-22 16:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533848","UTAHDWQ_WQX-BLMRF210222-4949583-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Deer Creek above Mountain Spring Fork and below BLM/USFS boundary","River/Stream",NA,"38.0005700000",38.00057,"-112.0554900000",-112.05549,"OK","16030002","UTAHDWQ_WQX-4949583",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0005700000","-112.0554900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949583-0222-4-C/results/911533848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3324","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","09:45:00","MST","2021-02-22 16:45:00",NA,"0.129",129,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533852","UTAHDWQ_WQX-BLMRF210222-4949583-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Deer Creek above Mountain Spring Fork and below BLM/USFS boundary","River/Stream",NA,"38.0005700000",38.00057,"-112.0554900000",-112.05549,"OK","16030002","UTAHDWQ_WQX-4949583",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0005700000","-112.0554900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949583-0222-4-C/results/911533852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3325","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","12:00:00","MST","2021-02-22 19:00:00",NA,"0.776",776,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533876","UTAHDWQ_WQX-BLMRF210222-4949970-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK","River/Stream",NA,"38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949970-0222-4-C/results/911533876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3326","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","12:00:00","MST","2021-02-22 19:00:00",NA,"0.805",805,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533880","UTAHDWQ_WQX-BLMRF210222-4949970-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK","River/Stream",NA,"38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949970-0222-4-C/results/911533880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3327","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","12:15:00","MST","2021-02-22 19:15:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533904","UTAHDWQ_WQX-BLMRF210222-4949971-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970","River/Stream","Replicate of 4949970","38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949971-0222-4-C/results/911533904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3328","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","12:15:00","MST","2021-02-22 19:15:00",NA,"0.916",916,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533908","UTAHDWQ_WQX-BLMRF210222-4949971-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970","River/Stream","Replicate of 4949970","38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949971-0222-4-C/results/911533908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3329","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","11:00:00","MST","2021-02-22 18:00:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533932","UTAHDWQ_WQX-BLMRF210222-4949980-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","DEER CK AB CNFL/ E FK SEVIER R","River/Stream",NA,"38.0112200000",38.01122,"-111.9665800000",-111.96658,"OK","16030002","UTAHDWQ_WQX-4949980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0112200000","-111.9665800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949980-0222-4-C/results/911533932/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3330","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","11:00:00","MST","2021-02-22 18:00:00",NA,"0.539",539,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533936","UTAHDWQ_WQX-BLMRF210222-4949980-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","DEER CK AB CNFL/ E FK SEVIER R","River/Stream",NA,"38.0112200000",38.01122,"-111.9665800000",-111.96658,"OK","16030002","UTAHDWQ_WQX-4949980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0112200000","-111.9665800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949980-0222-4-C/results/911533936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3331","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-22","16:00:00","MST","2020-10-22 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533958","UTAHDWQ_WQX-BLMRF201022-4948002-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Richfield QA/QC Equipment Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4948002",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4948002-1022-4-C/results/911533958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3332","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-22","13:00:00","MST","2020-10-22 20:00:00",NA,"0.141",141,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533963","UTAHDWQ_WQX-BLMRF201022-4949263-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah","River/Stream",NA,"38.1018500000",38.10185,"-112.0214700000",-112.02147,"OK","16030002","UTAHDWQ_WQX-4949263",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.1018500000","-112.0214700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949263-1022-4-C/results/911533963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3333","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-22","13:00:00","MST","2020-10-22 20:00:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533967","UTAHDWQ_WQX-BLMRF201022-4949263-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah","River/Stream",NA,"38.1018500000",38.10185,"-112.0214700000",-112.02147,"OK","16030002","UTAHDWQ_WQX-4949263",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.1018500000","-112.0214700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949263-1022-4-C/results/911533967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3334","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-22","10:00:00","MST","2020-10-22 17:00:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533972","UTAHDWQ_WQX-BLMRF201022-4949970-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK","River/Stream",NA,"38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949970-1022-4-C/results/911533972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3335","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-22","10:00:00","MST","2020-10-22 17:00:00",NA,"0.669",669,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533976","UTAHDWQ_WQX-BLMRF201022-4949970-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK","River/Stream",NA,"38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949970-1022-4-C/results/911533976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3336","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-22","10:15:00","MST","2020-10-22 17:15:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533981","UTAHDWQ_WQX-BLMRF201022-4949971-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970","River/Stream","Replicate of 4949970","38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949971-1022-4-C/results/911533981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3337","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-22","10:15:00","MST","2020-10-22 17:15:00",NA,"0.647",647,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533985","UTAHDWQ_WQX-BLMRF201022-4949971-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970","River/Stream","Replicate of 4949970","38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949971-1022-4-C/results/911533985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3338","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-22","11:00:00","MST","2020-10-22 18:00:00",NA,"0.535",535,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533990","UTAHDWQ_WQX-BLMRF201022-4949980-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","DEER CK AB CNFL/ E FK SEVIER R","River/Stream",NA,"38.0112200000",38.01122,"-111.9665800000",-111.96658,"OK","16030002","UTAHDWQ_WQX-4949980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0112200000","-111.9665800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949980-1022-4-C/results/911533990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3339","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-22","11:00:00","MST","2020-10-22 18:00:00",NA,"0.609",609,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911533994","UTAHDWQ_WQX-BLMRF201022-4949980-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","DEER CK AB CNFL/ E FK SEVIER R","River/Stream",NA,"38.0112200000",38.01122,"-111.9665800000",-111.96658,"OK","16030002","UTAHDWQ_WQX-4949980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0112200000","-111.9665800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949980-1022-4-C/results/911533994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3340","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-25","09:00:00","MST","2021-03-25 16:00:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.66",0.66,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534000","UTAHDWQ_WQX-BORLP210323-4952940-0325-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AB LAKE POWELL","River/Stream",NA,"37.2941600000",37.29416,"-110.4068000000",-110.4068,"OK","14080205","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2941600000","-110.4068000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-4952940-0325-4-C/results/911534000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3341","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-25","09:00:00","MST","2021-03-25 16:00:00",NA,"0.85",850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.66",0.66,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534005","UTAHDWQ_WQX-BORLP210323-4952940-0325-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AB LAKE POWELL","River/Stream",NA,"37.2941600000",37.29416,"-110.4068000000",-110.4068,"OK","14080205","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2941600000","-110.4068000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-4952940-0325-4-C/results/911534005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3342","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-27","14:15:00","MST","2021-03-27 21:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534029","UTAHDWQ_WQX-BORLP210323-5952422-0327-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952422-0327-2-C/results/911534029/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3343","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-27","14:15:00","MST","2021-03-27 21:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534034","UTAHDWQ_WQX-BORLP210323-5952422-0327-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952422-0327-2-C/results/911534034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3344","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-27","14:30:00","MST","2021-03-27 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534038","UTAHDWQ_WQX-BORLP210323-5952422-0327-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952422-0327-29-C/results/911534038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3345","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-27","14:30:00","MST","2021-03-27 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534043","UTAHDWQ_WQX-BORLP210323-5952422-0327-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952422-0327-29-C/results/911534043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3346","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-24","13:30:00","MST","2021-03-24 20:30:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534135","UTAHDWQ_WQX-BORLP210323-5952560-0324-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952560-0324-2-C/results/911534135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3347","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","13:30:00","MST","2021-03-24 20:30:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534140","UTAHDWQ_WQX-BORLP210323-5952560-0324-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952560-0324-2-C/results/911534140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3348","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-24","13:45:00","MST","2021-03-24 20:45:00",NA,"0.445",445,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","91.5",91.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534144","UTAHDWQ_WQX-BORLP210323-5952560-0324-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952560-0324-29-C/results/911534144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3349","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","13:45:00","MST","2021-03-24 20:45:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","91.5",91.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534149","UTAHDWQ_WQX-BORLP210323-5952560-0324-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952560-0324-29-C/results/911534149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3350","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-24","16:15:00","MST","2021-03-24 23:15:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534173","UTAHDWQ_WQX-BORLP210323-5952590-0324-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952590-0324-2-C/results/911534173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3351","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","16:15:00","MST","2021-03-24 23:15:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534178","UTAHDWQ_WQX-BORLP210323-5952590-0324-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952590-0324-2-C/results/911534178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3352","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-24","16:30:00","MST","2021-03-24 23:30:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","51",51,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534182","UTAHDWQ_WQX-BORLP210323-5952590-0324-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952590-0324-29-C/results/911534182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3353","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","16:30:00","MST","2021-03-24 23:30:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","51",51,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Filter reseampled on 3/25/2021 at 10:00 hrs",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534187","UTAHDWQ_WQX-BORLP210323-5952590-0324-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952590-0324-29-C/results/911534187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3354","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-27","08:45:00","MST","2021-03-27 15:45:00",NA,"0.339",339,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534211","UTAHDWQ_WQX-BORLP210323-5952700-0327-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952700-0327-2-C/results/911534211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3355","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-27","08:45:00","MST","2021-03-27 15:45:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534216","UTAHDWQ_WQX-BORLP210323-5952700-0327-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952700-0327-2-C/results/911534216/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3356","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-27","09:15:00","MST","2021-03-27 16:15:00",NA,"0.394",394,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","36",36,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534220","UTAHDWQ_WQX-BORLP210323-5952700-0327-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952700-0327-29-C/results/911534220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3357","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-27","09:15:00","MST","2021-03-27 16:15:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","36",36,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534225","UTAHDWQ_WQX-BORLP210323-5952700-0327-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952700-0327-29-C/results/911534225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3358","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-27","11:00:00","MST","2021-03-27 18:00:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.58",0.58,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534249","UTAHDWQ_WQX-BORLP210323-5952740-0327-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952740-0327-4-C/results/911534249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3359","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-27","11:00:00","MST","2021-03-27 18:00:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.58",0.58,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534254","UTAHDWQ_WQX-BORLP210323-5952740-0327-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952740-0327-4-C/results/911534254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3360","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-25","16:00:00","MST","2021-03-25 23:00:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534278","UTAHDWQ_WQX-BORLP210323-5952770-0325-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-2-C/results/911534278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3361","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-25","16:00:00","MST","2021-03-25 23:00:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534283","UTAHDWQ_WQX-BORLP210323-5952770-0325-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-2-C/results/911534283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3362","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-25","16:15:00","MST","2021-03-25 23:15:00",NA,"0.433",433,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534287","UTAHDWQ_WQX-BORLP210323-5952770-0325-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-23-C/results/911534287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3363","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-25","16:15:00","MST","2021-03-25 23:15:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534292","UTAHDWQ_WQX-BORLP210323-5952770-0325-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-23-C/results/911534292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3364","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-25","16:20:00","MST","2021-03-25 23:20:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534296","UTAHDWQ_WQX-BORLP210323-5952770-0325-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-27-C/results/911534296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3365","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-25","16:20:00","MST","2021-03-25 23:20:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534301","UTAHDWQ_WQX-BORLP210323-5952770-0325-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-27-C/results/911534301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3366","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-25","16:25:00","MST","2021-03-25 23:25:00",NA,"0.453",453,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","63",63,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534305","UTAHDWQ_WQX-BORLP210323-5952770-0325-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-29-C/results/911534305/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3367","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-25","16:25:00","MST","2021-03-25 23:25:00",NA,"0.429",429,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","63",63,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534310","UTAHDWQ_WQX-BORLP210323-5952770-0325-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-29-C/results/911534310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3368","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-26","09:10:00","MST","2021-03-26 16:10:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534334","UTAHDWQ_WQX-BORLP210323-5952910-0326-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952910-0326-2-C/results/911534334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3369","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-26","09:10:00","MST","2021-03-26 16:10:00",NA,"0.394",394,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534339","UTAHDWQ_WQX-BORLP210323-5952910-0326-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952910-0326-2-C/results/911534339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3370","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-26","09:20:00","MST","2021-03-26 16:20:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","42.5",42.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534343","UTAHDWQ_WQX-BORLP210323-5952910-0326-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952910-0326-29-C/results/911534343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3371","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-26","09:20:00","MST","2021-03-26 16:20:00",NA,"0.387",387,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","42.5",42.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534348","UTAHDWQ_WQX-BORLP210323-5952910-0326-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952910-0326-29-C/results/911534348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3372","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","12:30:00","MST","2021-02-10 19:30:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534388","UTAHDWQ_WQX-BRI210208-4900470-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900470-0210-4-C/results/911534388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3373","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","12:30:00","MST","2021-02-10 19:30:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534392","UTAHDWQ_WQX-BRI210208-4900470-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900470-0210-4-C/results/911534392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3374","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","12:40:00","MST","2021-02-10 19:40:00",NA,"0.608",608,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534414","UTAHDWQ_WQX-BRI210208-4900510-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900510-0210-4-C/results/911534414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3375","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","12:40:00","MST","2021-02-10 19:40:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534418","UTAHDWQ_WQX-BRI210208-4900510-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900510-0210-4-C/results/911534418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3376","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","13:00:00","MST","2021-02-10 20:00:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534440","UTAHDWQ_WQX-BRI210208-4900511-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900511-0210-4-C/results/911534440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3377","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","13:00:00","MST","2021-02-10 20:00:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534444","UTAHDWQ_WQX-BRI210208-4900511-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900511-0210-4-C/results/911534444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3378","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-08","16:00:00","MST","2021-02-08 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534449","UTAHDWQ_WQX-BRI210208-4900753-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0208-4-C/results/911534449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3379","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-08","16:00:00","MST","2021-02-08 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534453","UTAHDWQ_WQX-BRI210208-4900753-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0208-4-C/results/911534453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3380","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","16:00:00","MST","2021-02-09 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534475","UTAHDWQ_WQX-BRI210208-4900753-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0209-4-C/results/911534475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3381","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","16:00:00","MST","2021-02-09 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534479","UTAHDWQ_WQX-BRI210208-4900753-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0209-4-C/results/911534479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3382","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","14:00:00","MST","2021-02-10 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534535","UTAHDWQ_WQX-BRI210208-4900753-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0210-4-C/results/911534535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3383","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","14:00:00","MST","2021-02-10 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534539","UTAHDWQ_WQX-BRI210208-4900753-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0210-4-C/results/911534539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3384","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","12:00:00","MST","2021-02-09 19:00:00",NA,"9.85",9850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534544","UTAHDWQ_WQX-BRI210208-4903950-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903950-0209-4-C/results/911534544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3385","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","12:00:00","MST","2021-02-09 19:00:00",NA,"9.68",9680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534548","UTAHDWQ_WQX-BRI210208-4903950-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903950-0209-4-C/results/911534548/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3386","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","09:30:00","MST","2021-02-10 16:30:00",NA,"2.51",2510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534587","UTAHDWQ_WQX-BRI210208-4904110-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904110-0210-4-C/results/911534587/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3387","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","09:30:00","MST","2021-02-10 16:30:00",NA,"2.67",2670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534591","UTAHDWQ_WQX-BRI210208-4904110-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904110-0210-4-C/results/911534591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3388","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","12:20:00","MST","2021-02-09 19:20:00",NA,"18.2",18200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534596","UTAHDWQ_WQX-BRI210208-4904740-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904740-0209-4-C/results/911534596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3389","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","12:20:00","MST","2021-02-09 19:20:00",NA,"18.1",18100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534600","UTAHDWQ_WQX-BRI210208-4904740-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904740-0209-4-C/results/911534600/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3390","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","10:15:00","MST","2021-02-10 17:15:00",NA,"32.3",32300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534639","UTAHDWQ_WQX-BRI210208-4904770-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904770-0210-4-C/results/911534639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3391","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","10:15:00","MST","2021-02-10 17:15:00",NA,"32.6",32600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534643","UTAHDWQ_WQX-BRI210208-4904770-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904770-0210-4-C/results/911534643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3392","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","11:10:00","MST","2021-02-09 18:10:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534648","UTAHDWQ_WQX-BRI210208-4904800-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904800-0209-4-C/results/911534648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3393","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","11:10:00","MST","2021-02-09 18:10:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534652","UTAHDWQ_WQX-BRI210208-4904800-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904800-0209-4-C/results/911534652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3394","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","10:20:00","MST","2021-02-10 17:20:00",NA,"9",9000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534692","UTAHDWQ_WQX-BRI210208-4904810-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904810-0210-4-C/results/911534692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3395","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","10:20:00","MST","2021-02-10 17:20:00",NA,"9.37",9370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534696","UTAHDWQ_WQX-BRI210208-4904810-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904810-0210-4-C/results/911534696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3396","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","10:00:00","MST","2021-02-10 17:00:00",NA,"3.43",3430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534702","UTAHDWQ_WQX-BRI210208-4904840-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DITCH AB EA MILLER SC-12","Canal Drainage",NA,"41.6555700000",41.65557,"-111.8690300000",-111.86903,"OK","16010203","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6555700000","-111.8690300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904840-0210-4-C/results/911534702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3397","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","10:00:00","MST","2021-02-10 17:00:00",NA,"3.37",3370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534706","UTAHDWQ_WQX-BRI210208-4904840-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DITCH AB EA MILLER SC-12","Canal Drainage",NA,"41.6555700000",41.65557,"-111.8690300000",-111.86903,"OK","16010203","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6555700000","-111.8690300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904840-0210-4-C/results/911534706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3398","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","10:45:00","MST","2021-02-09 17:45:00",NA,"3.23",3230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534728","UTAHDWQ_WQX-BRI210208-4904900-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904900-0209-4-C/results/911534728/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3399","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","10:45:00","MST","2021-02-09 17:45:00",NA,"3.23",3230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534732","UTAHDWQ_WQX-BRI210208-4904900-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904900-0209-4-C/results/911534732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3400","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","11:45:00","MST","2021-02-09 18:45:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534754","UTAHDWQ_WQX-BRI210208-4904920-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904920-0209-4-C/results/911534754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3401","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","11:45:00","MST","2021-02-09 18:45:00",NA,"1.83",1830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534758","UTAHDWQ_WQX-BRI210208-4904920-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904920-0209-4-C/results/911534758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3402","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","12:15:00","MST","2021-02-09 19:15:00",NA,"18",18000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534780","UTAHDWQ_WQX-BRI210208-4904940-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904940-0209-4-C/results/911534780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3403","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","12:15:00","MST","2021-02-09 19:15:00",NA,"17.8",17800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534784","UTAHDWQ_WQX-BRI210208-4904940-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904940-0209-4-C/results/911534784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3404","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","10:35:00","MST","2021-02-10 17:35:00",NA,"6.13",6130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534823","UTAHDWQ_WQX-BRI210208-4904943-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904943-0210-4-C/results/911534823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3405","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","10:35:00","MST","2021-02-10 17:35:00",NA,"6.26",6260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534827","UTAHDWQ_WQX-BRI210208-4904943-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904943-0210-4-C/results/911534827/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3406","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","11:30:00","MST","2021-02-09 18:30:00",NA,"3.98",3980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534832","UTAHDWQ_WQX-BRI210208-4904965-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904965-0209-4-C/results/911534832/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3407","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","11:30:00","MST","2021-02-09 18:30:00",NA,"3.93",3930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534836","UTAHDWQ_WQX-BRI210208-4904965-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904965-0209-4-C/results/911534836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3408","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","11:20:00","MST","2021-02-09 18:20:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534858","UTAHDWQ_WQX-BRI210208-4904990-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904990-0209-4-C/results/911534858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3409","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","11:20:00","MST","2021-02-09 18:20:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534862","UTAHDWQ_WQX-BRI210208-4904990-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904990-0209-4-C/results/911534862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3410","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","11:00:00","MST","2021-02-09 18:00:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534884","UTAHDWQ_WQX-BRI210208-4905000-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905000-0209-4-C/results/911534884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3411","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","11:00:00","MST","2021-02-09 18:00:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534888","UTAHDWQ_WQX-BRI210208-4905000-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905000-0209-4-C/results/911534888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3412","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","10:40:00","MST","2021-02-09 17:40:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534910","UTAHDWQ_WQX-BRI210208-4905040-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905040-0209-4-C/results/911534910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3413","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","10:40:00","MST","2021-02-09 17:40:00",NA,"0.359",359,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534914","UTAHDWQ_WQX-BRI210208-4905040-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905040-0209-4-C/results/911534914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3414","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","10:20:00","MST","2021-02-09 17:20:00",NA,"13.5",13500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534936","UTAHDWQ_WQX-BRI210208-4905050-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905050-0209-4-C/results/911534936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3415","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","10:20:00","MST","2021-02-09 17:20:00",NA,"13.3",13300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534940","UTAHDWQ_WQX-BRI210208-4905050-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905050-0209-4-C/results/911534940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3416","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","10:10:00","MST","2021-02-09 17:10:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534980","UTAHDWQ_WQX-BRI210208-4905052-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905052-0209-4-C/results/911534980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3417","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","10:10:00","MST","2021-02-09 17:10:00",NA,"1.81",1810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911534984","UTAHDWQ_WQX-BRI210208-4905052-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905052-0209-4-C/results/911534984/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3418","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","09:40:00","MST","2021-02-09 16:40:00",NA,"28.1",28100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535024","UTAHDWQ_WQX-BRI210208-4905070-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905070-0209-4-C/results/911535024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3419","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","09:40:00","MST","2021-02-09 16:40:00",NA,"24.8",24800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535028","UTAHDWQ_WQX-BRI210208-4905070-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905070-0209-4-C/results/911535028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3420","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","10:15:00","MST","2021-02-09 17:15:00",NA,"19.1",19100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535068","UTAHDWQ_WQX-BRI210208-4905090-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905090-0209-4-C/results/911535068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3421","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","10:15:00","MST","2021-02-09 17:15:00",NA,"18",18000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535072","UTAHDWQ_WQX-BRI210208-4905090-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905090-0209-4-C/results/911535072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3422","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","09:30:00","MST","2021-02-09 16:30:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535111","UTAHDWQ_WQX-BRI210208-4905200-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905200-0209-4-C/results/911535111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3423","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","09:30:00","MST","2021-02-09 16:30:00",NA,"0.184",184,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535115","UTAHDWQ_WQX-BRI210208-4905200-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905200-0209-4-C/results/911535115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3424","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","09:40:00","MST","2021-02-09 16:40:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535137","UTAHDWQ_WQX-BRI210208-4905301-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905301-0209-4-C/results/911535137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3425","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","09:40:00","MST","2021-02-09 16:40:00",NA,"0.631",631,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535141","UTAHDWQ_WQX-BRI210208-4905301-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905301-0209-4-C/results/911535141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3426","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","11:20:00","MST","2021-02-09 18:20:00",NA,"0.353",353,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535163","UTAHDWQ_WQX-BRI210208-4905400-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905400-0209-4-C/results/911535163/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3427","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","11:20:00","MST","2021-02-09 18:20:00",NA,"0.488",488,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535167","UTAHDWQ_WQX-BRI210208-4905400-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905400-0209-4-C/results/911535167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3428","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","12:40:00","MST","2021-02-09 19:40:00",NA,"0.262",262,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535189","UTAHDWQ_WQX-BRI210208-4905440-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905440-0209-4-C/results/911535189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3429","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","12:40:00","MST","2021-02-09 19:40:00",NA,"0.29",290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535193","UTAHDWQ_WQX-BRI210208-4905440-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905440-0209-4-C/results/911535193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3430","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","12:50:00","MST","2021-02-09 19:50:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535215","UTAHDWQ_WQX-BRI210208-4905441-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905441-0209-4-C/results/911535215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3431","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","12:50:00","MST","2021-02-09 19:50:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535219","UTAHDWQ_WQX-BRI210208-4905441-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905441-0209-4-C/results/911535219/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3432","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","10:30:00","MST","2021-02-10 17:30:00",NA,"9.91",9910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535259","UTAHDWQ_WQX-BRI210208-4905520-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905520-0210-4-C/results/911535259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3433","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","10:30:00","MST","2021-02-10 17:30:00",NA,"10.1",10100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535263","UTAHDWQ_WQX-BRI210208-4905520-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905520-0210-4-C/results/911535263/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3434","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","09:50:00","MST","2021-02-10 16:50:00",NA,"43.4",43400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535286","UTAHDWQ_WQX-BRI210208-4905540-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905540-0210-4-C/results/911535286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3435","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","09:50:00","MST","2021-02-10 16:50:00",NA,"42.6",42600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535290","UTAHDWQ_WQX-BRI210208-4905540-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905540-0210-4-C/results/911535290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3436","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","11:00:00","MST","2021-02-10 18:00:00",NA,"0.68",680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535312","UTAHDWQ_WQX-BRI210208-4905630-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905630-0210-4-C/results/911535312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3437","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","11:00:00","MST","2021-02-10 18:00:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535316","UTAHDWQ_WQX-BRI210208-4905630-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905630-0210-4-C/results/911535316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3438","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","11:10:00","MST","2021-02-10 18:10:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535338","UTAHDWQ_WQX-BRI210208-4905631-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905631-0210-4-C/results/911535338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3439","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","11:10:00","MST","2021-02-10 18:10:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535342","UTAHDWQ_WQX-BRI210208-4905631-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905631-0210-4-C/results/911535342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3440","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","11:30:00","MST","2021-02-10 18:30:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535364","UTAHDWQ_WQX-BRI210208-4905640-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905640-0210-4-C/results/911535364/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3441","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","11:30:00","MST","2021-02-10 18:30:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535368","UTAHDWQ_WQX-BRI210208-4905640-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905640-0210-4-C/results/911535368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3442","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","10:50:00","MST","2021-02-10 17:50:00",NA,"0.904",904,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535390","UTAHDWQ_WQX-BRI210208-4905650-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905650-0210-4-C/results/911535390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3443","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","10:50:00","MST","2021-02-10 17:50:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535394","UTAHDWQ_WQX-BRI210208-4905650-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905650-0210-4-C/results/911535394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3444","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","13:00:00","MST","2021-02-09 20:00:00",NA,"0.534",534,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535399","UTAHDWQ_WQX-BRI210208-4905670-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905670-0209-4-C/results/911535399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3445","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","13:00:00","MST","2021-02-09 20:00:00",NA,"0.534",534,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535403","UTAHDWQ_WQX-BRI210208-4905670-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905670-0209-4-C/results/911535403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3446","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","13:00:00","MST","2021-02-09 20:00:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535425","UTAHDWQ_WQX-BRI210208-4905700-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905700-0209-4-C/results/911535425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3447","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","13:00:00","MST","2021-02-09 20:00:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535429","UTAHDWQ_WQX-BRI210208-4905700-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905700-0209-4-C/results/911535429/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3448","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","13:50:00","MST","2021-02-09 20:50:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535451","UTAHDWQ_WQX-BRI210208-4905740-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905740-0209-4-C/results/911535451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3449","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","13:50:00","MST","2021-02-09 20:50:00",NA,"0.195",195,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535455","UTAHDWQ_WQX-BRI210208-4905740-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905740-0209-4-C/results/911535455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3450","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","13:15:00","MST","2021-02-09 20:15:00",NA,"0.203",203,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535477","UTAHDWQ_WQX-BRI210208-4905750-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905750-0209-4-C/results/911535477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3451","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","13:15:00","MST","2021-02-09 20:15:00",NA,"0.222",222,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535481","UTAHDWQ_WQX-BRI210208-4905750-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905750-0209-4-C/results/911535481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3452","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","13:40:00","MST","2021-02-09 20:40:00",NA,"0.171",171,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535503","UTAHDWQ_WQX-BRI210208-4905780-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905780-0209-4-C/results/911535503/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3453","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","13:40:00","MST","2021-02-09 20:40:00",NA,"0.326",326,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535507","UTAHDWQ_WQX-BRI210208-4905780-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905780-0209-4-C/results/911535507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3454","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","11:20:00","MST","2021-02-10 18:20:00",NA,"3.54",3540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535546","UTAHDWQ_WQX-BRI210208-4905940-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905940-0210-4-C/results/911535546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3455","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","11:20:00","MST","2021-02-10 18:20:00",NA,"3.28",3280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535550","UTAHDWQ_WQX-BRI210208-4905940-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905940-0210-4-C/results/911535550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3456","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","12:30:00","MST","2021-02-09 19:30:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535555","UTAHDWQ_WQX-BRI210208-4906400-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4906400-0209-4-C/results/911535555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3457","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","12:30:00","MST","2021-02-09 19:30:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535559","UTAHDWQ_WQX-BRI210208-4906400-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4906400-0209-4-C/results/911535559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3458","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-08","12:50:00","MST","2021-02-08 19:50:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535581","UTAHDWQ_WQX-BRI210208-4908160-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908160-0208-4-C/results/911535581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3459","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-08","12:50:00","MST","2021-02-08 19:50:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535585","UTAHDWQ_WQX-BRI210208-4908160-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908160-0208-4-C/results/911535585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3460","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-08","12:10:00","MST","2021-02-08 19:10:00",NA,"0.658",658,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535607","UTAHDWQ_WQX-BRI210208-4908165-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908165-0208-4-C/results/911535607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3461","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-08","12:10:00","MST","2021-02-08 19:10:00",NA,"0.805",805,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535611","UTAHDWQ_WQX-BRI210208-4908165-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908165-0208-4-C/results/911535611/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3462","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-08","12:30:00","MST","2021-02-08 19:30:00",NA,"0.445",445,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535633","UTAHDWQ_WQX-BRI210208-4908168-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908168-0208-4-C/results/911535633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3463","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-08","12:30:00","MST","2021-02-08 19:30:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535637","UTAHDWQ_WQX-BRI210208-4908168-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908168-0208-4-C/results/911535637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3464","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-08","12:30:00","MST","2021-02-08 19:30:00",NA,"0.584",584,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535659","UTAHDWQ_WQX-BRI210208-4908170-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908170-0208-4-C/results/911535659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3465","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-08","12:30:00","MST","2021-02-08 19:30:00",NA,"0.895",895,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535663","UTAHDWQ_WQX-BRI210208-4908170-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908170-0208-4-C/results/911535663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3466","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-08","10:40:00","MST","2021-02-08 17:40:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535685","UTAHDWQ_WQX-BRI210208-4908350-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908350-0208-4-C/results/911535685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3467","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-08","10:40:00","MST","2021-02-08 17:40:00",NA,"0.941",941,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535689","UTAHDWQ_WQX-BRI210208-4908350-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908350-0208-4-C/results/911535689/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3468","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-08","09:40:00","MST","2021-02-08 16:40:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535711","UTAHDWQ_WQX-BRI210208-4908500-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908500-0208-4-C/results/911535711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3469","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-08","09:40:00","MST","2021-02-08 16:40:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535715","UTAHDWQ_WQX-BRI210208-4908500-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908500-0208-4-C/results/911535715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3470","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-08","11:00:00","MST","2021-02-08 18:00:00",NA,"0.428",428,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535737","UTAHDWQ_WQX-BRI210208-4908697-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908697-0208-4-C/results/911535737/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3471","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-08","11:00:00","MST","2021-02-08 18:00:00",NA,"0.637",637,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535741","UTAHDWQ_WQX-BRI210208-4908697-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908697-0208-4-C/results/911535741/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3472","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-09","09:00:00","MST","2021-02-09 16:00:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535763","UTAHDWQ_WQX-BRI210208-4908744-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908744-0209-4-C/results/911535763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3473","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-09","09:00:00","MST","2021-02-09 16:00:00",NA,"0.189",189,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535767","UTAHDWQ_WQX-BRI210208-4908744-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908744-0209-4-C/results/911535767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3474","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-08","10:10:00","MST","2021-02-08 17:10:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535789","UTAHDWQ_WQX-BRI210208-5906850-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-5906850-0208-4-C/results/911535789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3475","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-08","10:10:00","MST","2021-02-08 17:10:00",NA,"0.548",548,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535793","UTAHDWQ_WQX-BRI210208-5906850-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-5906850-0208-4-C/results/911535793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3476","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","14:00:00","MST","2020-10-28 21:00:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535815","UTAHDWQ_WQX-BRI201026-4900470-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900470-1028-4-C/results/911535815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3477","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","14:00:00","MST","2020-10-28 21:00:00",NA,"0.998",998,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535819","UTAHDWQ_WQX-BRI201026-4900470-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900470-1028-4-C/results/911535819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3478","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:00:00","MST","2020-10-28 21:00:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535820","UTAHDWQ_WQX-BRI201026-4900470-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900470-1028-4-C/results/911535820/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3479","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:00:00","MST","2020-10-28 21:00:00",NA,"0.992",992,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535823","UTAHDWQ_WQX-BRI201026-4900470-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900470-1028-4-C/results/911535823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3480","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","14:20:00","MST","2020-10-28 21:20:00",NA,"0.919",919,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535843","UTAHDWQ_WQX-BRI201026-4900510-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900510-1028-4-C/results/911535843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3481","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","14:20:00","MST","2020-10-28 21:20:00",NA,"0.776",776,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535847","UTAHDWQ_WQX-BRI201026-4900510-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900510-1028-4-C/results/911535847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3482","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:20:00","MST","2020-10-28 21:20:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535848","UTAHDWQ_WQX-BRI201026-4900510-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900510-1028-4-C/results/911535848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3483","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:20:00","MST","2020-10-28 21:20:00",NA,"0.652",652,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535851","UTAHDWQ_WQX-BRI201026-4900510-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900510-1028-4-C/results/911535851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3484","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","14:30:00","MST","2020-10-28 21:30:00",NA,"0.684",684,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535871","UTAHDWQ_WQX-BRI201026-4900511-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900511-1028-4-C/results/911535871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3485","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","14:30:00","MST","2020-10-28 21:30:00",NA,"0.655",655,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535875","UTAHDWQ_WQX-BRI201026-4900511-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900511-1028-4-C/results/911535875/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3486","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:30:00","MST","2020-10-28 21:30:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535876","UTAHDWQ_WQX-BRI201026-4900511-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900511-1028-4-C/results/911535876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3487","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:30:00","MST","2020-10-28 21:30:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535879","UTAHDWQ_WQX-BRI201026-4900511-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900511-1028-4-C/results/911535879/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3488","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","16:30:00","MST","2020-10-26 23:30:00",NA,"0.087",87,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535899","UTAHDWQ_WQX-BRI201026-4900751-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1026-4-C/results/911535899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3489","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","16:30:00","MST","2020-10-26 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535902","UTAHDWQ_WQX-BRI201026-4900751-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1026-4-C/results/911535902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3490","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","16:30:00","MST","2020-10-26 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535903","UTAHDWQ_WQX-BRI201026-4900751-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","5","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1026-4-C/results/911535903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3491","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","16:30:00","MST","2020-10-26 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535907","UTAHDWQ_WQX-BRI201026-4900751-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","5","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1026-4-C/results/911535907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3492","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","17:00:00","MST","2020-10-28 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535944","UTAHDWQ_WQX-BRI201026-4900751-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","7","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1027-4-C/results/911535944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3493","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","17:00:00","MST","2020-10-28 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535948","UTAHDWQ_WQX-BRI201026-4900751-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","7","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1027-4-C/results/911535948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3494","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","17:00:00","MST","2020-10-28 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535949","UTAHDWQ_WQX-BRI201026-4900751-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","6","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1027-4-C/results/911535949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3495","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","17:00:00","MST","2020-10-28 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535952","UTAHDWQ_WQX-BRI201026-4900751-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","6","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1027-4-C/results/911535952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3496","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","17:00:00","MST","2020-10-29 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535972","UTAHDWQ_WQX-BRI201026-4900751-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","9","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1028-4-C/results/911535972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3497","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","17:00:00","MST","2020-10-29 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535976","UTAHDWQ_WQX-BRI201026-4900751-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","9","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1028-4-C/results/911535976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3498","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","17:00:00","MST","2020-10-29 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535977","UTAHDWQ_WQX-BRI201026-4900751-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","8","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1028-4-C/results/911535977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3499","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","17:00:00","MST","2020-10-29 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911535980","UTAHDWQ_WQX-BRI201026-4900751-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","8","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1028-4-C/results/911535980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3500","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","16:45:00","MST","2020-10-26 23:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536000","UTAHDWQ_WQX-BRI201026-4900753-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","11","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1026-4-C/results/911536000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3501","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","16:45:00","MST","2020-10-26 23:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536004","UTAHDWQ_WQX-BRI201026-4900753-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","11","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1026-4-C/results/911536004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3502","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","16:45:00","MST","2020-10-26 23:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536005","UTAHDWQ_WQX-BRI201026-4900753-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","10","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1026-4-C/results/911536005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3503","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","16:45:00","MST","2020-10-26 23:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536008","UTAHDWQ_WQX-BRI201026-4900753-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","10","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1026-4-C/results/911536008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3504","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","17:30:00","MST","2020-10-28 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536028","UTAHDWQ_WQX-BRI201026-4900753-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","13","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1027-4-C/results/911536028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3505","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","17:30:00","MST","2020-10-28 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536032","UTAHDWQ_WQX-BRI201026-4900753-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","13","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1027-4-C/results/911536032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3506","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","17:30:00","MST","2020-10-28 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536033","UTAHDWQ_WQX-BRI201026-4900753-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","12","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1027-4-C/results/911536033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3507","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","17:30:00","MST","2020-10-28 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536036","UTAHDWQ_WQX-BRI201026-4900753-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","12","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1027-4-C/results/911536036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3508","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","17:00:00","MST","2020-10-29 00:00:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536073","UTAHDWQ_WQX-BRI201026-4900753-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1028-4-C/results/911536073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3509","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","17:00:00","MST","2020-10-29 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536077","UTAHDWQ_WQX-BRI201026-4900753-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1028-4-C/results/911536077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3510","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","17:00:00","MST","2020-10-29 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536078","UTAHDWQ_WQX-BRI201026-4900753-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","14","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1028-4-C/results/911536078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3511","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","17:00:00","MST","2020-10-29 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536081","UTAHDWQ_WQX-BRI201026-4900753-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","14","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1028-4-C/results/911536081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3512","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:10:00","MST","2020-10-26 17:10:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536101","UTAHDWQ_WQX-BRI201026-4901050-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901050-1026-4-C/results/911536101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3513","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:10:00","MST","2020-10-26 17:10:00",NA,"0.746",746,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536104","UTAHDWQ_WQX-BRI201026-4901050-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901050-1026-4-C/results/911536104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3514","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:10:00","MST","2020-10-26 17:10:00",NA,"0.604",604,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536105","UTAHDWQ_WQX-BRI201026-4901050-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901050-1026-4-C/results/911536105/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3515","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:10:00","MST","2020-10-26 17:10:00",NA,"0.639",639,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536109","UTAHDWQ_WQX-BRI201026-4901050-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901050-1026-4-C/results/911536109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3516","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:00:00","MST","2020-10-26 17:00:00",NA,"0.596",596,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536129","UTAHDWQ_WQX-BRI201026-4901100-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901100-1026-4-C/results/911536129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3517","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:00:00","MST","2020-10-26 17:00:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536132","UTAHDWQ_WQX-BRI201026-4901100-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901100-1026-4-C/results/911536132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3518","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:00:00","MST","2020-10-26 17:00:00",NA,"0.617",617,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536133","UTAHDWQ_WQX-BRI201026-4901100-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901100-1026-4-C/results/911536133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3519","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:00:00","MST","2020-10-26 17:00:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536137","UTAHDWQ_WQX-BRI201026-4901100-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901100-1026-4-C/results/911536137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3520","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","09:00:00","MST","2020-10-26 16:00:00",NA,"1.5",1500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536157","UTAHDWQ_WQX-BRI201026-4901180-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901180-1026-4-C/results/911536157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3521","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","09:00:00","MST","2020-10-26 16:00:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536160","UTAHDWQ_WQX-BRI201026-4901180-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901180-1026-4-C/results/911536160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3522","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","09:00:00","MST","2020-10-26 16:00:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536161","UTAHDWQ_WQX-BRI201026-4901180-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901180-1026-4-C/results/911536161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3523","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","09:00:00","MST","2020-10-26 16:00:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536165","UTAHDWQ_WQX-BRI201026-4901180-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901180-1026-4-C/results/911536165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3524","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","09:30:00","MST","2020-10-26 16:30:00",NA,"3.68",3680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536203","UTAHDWQ_WQX-BRI201026-4901200-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901200-1026-4-C/results/911536203/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3525","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","09:30:00","MST","2020-10-26 16:30:00",NA,"3.85",3850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536206","UTAHDWQ_WQX-BRI201026-4901200-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901200-1026-4-C/results/911536206/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3526","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","09:30:00","MST","2020-10-26 16:30:00",NA,"3.46",3460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536207","UTAHDWQ_WQX-BRI201026-4901200-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","15","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901200-1026-4-C/results/911536207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3527","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","09:30:00","MST","2020-10-26 16:30:00",NA,"3.46",3460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536211","UTAHDWQ_WQX-BRI201026-4901200-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","15","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901200-1026-4-C/results/911536211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3528","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","09:40:00","MST","2020-10-26 16:40:00",NA,"3.77",3770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536248","UTAHDWQ_WQX-BRI201026-4901225-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901225-1026-4-C/results/911536248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3529","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","09:40:00","MST","2020-10-26 16:40:00",NA,"3.87",3870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536251","UTAHDWQ_WQX-BRI201026-4901225-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901225-1026-4-C/results/911536251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3530","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","09:40:00","MST","2020-10-26 16:40:00",NA,"3.57",3570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536252","UTAHDWQ_WQX-BRI201026-4901225-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901225-1026-4-C/results/911536252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3531","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","09:40:00","MST","2020-10-26 16:40:00",NA,"3.8",3800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536256","UTAHDWQ_WQX-BRI201026-4901225-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901225-1026-4-C/results/911536256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3532","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:15:00","MST","2020-10-26 17:15:00",NA,"4.01",4010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536293","UTAHDWQ_WQX-BRI201026-4901431-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901431-1026-4-C/results/911536293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3533","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:15:00","MST","2020-10-26 17:15:00",NA,"4.52",4520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536296","UTAHDWQ_WQX-BRI201026-4901431-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901431-1026-4-C/results/911536296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3534","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:15:00","MST","2020-10-26 17:15:00",NA,"4.38",4380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536297","UTAHDWQ_WQX-BRI201026-4901431-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901431-1026-4-C/results/911536297/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3535","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:15:00","MST","2020-10-26 17:15:00",NA,"4.97",4970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536301","UTAHDWQ_WQX-BRI201026-4901431-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901431-1026-4-C/results/911536301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3536","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:20:00","MST","2020-10-26 17:20:00",NA,"4.01",4010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536321","UTAHDWQ_WQX-BRI201026-4901432-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901432-1026-4-C/results/911536321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3537","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:20:00","MST","2020-10-26 17:20:00",NA,"4.52",4520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536324","UTAHDWQ_WQX-BRI201026-4901432-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901432-1026-4-C/results/911536324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3538","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:20:00","MST","2020-10-26 17:20:00",NA,"4.63",4630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536325","UTAHDWQ_WQX-BRI201026-4901432-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901432-1026-4-C/results/911536325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3539","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:20:00","MST","2020-10-26 17:20:00",NA,"5.1",5100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536329","UTAHDWQ_WQX-BRI201026-4901432-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901432-1026-4-C/results/911536329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3540","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:40:00","MST","2020-10-26 17:40:00",NA,"0.636",636,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536349","UTAHDWQ_WQX-BRI201026-4901600-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901600-1026-4-C/results/911536349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3541","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:40:00","MST","2020-10-26 17:40:00",NA,"0.69",690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536352","UTAHDWQ_WQX-BRI201026-4901600-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901600-1026-4-C/results/911536352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3542","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:40:00","MST","2020-10-26 17:40:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536353","UTAHDWQ_WQX-BRI201026-4901600-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901600-1026-4-C/results/911536353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3543","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:40:00","MST","2020-10-26 17:40:00",NA,"0.706",706,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536357","UTAHDWQ_WQX-BRI201026-4901600-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901600-1026-4-C/results/911536357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3544","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","08:30:00","MST","2020-10-27 15:30:00",NA,"0.776",776,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536377","UTAHDWQ_WQX-BRI201026-4901700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901700-1027-4-C/results/911536377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3545","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","08:30:00","MST","2020-10-27 15:30:00",NA,"0.826",826,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536381","UTAHDWQ_WQX-BRI201026-4901700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901700-1027-4-C/results/911536381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3546","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","08:30:00","MST","2020-10-27 15:30:00",NA,"0.899",899,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536382","UTAHDWQ_WQX-BRI201026-4901700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901700-1027-4-C/results/911536382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3547","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","08:30:00","MST","2020-10-27 15:30:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536385","UTAHDWQ_WQX-BRI201026-4901700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901700-1027-4-C/results/911536385/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3548","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:15:00","MST","2020-10-26 20:15:00",NA,"0.508",508,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536405","UTAHDWQ_WQX-BRI201026-4901730-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901730-1026-4-C/results/911536405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3549","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:15:00","MST","2020-10-26 20:15:00",NA,"0.819",819,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536408","UTAHDWQ_WQX-BRI201026-4901730-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901730-1026-4-C/results/911536408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3550","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:15:00","MST","2020-10-26 20:15:00",NA,"0.581",581,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536409","UTAHDWQ_WQX-BRI201026-4901730-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901730-1026-4-C/results/911536409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3551","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:15:00","MST","2020-10-26 20:15:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536413","UTAHDWQ_WQX-BRI201026-4901730-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901730-1026-4-C/results/911536413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3552","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:40:00","MST","2020-10-27 16:40:00",NA,"0.635",635,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536433","UTAHDWQ_WQX-BRI201026-4901790-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901790-1027-4-C/results/911536433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3553","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:40:00","MST","2020-10-27 16:40:00",NA,"0.654",654,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536437","UTAHDWQ_WQX-BRI201026-4901790-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901790-1027-4-C/results/911536437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3554","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:40:00","MST","2020-10-27 16:40:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536438","UTAHDWQ_WQX-BRI201026-4901790-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901790-1027-4-C/results/911536438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3555","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:40:00","MST","2020-10-27 16:40:00",NA,"0.77",770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536441","UTAHDWQ_WQX-BRI201026-4901790-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901790-1027-4-C/results/911536441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3556","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:20:00","MST","2020-10-27 16:20:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536461","UTAHDWQ_WQX-BRI201026-4901930-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901930-1027-4-C/results/911536461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3557","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:20:00","MST","2020-10-27 16:20:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536465","UTAHDWQ_WQX-BRI201026-4901930-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901930-1027-4-C/results/911536465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3558","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:20:00","MST","2020-10-27 16:20:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536466","UTAHDWQ_WQX-BRI201026-4901930-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901930-1027-4-C/results/911536466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3559","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:20:00","MST","2020-10-27 16:20:00",NA,"0.653",653,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536469","UTAHDWQ_WQX-BRI201026-4901930-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901930-1027-4-C/results/911536469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3560","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:50:00","MST","2020-10-27 17:50:00",NA,"0.685",685,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536489","UTAHDWQ_WQX-BRI201026-4901950-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901950-1027-4-C/results/911536489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3561","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:50:00","MST","2020-10-27 17:50:00",NA,"0.762",762,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536493","UTAHDWQ_WQX-BRI201026-4901950-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901950-1027-4-C/results/911536493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3562","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:50:00","MST","2020-10-27 17:50:00",NA,"0.702",702,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536494","UTAHDWQ_WQX-BRI201026-4901950-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901950-1027-4-C/results/911536494/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3563","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:50:00","MST","2020-10-27 17:50:00",NA,"0.736",736,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536497","UTAHDWQ_WQX-BRI201026-4901950-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901950-1027-4-C/results/911536497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3564","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"2.85",2850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536517","UTAHDWQ_WQX-BRI201026-4901975-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901975-1027-4-C/results/911536517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3565","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"3.11",3110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536521","UTAHDWQ_WQX-BRI201026-4901975-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901975-1027-4-C/results/911536521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3566","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"2.89",2890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536522","UTAHDWQ_WQX-BRI201026-4901975-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901975-1027-4-C/results/911536522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3567","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"3.16",3160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536525","UTAHDWQ_WQX-BRI201026-4901975-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901975-1027-4-C/results/911536525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3568","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:20:00","MST","2020-10-27 17:20:00",NA,"0.69",690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536545","UTAHDWQ_WQX-BRI201026-4901980-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901980-1027-4-C/results/911536545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3569","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:20:00","MST","2020-10-27 17:20:00",NA,"0.764",764,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536549","UTAHDWQ_WQX-BRI201026-4901980-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901980-1027-4-C/results/911536549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3570","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:20:00","MST","2020-10-27 17:20:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536550","UTAHDWQ_WQX-BRI201026-4901980-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901980-1027-4-C/results/911536550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3571","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:20:00","MST","2020-10-27 17:20:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536553","UTAHDWQ_WQX-BRI201026-4901980-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901980-1027-4-C/results/911536553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3572","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","11:00:00","MST","2020-10-26 18:00:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536573","UTAHDWQ_WQX-BRI201026-4902000-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902000-1026-4-C/results/911536573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3573","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","11:00:00","MST","2020-10-26 18:00:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536576","UTAHDWQ_WQX-BRI201026-4902000-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902000-1026-4-C/results/911536576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3574","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","11:00:00","MST","2020-10-26 18:00:00",NA,"0.901",901,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536577","UTAHDWQ_WQX-BRI201026-4902000-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902000-1026-4-C/results/911536577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3575","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","11:00:00","MST","2020-10-26 18:00:00",NA,"0.97",970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536581","UTAHDWQ_WQX-BRI201026-4902000-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902000-1026-4-C/results/911536581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3576","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","11:10:00","MST","2020-10-26 18:10:00",NA,"0.733",733,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536602","UTAHDWQ_WQX-BRI201026-4902040-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902040-1026-4-C/results/911536602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3577","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","11:10:00","MST","2020-10-26 18:10:00",NA,"0.857",857,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536605","UTAHDWQ_WQX-BRI201026-4902040-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902040-1026-4-C/results/911536605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3578","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","11:10:00","MST","2020-10-26 18:10:00",NA,"0.809",809,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536606","UTAHDWQ_WQX-BRI201026-4902040-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902040-1026-4-C/results/911536606/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3579","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","11:10:00","MST","2020-10-26 18:10:00",NA,"0.86",860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536610","UTAHDWQ_WQX-BRI201026-4902040-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902040-1026-4-C/results/911536610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3580","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","11:40:00","MST","2020-10-26 18:40:00",NA,"0.822",822,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536630","UTAHDWQ_WQX-BRI201026-4902050-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902050-1026-4-C/results/911536630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3581","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","11:40:00","MST","2020-10-26 18:40:00",NA,"0.765",765,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536633","UTAHDWQ_WQX-BRI201026-4902050-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902050-1026-4-C/results/911536633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3582","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","11:40:00","MST","2020-10-26 18:40:00",NA,"0.761",761,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536634","UTAHDWQ_WQX-BRI201026-4902050-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902050-1026-4-C/results/911536634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3583","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","11:40:00","MST","2020-10-26 18:40:00",NA,"0.774",774,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536638","UTAHDWQ_WQX-BRI201026-4902050-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902050-1026-4-C/results/911536638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3584","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"2.94",2940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536658","UTAHDWQ_WQX-BRI201026-4902700-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902700-1026-4-C/results/911536658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3585","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536661","UTAHDWQ_WQX-BRI201026-4902700-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902700-1026-4-C/results/911536661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3586","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"2.3",2300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536662","UTAHDWQ_WQX-BRI201026-4902700-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902700-1026-4-C/results/911536662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3587","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"3.13",3130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536666","UTAHDWQ_WQX-BRI201026-4902700-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902700-1026-4-C/results/911536666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3588","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:20:00","MST","2020-10-26 19:20:00",NA,"19.1",19100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536687","UTAHDWQ_WQX-BRI201026-4902710-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902710-1026-4-C/results/911536687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3589","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:20:00","MST","2020-10-26 19:20:00",NA,"19.3",19300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536690","UTAHDWQ_WQX-BRI201026-4902710-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902710-1026-4-C/results/911536690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3590","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:20:00","MST","2020-10-26 19:20:00",NA,"19.3",19300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536691","UTAHDWQ_WQX-BRI201026-4902710-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902710-1026-4-C/results/911536691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3591","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:20:00","MST","2020-10-26 19:20:00",NA,"20.1",20100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536695","UTAHDWQ_WQX-BRI201026-4902710-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902710-1026-4-C/results/911536695/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3592","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:40:00","MST","2020-10-26 19:40:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536716","UTAHDWQ_WQX-BRI201026-4902720-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902720-1026-4-C/results/911536716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3593","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:40:00","MST","2020-10-26 19:40:00",NA,"2.03",2030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536719","UTAHDWQ_WQX-BRI201026-4902720-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902720-1026-4-C/results/911536719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3594","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:40:00","MST","2020-10-26 19:40:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536720","UTAHDWQ_WQX-BRI201026-4902720-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902720-1026-4-C/results/911536720/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3595","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:40:00","MST","2020-10-26 19:40:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536724","UTAHDWQ_WQX-BRI201026-4902720-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902720-1026-4-C/results/911536724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3596","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:45:00","MST","2020-10-26 20:45:00",NA,"0.579",579,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536744","UTAHDWQ_WQX-BRI201026-4902900-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902900-1026-4-C/results/911536744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3597","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:45:00","MST","2020-10-26 20:45:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536747","UTAHDWQ_WQX-BRI201026-4902900-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902900-1026-4-C/results/911536747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3598","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:45:00","MST","2020-10-26 20:45:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536748","UTAHDWQ_WQX-BRI201026-4902900-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902900-1026-4-C/results/911536748/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3599","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:45:00","MST","2020-10-26 20:45:00",NA,"0.41",410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536752","UTAHDWQ_WQX-BRI201026-4902900-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902900-1026-4-C/results/911536752/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3600","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","15:00:00","MST","2020-10-26 22:00:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536772","UTAHDWQ_WQX-BRI201026-4902940-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902940-1026-4-C/results/911536772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3601","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","15:00:00","MST","2020-10-26 22:00:00",NA,"0.281",281,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536775","UTAHDWQ_WQX-BRI201026-4902940-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902940-1026-4-C/results/911536775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3602","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","15:00:00","MST","2020-10-26 22:00:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536776","UTAHDWQ_WQX-BRI201026-4902940-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902940-1026-4-C/results/911536776/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3603","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","15:00:00","MST","2020-10-26 22:00:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536780","UTAHDWQ_WQX-BRI201026-4902940-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902940-1026-4-C/results/911536780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3604","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","15:15:00","MST","2020-10-26 22:15:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536800","UTAHDWQ_WQX-BRI201026-4902941-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902941-1026-4-C/results/911536800/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3605","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","15:15:00","MST","2020-10-26 22:15:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536803","UTAHDWQ_WQX-BRI201026-4902941-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902941-1026-4-C/results/911536803/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3606","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","15:15:00","MST","2020-10-26 22:15:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536804","UTAHDWQ_WQX-BRI201026-4902941-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902941-1026-4-C/results/911536804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3607","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","15:15:00","MST","2020-10-26 22:15:00",NA,"0.262",262,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536808","UTAHDWQ_WQX-BRI201026-4902941-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902941-1026-4-C/results/911536808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3608","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"2.21",2210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536828","UTAHDWQ_WQX-BRI201026-4903030-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903030-1027-4-C/results/911536828/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3609","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"2.45",2450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536832","UTAHDWQ_WQX-BRI201026-4903030-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903030-1027-4-C/results/911536832/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3610","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"2.09",2090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536833","UTAHDWQ_WQX-BRI201026-4903030-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903030-1027-4-C/results/911536833/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3611","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"2.3",2300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536836","UTAHDWQ_WQX-BRI201026-4903030-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903030-1027-4-C/results/911536836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3612","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:45:00","MST","2020-10-27 20:45:00",NA,"4.87",4870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536856","UTAHDWQ_WQX-BRI201026-4903060-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903060-1027-4-C/results/911536856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3613","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:45:00","MST","2020-10-27 20:45:00",NA,"4.95",4950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536860","UTAHDWQ_WQX-BRI201026-4903060-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903060-1027-4-C/results/911536860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3614","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:45:00","MST","2020-10-27 20:45:00",NA,"4.76",4760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536861","UTAHDWQ_WQX-BRI201026-4903060-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903060-1027-4-C/results/911536861/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3615","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:45:00","MST","2020-10-27 20:45:00",NA,"4.83",4830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536864","UTAHDWQ_WQX-BRI201026-4903060-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903060-1027-4-C/results/911536864/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3616","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"4.73",4730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536884","UTAHDWQ_WQX-BRI201026-4903080-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903080-1027-4-C/results/911536884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3617","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"4.95",4950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536888","UTAHDWQ_WQX-BRI201026-4903080-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903080-1027-4-C/results/911536888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3618","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"4.77",4770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536889","UTAHDWQ_WQX-BRI201026-4903080-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903080-1027-4-C/results/911536889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3619","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"5.02",5020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536892","UTAHDWQ_WQX-BRI201026-4903080-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903080-1027-4-C/results/911536892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3620","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:30:00","MST","2020-10-27 21:30:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536912","UTAHDWQ_WQX-BRI201026-4903180-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903180-1027-4-C/results/911536912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3621","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:30:00","MST","2020-10-27 21:30:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536916","UTAHDWQ_WQX-BRI201026-4903180-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903180-1027-4-C/results/911536916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3622","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:30:00","MST","2020-10-27 21:30:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536917","UTAHDWQ_WQX-BRI201026-4903180-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903180-1027-4-C/results/911536917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3623","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:30:00","MST","2020-10-27 21:30:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536920","UTAHDWQ_WQX-BRI201026-4903180-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903180-1027-4-C/results/911536920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3624","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:40:00","MST","2020-10-27 21:40:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536940","UTAHDWQ_WQX-BRI201026-4903190-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903190-1027-4-C/results/911536940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3625","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:40:00","MST","2020-10-27 21:40:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536944","UTAHDWQ_WQX-BRI201026-4903190-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903190-1027-4-C/results/911536944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3626","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:40:00","MST","2020-10-27 21:40:00",NA,"1.59",1590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536945","UTAHDWQ_WQX-BRI201026-4903190-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903190-1027-4-C/results/911536945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3627","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:40:00","MST","2020-10-27 21:40:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536948","UTAHDWQ_WQX-BRI201026-4903190-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903190-1027-4-C/results/911536948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3628","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536968","UTAHDWQ_WQX-BRI201026-4903191-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903191-1027-4-C/results/911536968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3629","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536972","UTAHDWQ_WQX-BRI201026-4903191-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903191-1027-4-C/results/911536972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3630","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536973","UTAHDWQ_WQX-BRI201026-4903191-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903191-1027-4-C/results/911536973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3631","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536976","UTAHDWQ_WQX-BRI201026-4903191-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903191-1027-4-C/results/911536976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3632","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"1.76",1760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911536996","UTAHDWQ_WQX-BRI201026-4903200-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903200-1027-4-C/results/911536996/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3633","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"1.82",1820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537000","UTAHDWQ_WQX-BRI201026-4903200-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903200-1027-4-C/results/911537000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3634","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"1.76",1760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537001","UTAHDWQ_WQX-BRI201026-4903200-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903200-1027-4-C/results/911537001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3635","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"1.74",1740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537004","UTAHDWQ_WQX-BRI201026-4903200-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903200-1027-4-C/results/911537004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3636","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:40:00","MST","2020-10-27 19:40:00",NA,"0.938",938,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537024","UTAHDWQ_WQX-BRI201026-4903260-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903260-1027-4-C/results/911537024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3637","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:40:00","MST","2020-10-27 19:40:00",NA,"0.99",990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537028","UTAHDWQ_WQX-BRI201026-4903260-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903260-1027-4-C/results/911537028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3638","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:40:00","MST","2020-10-27 19:40:00",NA,"0.919",919,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537029","UTAHDWQ_WQX-BRI201026-4903260-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903260-1027-4-C/results/911537029/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3639","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:40:00","MST","2020-10-27 19:40:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537032","UTAHDWQ_WQX-BRI201026-4903260-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903260-1027-4-C/results/911537032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3640","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:00:00","MST","2020-10-27 19:00:00",NA,"0.951",951,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537052","UTAHDWQ_WQX-BRI201026-4903400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903400-1027-4-C/results/911537052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3641","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:00:00","MST","2020-10-27 19:00:00",NA,"0.987",987,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537056","UTAHDWQ_WQX-BRI201026-4903400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903400-1027-4-C/results/911537056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3642","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:00:00","MST","2020-10-27 19:00:00",NA,"0.895",895,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537057","UTAHDWQ_WQX-BRI201026-4903400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903400-1027-4-C/results/911537057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3643","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:00:00","MST","2020-10-27 19:00:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537060","UTAHDWQ_WQX-BRI201026-4903400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903400-1027-4-C/results/911537060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3644","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:40:00","MST","2020-10-27 18:40:00",NA,"1.74",1740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537080","UTAHDWQ_WQX-BRI201026-4903500-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903500-1027-4-C/results/911537080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3645","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:40:00","MST","2020-10-27 18:40:00",NA,"1.79",1790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537084","UTAHDWQ_WQX-BRI201026-4903500-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903500-1027-4-C/results/911537084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3646","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:40:00","MST","2020-10-27 18:40:00",NA,"1.82",1820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537085","UTAHDWQ_WQX-BRI201026-4903500-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903500-1027-4-C/results/911537085/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3647","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:40:00","MST","2020-10-27 18:40:00",NA,"1.92",1920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537088","UTAHDWQ_WQX-BRI201026-4903500-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903500-1027-4-C/results/911537088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3648","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:50:00","MST","2020-10-27 18:50:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537108","UTAHDWQ_WQX-BRI201026-4903501-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903501-1027-4-C/results/911537108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3649","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:50:00","MST","2020-10-27 18:50:00",NA,"1.73",1730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537112","UTAHDWQ_WQX-BRI201026-4903501-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903501-1027-4-C/results/911537112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3650","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:50:00","MST","2020-10-27 18:50:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537113","UTAHDWQ_WQX-BRI201026-4903501-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903501-1027-4-C/results/911537113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3651","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:50:00","MST","2020-10-27 18:50:00",NA,"1.73",1730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537116","UTAHDWQ_WQX-BRI201026-4903501-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903501-1027-4-C/results/911537116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3652","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","09:20:00","MST","2020-10-28 16:20:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537136","UTAHDWQ_WQX-BRI201026-4903504-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903504-1028-4-C/results/911537136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3653","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","09:20:00","MST","2020-10-28 16:20:00",NA,"0.403",403,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537140","UTAHDWQ_WQX-BRI201026-4903504-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903504-1028-4-C/results/911537140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3654","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","09:20:00","MST","2020-10-28 16:20:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537141","UTAHDWQ_WQX-BRI201026-4903504-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903504-1028-4-C/results/911537141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3655","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","09:20:00","MST","2020-10-28 16:20:00",NA,"0.387",387,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537144","UTAHDWQ_WQX-BRI201026-4903504-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903504-1028-4-C/results/911537144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3656","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","09:40:00","MST","2020-10-28 16:40:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537164","UTAHDWQ_WQX-BRI201026-4903507-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903507-1028-4-C/results/911537164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3657","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","09:40:00","MST","2020-10-28 16:40:00",NA,"0.513",513,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537168","UTAHDWQ_WQX-BRI201026-4903507-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903507-1028-4-C/results/911537168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3658","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","09:40:00","MST","2020-10-28 16:40:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537169","UTAHDWQ_WQX-BRI201026-4903507-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903507-1028-4-C/results/911537169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3659","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","09:40:00","MST","2020-10-28 16:40:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537172","UTAHDWQ_WQX-BRI201026-4903507-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903507-1028-4-C/results/911537172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3660","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:00:00","MST","2020-10-28 17:00:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537192","UTAHDWQ_WQX-BRI201026-4903510-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903510-1028-4-C/results/911537192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3661","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:00:00","MST","2020-10-28 17:00:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537196","UTAHDWQ_WQX-BRI201026-4903510-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903510-1028-4-C/results/911537196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3662","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:00:00","MST","2020-10-28 17:00:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537197","UTAHDWQ_WQX-BRI201026-4903510-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903510-1028-4-C/results/911537197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3663","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:00:00","MST","2020-10-28 17:00:00",NA,"0.432",432,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537200","UTAHDWQ_WQX-BRI201026-4903510-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903510-1028-4-C/results/911537200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3664","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:40:00","MST","2020-10-28 17:40:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537220","UTAHDWQ_WQX-BRI201026-4903699-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","16","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903699-1028-4-C/results/911537220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3665","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:40:00","MST","2020-10-28 17:40:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537224","UTAHDWQ_WQX-BRI201026-4903699-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","16","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903699-1028-4-C/results/911537224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3666","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:40:00","MST","2020-10-28 17:40:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537225","UTAHDWQ_WQX-BRI201026-4903699-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903699-1028-4-C/results/911537225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3667","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:40:00","MST","2020-10-28 17:40:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537228","UTAHDWQ_WQX-BRI201026-4903699-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903699-1028-4-C/results/911537228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3668","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"12.8",12800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537249","UTAHDWQ_WQX-BRI201026-4903723-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903723-1028-4-C/results/911537249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3669","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"13.1",13100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537253","UTAHDWQ_WQX-BRI201026-4903723-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903723-1028-4-C/results/911537253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3670","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"12.7",12700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537254","UTAHDWQ_WQX-BRI201026-4903723-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903723-1028-4-C/results/911537254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3671","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"13.3",13300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537257","UTAHDWQ_WQX-BRI201026-4903723-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903723-1028-4-C/results/911537257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3672","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","13:20:00","MST","2020-10-28 20:20:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537277","UTAHDWQ_WQX-BRI201026-4903770-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903770-1028-4-C/results/911537277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3673","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","13:20:00","MST","2020-10-28 20:20:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537281","UTAHDWQ_WQX-BRI201026-4903770-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903770-1028-4-C/results/911537281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3674","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:20:00","MST","2020-10-28 20:20:00",NA,"0.985",985,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537282","UTAHDWQ_WQX-BRI201026-4903770-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903770-1028-4-C/results/911537282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3675","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:20:00","MST","2020-10-28 20:20:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537285","UTAHDWQ_WQX-BRI201026-4903770-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903770-1028-4-C/results/911537285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3676","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:50:00","MST","2020-10-28 18:50:00",NA,"0.903",903,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537333","UTAHDWQ_WQX-BRI201026-4903820-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903820-1028-4-C/results/911537333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3677","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:50:00","MST","2020-10-28 18:50:00",NA,"0.869",869,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537337","UTAHDWQ_WQX-BRI201026-4903820-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903820-1028-4-C/results/911537337/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3678","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:50:00","MST","2020-10-28 18:50:00",NA,"0.817",817,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537338","UTAHDWQ_WQX-BRI201026-4903820-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903820-1028-4-C/results/911537338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3679","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:50:00","MST","2020-10-28 18:50:00",NA,"0.916",916,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537341","UTAHDWQ_WQX-BRI201026-4903820-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903820-1028-4-C/results/911537341/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3680","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:00:00","MST","2020-10-27 20:00:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537361","UTAHDWQ_WQX-BRI201026-4903950-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903950-1027-4-C/results/911537361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3681","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:00:00","MST","2020-10-27 20:00:00",NA,"10.7",10700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537365","UTAHDWQ_WQX-BRI201026-4903950-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903950-1027-4-C/results/911537365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3682","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:00:00","MST","2020-10-27 20:00:00",NA,"10.3",10300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537366","UTAHDWQ_WQX-BRI201026-4903950-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903950-1027-4-C/results/911537366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3683","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:00:00","MST","2020-10-27 20:00:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537369","UTAHDWQ_WQX-BRI201026-4903950-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903950-1027-4-C/results/911537369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3684","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","09:15:00","MST","2020-10-28 16:15:00",NA,"2.22",2220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537389","UTAHDWQ_WQX-BRI201026-4904110-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","17","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904110-1028-4-C/results/911537389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3685","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","09:15:00","MST","2020-10-28 16:15:00",NA,"2.22",2220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537393","UTAHDWQ_WQX-BRI201026-4904110-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","17","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904110-1028-4-C/results/911537393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3686","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","09:15:00","MST","2020-10-28 16:15:00",NA,"2.2",2200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537394","UTAHDWQ_WQX-BRI201026-4904110-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904110-1028-4-C/results/911537394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3687","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","09:15:00","MST","2020-10-28 16:15:00",NA,"2.18",2180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537397","UTAHDWQ_WQX-BRI201026-4904110-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904110-1028-4-C/results/911537397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3688","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","12:15:00","MST","2020-10-28 19:15:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537417","UTAHDWQ_WQX-BRI201026-4904240-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904240-1028-4-C/results/911537417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3689","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","12:15:00","MST","2020-10-28 19:15:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537421","UTAHDWQ_WQX-BRI201026-4904240-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904240-1028-4-C/results/911537421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3690","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:15:00","MST","2020-10-28 19:15:00",NA,"0.959",959,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537422","UTAHDWQ_WQX-BRI201026-4904240-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904240-1028-4-C/results/911537422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3691","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:15:00","MST","2020-10-28 19:15:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537425","UTAHDWQ_WQX-BRI201026-4904240-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904240-1028-4-C/results/911537425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3692","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","12:30:00","MST","2020-10-28 19:30:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537445","UTAHDWQ_WQX-BRI201026-4904241-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904241-1028-4-C/results/911537445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3693","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","12:30:00","MST","2020-10-28 19:30:00",NA,"0.939",939,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537449","UTAHDWQ_WQX-BRI201026-4904241-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904241-1028-4-C/results/911537449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3694","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:30:00","MST","2020-10-28 19:30:00",NA,"0.92",920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537450","UTAHDWQ_WQX-BRI201026-4904241-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904241-1028-4-C/results/911537450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3695","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:30:00","MST","2020-10-28 19:30:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537453","UTAHDWQ_WQX-BRI201026-4904241-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904241-1028-4-C/results/911537453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3696","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537473","UTAHDWQ_WQX-BRI201026-4904250-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904250-1028-4-C/results/911537473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3697","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537477","UTAHDWQ_WQX-BRI201026-4904250-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904250-1028-4-C/results/911537477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3698","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537478","UTAHDWQ_WQX-BRI201026-4904250-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904250-1028-4-C/results/911537478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3699","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537481","UTAHDWQ_WQX-BRI201026-4904250-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904250-1028-4-C/results/911537481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3700","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","13:30:00","MST","2020-10-28 20:30:00",NA,"0.859",859,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537501","UTAHDWQ_WQX-BRI201026-4904310-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904310-1028-4-C/results/911537501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3701","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","13:30:00","MST","2020-10-28 20:30:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537505","UTAHDWQ_WQX-BRI201026-4904310-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904310-1028-4-C/results/911537505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3702","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:30:00","MST","2020-10-28 20:30:00",NA,"0.648",648,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537506","UTAHDWQ_WQX-BRI201026-4904310-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904310-1028-4-C/results/911537506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3703","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:30:00","MST","2020-10-28 20:30:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537509","UTAHDWQ_WQX-BRI201026-4904310-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904310-1028-4-C/results/911537509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3704","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","12:45:00","MST","2020-10-28 19:45:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537529","UTAHDWQ_WQX-BRI201026-4904330-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904330-1028-4-C/results/911537529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3705","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","12:45:00","MST","2020-10-28 19:45:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537533","UTAHDWQ_WQX-BRI201026-4904330-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904330-1028-4-C/results/911537533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3706","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:45:00","MST","2020-10-28 19:45:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537534","UTAHDWQ_WQX-BRI201026-4904330-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904330-1028-4-C/results/911537534/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3707","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:45:00","MST","2020-10-28 19:45:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537537","UTAHDWQ_WQX-BRI201026-4904330-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904330-1028-4-C/results/911537537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3708","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","13:00:00","MST","2020-10-28 20:00:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537557","UTAHDWQ_WQX-BRI201026-4904340-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904340-1028-4-C/results/911537557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3709","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","13:00:00","MST","2020-10-28 20:00:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537561","UTAHDWQ_WQX-BRI201026-4904340-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904340-1028-4-C/results/911537561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3710","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:00:00","MST","2020-10-28 20:00:00",NA,"0.979",979,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537562","UTAHDWQ_WQX-BRI201026-4904340-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904340-1028-4-C/results/911537562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3711","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:00:00","MST","2020-10-28 20:00:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537565","UTAHDWQ_WQX-BRI201026-4904340-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904340-1028-4-C/results/911537565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3712","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:30:00","MST","2020-10-27 19:30:00",NA,"0.806",806,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537585","UTAHDWQ_WQX-BRI201026-4904490-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904490-1027-4-C/results/911537585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3713","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:30:00","MST","2020-10-27 19:30:00",NA,"0.926",926,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537589","UTAHDWQ_WQX-BRI201026-4904490-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904490-1027-4-C/results/911537589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3714","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:30:00","MST","2020-10-27 19:30:00",NA,"0.914",914,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537590","UTAHDWQ_WQX-BRI201026-4904490-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904490-1027-4-C/results/911537590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3715","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:30:00","MST","2020-10-27 19:30:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537593","UTAHDWQ_WQX-BRI201026-4904490-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904490-1027-4-C/results/911537593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3716","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:15:00","MST","2020-10-27 19:15:00",NA,"3.82",3820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537613","UTAHDWQ_WQX-BRI201026-4904510-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904510-1027-4-C/results/911537613/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3717","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:15:00","MST","2020-10-27 19:15:00",NA,"4.13",4130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537617","UTAHDWQ_WQX-BRI201026-4904510-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904510-1027-4-C/results/911537617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3718","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:15:00","MST","2020-10-27 19:15:00",NA,"3.68",3680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537618","UTAHDWQ_WQX-BRI201026-4904510-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904510-1027-4-C/results/911537618/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3719","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:15:00","MST","2020-10-27 19:15:00",NA,"4",4000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537621","UTAHDWQ_WQX-BRI201026-4904510-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904510-1027-4-C/results/911537621/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3720","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:00:00","MST","2020-10-27 20:00:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537641","UTAHDWQ_WQX-BRI201026-4904720-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904720-1027-4-C/results/911537641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3721","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:00:00","MST","2020-10-27 20:00:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537645","UTAHDWQ_WQX-BRI201026-4904720-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904720-1027-4-C/results/911537645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3722","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:00:00","MST","2020-10-27 20:00:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537646","UTAHDWQ_WQX-BRI201026-4904720-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904720-1027-4-C/results/911537646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3723","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:00:00","MST","2020-10-27 20:00:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537649","UTAHDWQ_WQX-BRI201026-4904720-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904720-1027-4-C/results/911537649/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3724","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:15:00","MST","2020-10-27 20:15:00",NA,"3.45",3450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537669","UTAHDWQ_WQX-BRI201026-4904724-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904724-1027-4-C/results/911537669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3725","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:15:00","MST","2020-10-27 20:15:00",NA,"2.37",2370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537673","UTAHDWQ_WQX-BRI201026-4904724-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904724-1027-4-C/results/911537673/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3726","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:15:00","MST","2020-10-27 20:15:00",NA,"2.71",2710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537674","UTAHDWQ_WQX-BRI201026-4904724-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904724-1027-4-C/results/911537674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3727","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:15:00","MST","2020-10-27 20:15:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537677","UTAHDWQ_WQX-BRI201026-4904724-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904724-1027-4-C/results/911537677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3728","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:15:00","MST","2020-10-27 20:15:00",NA,"4.78",4780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537697","UTAHDWQ_WQX-BRI201026-4904726-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904726-1027-4-C/results/911537697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3729","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:15:00","MST","2020-10-27 20:15:00",NA,"3.38",3380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537701","UTAHDWQ_WQX-BRI201026-4904726-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904726-1027-4-C/results/911537701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3730","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:15:00","MST","2020-10-27 20:15:00",NA,"4.72",4720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537702","UTAHDWQ_WQX-BRI201026-4904726-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904726-1027-4-C/results/911537702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3731","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:15:00","MST","2020-10-27 20:15:00",NA,"4.24",4240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537705","UTAHDWQ_WQX-BRI201026-4904726-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904726-1027-4-C/results/911537705/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3732","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:20:00","MST","2020-10-27 20:20:00",NA,"21.2",21200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537725","UTAHDWQ_WQX-BRI201026-4904740-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904740-1027-4-C/results/911537725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3733","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:20:00","MST","2020-10-27 20:20:00",NA,"22.6",22600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537729","UTAHDWQ_WQX-BRI201026-4904740-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904740-1027-4-C/results/911537729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3734","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:20:00","MST","2020-10-27 20:20:00",NA,"21.3",21300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537730","UTAHDWQ_WQX-BRI201026-4904740-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904740-1027-4-C/results/911537730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3735","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:20:00","MST","2020-10-27 20:20:00",NA,"22.8",22800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537733","UTAHDWQ_WQX-BRI201026-4904740-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904740-1027-4-C/results/911537733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3736","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:15:00","MST","2020-10-28 17:15:00",NA,"30.8",30800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537753","UTAHDWQ_WQX-BRI201026-4904770-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904770-1028-4-C/results/911537753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3737","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:15:00","MST","2020-10-28 17:15:00",NA,"33.1",33100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537757","UTAHDWQ_WQX-BRI201026-4904770-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904770-1028-4-C/results/911537757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3738","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:15:00","MST","2020-10-28 17:15:00",NA,"31.2",31200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537758","UTAHDWQ_WQX-BRI201026-4904770-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904770-1028-4-C/results/911537758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3739","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:15:00","MST","2020-10-28 17:15:00",NA,"32.7",32700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537761","UTAHDWQ_WQX-BRI201026-4904770-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904770-1028-4-C/results/911537761/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3740","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:40:00","MST","2020-10-27 18:40:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537781","UTAHDWQ_WQX-BRI201026-4904800-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904800-1027-4-C/results/911537781/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3741","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:40:00","MST","2020-10-27 18:40:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537785","UTAHDWQ_WQX-BRI201026-4904800-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904800-1027-4-C/results/911537785/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3742","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:40:00","MST","2020-10-27 18:40:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537786","UTAHDWQ_WQX-BRI201026-4904800-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904800-1027-4-C/results/911537786/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3743","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:40:00","MST","2020-10-27 18:40:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537789","UTAHDWQ_WQX-BRI201026-4904800-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904800-1027-4-C/results/911537789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3744","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:30:00","MST","2020-10-28 17:30:00",NA,"7.24",7240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537810","UTAHDWQ_WQX-BRI201026-4904810-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904810-1028-4-C/results/911537810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3745","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:30:00","MST","2020-10-28 17:30:00",NA,"7.69",7690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537814","UTAHDWQ_WQX-BRI201026-4904810-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904810-1028-4-C/results/911537814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3746","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:30:00","MST","2020-10-28 17:30:00",NA,"7.26",7260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537815","UTAHDWQ_WQX-BRI201026-4904810-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904810-1028-4-C/results/911537815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3747","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:30:00","MST","2020-10-28 17:30:00",NA,"7.51",7510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537818","UTAHDWQ_WQX-BRI201026-4904810-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904810-1028-4-C/results/911537818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3748","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:50:00","MST","2020-10-27 20:50:00",NA,"2.39",2390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537838","UTAHDWQ_WQX-BRI201026-4904870-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904870-1027-4-C/results/911537838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3749","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:50:00","MST","2020-10-27 20:50:00",NA,"2.65",2650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537842","UTAHDWQ_WQX-BRI201026-4904870-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904870-1027-4-C/results/911537842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3750","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:50:00","MST","2020-10-27 20:50:00",NA,"2.35",2350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537843","UTAHDWQ_WQX-BRI201026-4904870-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904870-1027-4-C/results/911537843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3751","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:50:00","MST","2020-10-27 20:50:00",NA,"2.54",2540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537846","UTAHDWQ_WQX-BRI201026-4904870-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904870-1027-4-C/results/911537846/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3752","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:10:00","MST","2020-10-27 18:10:00",NA,"3.48",3480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537866","UTAHDWQ_WQX-BRI201026-4904900-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904900-1027-4-C/results/911537866/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3753","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:10:00","MST","2020-10-27 18:10:00",NA,"3.91",3910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537870","UTAHDWQ_WQX-BRI201026-4904900-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904900-1027-4-C/results/911537870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3754","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:10:00","MST","2020-10-27 18:10:00",NA,"3.45",3450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537871","UTAHDWQ_WQX-BRI201026-4904900-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904900-1027-4-C/results/911537871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3755","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:10:00","MST","2020-10-27 18:10:00",NA,"3.56",3560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537874","UTAHDWQ_WQX-BRI201026-4904900-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904900-1027-4-C/results/911537874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3756","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:45:00","MST","2020-10-27 19:45:00",NA,"8.99",8990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537894","UTAHDWQ_WQX-BRI201026-4904920-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904920-1027-4-C/results/911537894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3757","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:45:00","MST","2020-10-27 19:45:00",NA,"9.31",9310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537898","UTAHDWQ_WQX-BRI201026-4904920-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904920-1027-4-C/results/911537898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3758","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:45:00","MST","2020-10-27 19:45:00",NA,"8.93",8930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537899","UTAHDWQ_WQX-BRI201026-4904920-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904920-1027-4-C/results/911537899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3759","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:45:00","MST","2020-10-27 19:45:00",NA,"9.12",9120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537902","UTAHDWQ_WQX-BRI201026-4904920-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904920-1027-4-C/results/911537902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3760","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"21.1",21100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537922","UTAHDWQ_WQX-BRI201026-4904940-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904940-1027-4-C/results/911537922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3761","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"22.6",22600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537926","UTAHDWQ_WQX-BRI201026-4904940-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904940-1027-4-C/results/911537926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3762","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"20.9",20900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537927","UTAHDWQ_WQX-BRI201026-4904940-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904940-1027-4-C/results/911537927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3763","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:30:00","MST","2020-10-27 20:30:00",NA,"23.4",23400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537930","UTAHDWQ_WQX-BRI201026-4904940-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904940-1027-4-C/results/911537930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3764","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:45:00","MST","2020-10-28 17:45:00",NA,"7.86",7860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537950","UTAHDWQ_WQX-BRI201026-4904943-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904943-1028-4-C/results/911537950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3765","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:45:00","MST","2020-10-28 17:45:00",NA,"7.93",7930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537954","UTAHDWQ_WQX-BRI201026-4904943-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904943-1028-4-C/results/911537954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3766","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:45:00","MST","2020-10-28 17:45:00",NA,"7.85",7850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537955","UTAHDWQ_WQX-BRI201026-4904943-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904943-1028-4-C/results/911537955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3767","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:45:00","MST","2020-10-28 17:45:00",NA,"7.89",7890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537958","UTAHDWQ_WQX-BRI201026-4904943-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904943-1028-4-C/results/911537958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3768","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:30:00","MST","2020-10-27 19:30:00",NA,"3.39",3390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537978","UTAHDWQ_WQX-BRI201026-4904965-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904965-1027-4-C/results/911537978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3769","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:30:00","MST","2020-10-27 19:30:00",NA,"3.59",3590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537982","UTAHDWQ_WQX-BRI201026-4904965-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904965-1027-4-C/results/911537982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3770","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:30:00","MST","2020-10-27 19:30:00",NA,"3.46",3460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537983","UTAHDWQ_WQX-BRI201026-4904965-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904965-1027-4-C/results/911537983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3771","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:30:00","MST","2020-10-27 19:30:00",NA,"3.45",3450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911537986","UTAHDWQ_WQX-BRI201026-4904965-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904965-1027-4-C/results/911537986/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3772","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:15:00","MST","2020-10-27 19:15:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538006","UTAHDWQ_WQX-BRI201026-4904990-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904990-1027-4-C/results/911538006/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3773","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:15:00","MST","2020-10-27 19:15:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538010","UTAHDWQ_WQX-BRI201026-4904990-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904990-1027-4-C/results/911538010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3774","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:15:00","MST","2020-10-27 19:15:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538011","UTAHDWQ_WQX-BRI201026-4904990-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904990-1027-4-C/results/911538011/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3775","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:15:00","MST","2020-10-27 19:15:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538014","UTAHDWQ_WQX-BRI201026-4904990-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904990-1027-4-C/results/911538014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3776","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:30:00","MST","2020-10-27 18:30:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538034","UTAHDWQ_WQX-BRI201026-4905000-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905000-1027-4-C/results/911538034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3777","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:30:00","MST","2020-10-27 18:30:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538038","UTAHDWQ_WQX-BRI201026-4905000-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905000-1027-4-C/results/911538038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3778","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:30:00","MST","2020-10-27 18:30:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538039","UTAHDWQ_WQX-BRI201026-4905000-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905000-1027-4-C/results/911538039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3779","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:30:00","MST","2020-10-27 18:30:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538042","UTAHDWQ_WQX-BRI201026-4905000-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905000-1027-4-C/results/911538042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3780","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:00:00","MST","2020-10-27 18:00:00",NA,"0.29",290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538062","UTAHDWQ_WQX-BRI201026-4905040-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905040-1027-4-C/results/911538062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3781","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:00:00","MST","2020-10-27 18:00:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538066","UTAHDWQ_WQX-BRI201026-4905040-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905040-1027-4-C/results/911538066/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3782","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:00:00","MST","2020-10-27 18:00:00",NA,"0.331",331,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538067","UTAHDWQ_WQX-BRI201026-4905040-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905040-1027-4-C/results/911538067/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3783","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:00:00","MST","2020-10-27 18:00:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538070","UTAHDWQ_WQX-BRI201026-4905040-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905040-1027-4-C/results/911538070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3784","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:40:00","MST","2020-10-27 17:40:00",NA,"9.29",9290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538090","UTAHDWQ_WQX-BRI201026-4905050-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905050-1027-4-C/results/911538090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3785","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:40:00","MST","2020-10-27 17:40:00",NA,"9.42",9420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538094","UTAHDWQ_WQX-BRI201026-4905050-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905050-1027-4-C/results/911538094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3786","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:40:00","MST","2020-10-27 17:40:00",NA,"9",9000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538095","UTAHDWQ_WQX-BRI201026-4905050-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905050-1027-4-C/results/911538095/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3787","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:40:00","MST","2020-10-27 17:40:00",NA,"9.37",9370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538098","UTAHDWQ_WQX-BRI201026-4905050-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905050-1027-4-C/results/911538098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3788","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:15:00","MST","2020-10-27 17:15:00",NA,"1.84",1840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538136","UTAHDWQ_WQX-BRI201026-4905052-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905052-1027-4-C/results/911538136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3789","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:15:00","MST","2020-10-27 17:15:00",NA,"2.19",2190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538140","UTAHDWQ_WQX-BRI201026-4905052-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905052-1027-4-C/results/911538140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3790","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:15:00","MST","2020-10-27 17:15:00",NA,"1.9",1900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538141","UTAHDWQ_WQX-BRI201026-4905052-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905052-1027-4-C/results/911538141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3791","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:15:00","MST","2020-10-27 17:15:00",NA,"2.11",2110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538144","UTAHDWQ_WQX-BRI201026-4905052-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905052-1027-4-C/results/911538144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3792","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:40:00","MST","2020-10-27 16:40:00",NA,"18",18000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538182","UTAHDWQ_WQX-BRI201026-4905070-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905070-1027-4-C/results/911538182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3793","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:40:00","MST","2020-10-27 16:40:00",NA,"17.9",17900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538186","UTAHDWQ_WQX-BRI201026-4905070-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905070-1027-4-C/results/911538186/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3794","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:40:00","MST","2020-10-27 16:40:00",NA,"17.4",17400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538187","UTAHDWQ_WQX-BRI201026-4905070-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","18","Duplicate","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905070-1027-4-C/results/911538187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3795","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:40:00","MST","2020-10-27 16:40:00",NA,"17.4",17400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538190","UTAHDWQ_WQX-BRI201026-4905070-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","18","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905070-1027-4-C/results/911538190/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3796","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"0.683",683,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538262","UTAHDWQ_WQX-BRI201026-4905078-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905078-1027-4-C/results/911538262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3797","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"0.452",452,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538266","UTAHDWQ_WQX-BRI201026-4905078-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905078-1027-4-C/results/911538266/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3798","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538267","UTAHDWQ_WQX-BRI201026-4905078-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905078-1027-4-C/results/911538267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3799","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538270","UTAHDWQ_WQX-BRI201026-4905078-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905078-1027-4-C/results/911538270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3800","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:30:00","MST","2020-10-27 17:30:00",NA,"11.4",11400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538274","UTAHDWQ_WQX-BRI201026-4905090-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905090-1027-4-C/results/911538274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3801","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:30:00","MST","2020-10-27 17:30:00",NA,"11.2",11200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538278","UTAHDWQ_WQX-BRI201026-4905090-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905090-1027-4-C/results/911538278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3802","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:30:00","MST","2020-10-27 17:30:00",NA,"11.2",11200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538279","UTAHDWQ_WQX-BRI201026-4905090-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905090-1027-4-C/results/911538279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3803","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:30:00","MST","2020-10-27 17:30:00",NA,"11",11000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538282","UTAHDWQ_WQX-BRI201026-4905090-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905090-1027-4-C/results/911538282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3804","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:00:00","MST","2020-10-27 16:00:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538319","UTAHDWQ_WQX-BRI201026-4905200-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905200-1027-4-C/results/911538319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3805","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:00:00","MST","2020-10-27 16:00:00",NA,"0.174",174,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538323","UTAHDWQ_WQX-BRI201026-4905200-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905200-1027-4-C/results/911538323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3806","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:00:00","MST","2020-10-27 16:00:00",NA,"0.301",301,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538324","UTAHDWQ_WQX-BRI201026-4905200-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905200-1027-4-C/results/911538324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3807","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:00:00","MST","2020-10-27 16:00:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538327","UTAHDWQ_WQX-BRI201026-4905200-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905200-1027-4-C/results/911538327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3808","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:10:00","MST","2020-10-27 16:10:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538347","UTAHDWQ_WQX-BRI201026-4905301-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905301-1027-4-C/results/911538347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3809","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:10:00","MST","2020-10-27 16:10:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538351","UTAHDWQ_WQX-BRI201026-4905301-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905301-1027-4-C/results/911538351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3810","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:10:00","MST","2020-10-27 16:10:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538352","UTAHDWQ_WQX-BRI201026-4905301-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905301-1027-4-C/results/911538352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3811","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:10:00","MST","2020-10-27 16:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538355","UTAHDWQ_WQX-BRI201026-4905301-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905301-1027-4-C/results/911538355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3812","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:00:00","MST","2020-10-27 19:00:00",NA,"0.359",359,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538375","UTAHDWQ_WQX-BRI201026-4905400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905400-1027-4-C/results/911538375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3813","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:00:00","MST","2020-10-27 19:00:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538379","UTAHDWQ_WQX-BRI201026-4905400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905400-1027-4-C/results/911538379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3814","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:00:00","MST","2020-10-27 19:00:00",NA,"0.353",353,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538380","UTAHDWQ_WQX-BRI201026-4905400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905400-1027-4-C/results/911538380/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3815","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:00:00","MST","2020-10-27 19:00:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538383","UTAHDWQ_WQX-BRI201026-4905400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905400-1027-4-C/results/911538383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3816","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:40:00","MST","2020-10-27 21:40:00",NA,"0.298",298,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538403","UTAHDWQ_WQX-BRI201026-4905440-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905440-1027-4-C/results/911538403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3817","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:40:00","MST","2020-10-27 21:40:00",NA,"0.331",331,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538407","UTAHDWQ_WQX-BRI201026-4905440-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905440-1027-4-C/results/911538407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3818","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:40:00","MST","2020-10-27 21:40:00",NA,"0.314",314,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538408","UTAHDWQ_WQX-BRI201026-4905440-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905440-1027-4-C/results/911538408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3819","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:40:00","MST","2020-10-27 21:40:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538411","UTAHDWQ_WQX-BRI201026-4905440-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905440-1027-4-C/results/911538411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3820","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538431","UTAHDWQ_WQX-BRI201026-4905441-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905441-1027-4-C/results/911538431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3821","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538435","UTAHDWQ_WQX-BRI201026-4905441-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905441-1027-4-C/results/911538435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3822","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"0.31",310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538436","UTAHDWQ_WQX-BRI201026-4905441-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905441-1027-4-C/results/911538436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3823","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:50:00","MST","2020-10-27 21:50:00",NA,"0.22",220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538439","UTAHDWQ_WQX-BRI201026-4905441-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905441-1027-4-C/results/911538439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3824","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:40:00","MST","2020-10-28 17:40:00",NA,"12.9",12900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538460","UTAHDWQ_WQX-BRI201026-4905520-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905520-1028-4-C/results/911538460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3825","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","10:40:00","MST","2020-10-28 17:40:00",NA,"13.4",13400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538464","UTAHDWQ_WQX-BRI201026-4905520-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905520-1028-4-C/results/911538464/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3826","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:40:00","MST","2020-10-28 17:40:00",NA,"13.2",13200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538465","UTAHDWQ_WQX-BRI201026-4905520-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905520-1028-4-C/results/911538465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3827","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:40:00","MST","2020-10-28 17:40:00",NA,"13.3",13300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538468","UTAHDWQ_WQX-BRI201026-4905520-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905520-1028-4-C/results/911538468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3828","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","09:40:00","MST","2020-10-28 16:40:00",NA,"40",40000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538489","UTAHDWQ_WQX-BRI201026-4905540-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905540-1028-4-C/results/911538489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3829","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","09:40:00","MST","2020-10-28 16:40:00",NA,"43",43000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538493","UTAHDWQ_WQX-BRI201026-4905540-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905540-1028-4-C/results/911538493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3830","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","09:40:00","MST","2020-10-28 16:40:00",NA,"40.8",40800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538494","UTAHDWQ_WQX-BRI201026-4905540-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905540-1028-4-C/results/911538494/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3831","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","09:40:00","MST","2020-10-28 16:40:00",NA,"41.2",41200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538497","UTAHDWQ_WQX-BRI201026-4905540-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905540-1028-4-C/results/911538497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3832","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","12:30:00","MST","2020-10-28 19:30:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538518","UTAHDWQ_WQX-BRI201026-4905580-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905580-1028-4-C/results/911538518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3833","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","12:30:00","MST","2020-10-28 19:30:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538522","UTAHDWQ_WQX-BRI201026-4905580-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905580-1028-4-C/results/911538522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3834","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:30:00","MST","2020-10-28 19:30:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538523","UTAHDWQ_WQX-BRI201026-4905580-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905580-1028-4-C/results/911538523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3835","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:30:00","MST","2020-10-28 19:30:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538526","UTAHDWQ_WQX-BRI201026-4905580-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905580-1028-4-C/results/911538526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3836","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","13:00:00","MST","2020-10-28 20:00:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538546","UTAHDWQ_WQX-BRI201026-4905590-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905590-1028-4-C/results/911538546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3837","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","13:00:00","MST","2020-10-28 20:00:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538550","UTAHDWQ_WQX-BRI201026-4905590-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905590-1028-4-C/results/911538550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3838","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:00:00","MST","2020-10-28 20:00:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538551","UTAHDWQ_WQX-BRI201026-4905590-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905590-1028-4-C/results/911538551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3839","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:00:00","MST","2020-10-28 20:00:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538554","UTAHDWQ_WQX-BRI201026-4905590-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905590-1028-4-C/results/911538554/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3840","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:45:00","MST","2020-10-28 18:45:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538574","UTAHDWQ_WQX-BRI201026-4905625-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Little Bear River at 4700 S xing below RR bridge","River/Stream",NA,"41.6468700000",41.64687,"-111.9224400000",-111.92244,"OK","16010203","UTAHDWQ_WQX-4905625",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6468700000","-111.9224400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905625-1028-4-C/results/911538574/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3841","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:45:00","MST","2020-10-28 18:45:00",NA,"0.48",480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538578","UTAHDWQ_WQX-BRI201026-4905625-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Little Bear River at 4700 S xing below RR bridge","River/Stream",NA,"41.6468700000",41.64687,"-111.9224400000",-111.92244,"OK","16010203","UTAHDWQ_WQX-4905625",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6468700000","-111.9224400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905625-1028-4-C/results/911538578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3842","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:45:00","MST","2020-10-28 18:45:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538579","UTAHDWQ_WQX-BRI201026-4905625-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Little Bear River at 4700 S xing below RR bridge","River/Stream",NA,"41.6468700000",41.64687,"-111.9224400000",-111.92244,"OK","16010203","UTAHDWQ_WQX-4905625",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6468700000","-111.9224400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905625-1028-4-C/results/911538579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3843","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:45:00","MST","2020-10-28 18:45:00",NA,"0.517",517,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538582","UTAHDWQ_WQX-BRI201026-4905625-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Little Bear River at 4700 S xing below RR bridge","River/Stream",NA,"41.6468700000",41.64687,"-111.9224400000",-111.92244,"OK","16010203","UTAHDWQ_WQX-4905625",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6468700000","-111.9224400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905625-1028-4-C/results/911538582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3844","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:15:00","MST","2020-10-28 18:15:00",NA,"0.468",468,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538602","UTAHDWQ_WQX-BRI201026-4905630-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905630-1028-4-C/results/911538602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3845","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:15:00","MST","2020-10-28 18:15:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538606","UTAHDWQ_WQX-BRI201026-4905630-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905630-1028-4-C/results/911538606/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3846","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:15:00","MST","2020-10-28 18:15:00",NA,"0.618",618,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538607","UTAHDWQ_WQX-BRI201026-4905630-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905630-1028-4-C/results/911538607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3847","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:15:00","MST","2020-10-28 18:15:00",NA,"0.564",564,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538610","UTAHDWQ_WQX-BRI201026-4905630-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905630-1028-4-C/results/911538610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3848","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:20:00","MST","2020-10-28 18:20:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538630","UTAHDWQ_WQX-BRI201026-4905631-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905631-1028-4-C/results/911538630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3849","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:20:00","MST","2020-10-28 18:20:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538634","UTAHDWQ_WQX-BRI201026-4905631-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905631-1028-4-C/results/911538634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3850","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:20:00","MST","2020-10-28 18:20:00",NA,"0.417",417,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538635","UTAHDWQ_WQX-BRI201026-4905631-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905631-1028-4-C/results/911538635/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3851","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:20:00","MST","2020-10-28 18:20:00",NA,"0.306",306,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538638","UTAHDWQ_WQX-BRI201026-4905631-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905631-1028-4-C/results/911538638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3852","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538658","UTAHDWQ_WQX-BRI201026-4905650-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905650-1028-4-C/results/911538658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3853","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"0.739",739,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538662","UTAHDWQ_WQX-BRI201026-4905650-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905650-1028-4-C/results/911538662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3854","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"0.608",608,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538663","UTAHDWQ_WQX-BRI201026-4905650-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905650-1028-4-C/results/911538663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3855","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:00:00","MST","2020-10-28 18:00:00",NA,"0.571",571,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538666","UTAHDWQ_WQX-BRI201026-4905650-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905650-1028-4-C/results/911538666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3856","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","15:00:00","MST","2020-10-27 22:00:00",NA,"0.706",706,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538686","UTAHDWQ_WQX-BRI201026-4905670-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905670-1027-4-C/results/911538686/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3857","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","15:00:00","MST","2020-10-27 22:00:00",NA,"0.732",732,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538690","UTAHDWQ_WQX-BRI201026-4905670-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905670-1027-4-C/results/911538690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3858","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","15:00:00","MST","2020-10-27 22:00:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538691","UTAHDWQ_WQX-BRI201026-4905670-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905670-1027-4-C/results/911538691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3859","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","15:00:00","MST","2020-10-27 22:00:00",NA,"0.695",695,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538694","UTAHDWQ_WQX-BRI201026-4905670-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905670-1027-4-C/results/911538694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3860","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","15:20:00","MST","2020-10-27 22:20:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538714","UTAHDWQ_WQX-BRI201026-4905700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905700-1027-4-C/results/911538714/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3861","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","15:20:00","MST","2020-10-27 22:20:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538718","UTAHDWQ_WQX-BRI201026-4905700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905700-1027-4-C/results/911538718/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3862","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","15:20:00","MST","2020-10-27 22:20:00",NA,"0.277",277,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538719","UTAHDWQ_WQX-BRI201026-4905700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905700-1027-4-C/results/911538719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3863","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","15:20:00","MST","2020-10-27 22:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538722","UTAHDWQ_WQX-BRI201026-4905700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905700-1027-4-C/results/911538722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3864","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","16:15:00","MST","2020-10-27 23:15:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538742","UTAHDWQ_WQX-BRI201026-4905740-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905740-1027-4-C/results/911538742/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3865","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","16:15:00","MST","2020-10-27 23:15:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538746","UTAHDWQ_WQX-BRI201026-4905740-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905740-1027-4-C/results/911538746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3866","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","16:15:00","MST","2020-10-27 23:15:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538747","UTAHDWQ_WQX-BRI201026-4905740-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905740-1027-4-C/results/911538747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3867","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","16:15:00","MST","2020-10-27 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538750","UTAHDWQ_WQX-BRI201026-4905740-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905740-1027-4-C/results/911538750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3868","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","15:40:00","MST","2020-10-27 22:40:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538770","UTAHDWQ_WQX-BRI201026-4905750-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905750-1027-4-C/results/911538770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3869","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","15:40:00","MST","2020-10-27 22:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538774","UTAHDWQ_WQX-BRI201026-4905750-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905750-1027-4-C/results/911538774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3870","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","15:40:00","MST","2020-10-27 22:40:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538775","UTAHDWQ_WQX-BRI201026-4905750-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905750-1027-4-C/results/911538775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3871","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","15:40:00","MST","2020-10-27 22:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538778","UTAHDWQ_WQX-BRI201026-4905750-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905750-1027-4-C/results/911538778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3872","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","16:30:00","MST","2020-10-27 23:30:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538798","UTAHDWQ_WQX-BRI201026-4905770-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905770-1027-4-C/results/911538798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3873","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","16:30:00","MST","2020-10-27 23:30:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538802","UTAHDWQ_WQX-BRI201026-4905770-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905770-1027-4-C/results/911538802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3874","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","16:30:00","MST","2020-10-27 23:30:00",NA,"0.284",284,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538803","UTAHDWQ_WQX-BRI201026-4905770-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905770-1027-4-C/results/911538803/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3875","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","16:30:00","MST","2020-10-27 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538806","UTAHDWQ_WQX-BRI201026-4905770-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905770-1027-4-C/results/911538806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3876","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","16:00:00","MST","2020-10-27 23:00:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538826","UTAHDWQ_WQX-BRI201026-4905780-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905780-1027-4-C/results/911538826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3877","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","16:00:00","MST","2020-10-27 23:00:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538830","UTAHDWQ_WQX-BRI201026-4905780-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905780-1027-4-C/results/911538830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3878","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","16:00:00","MST","2020-10-27 23:00:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538831","UTAHDWQ_WQX-BRI201026-4905780-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905780-1027-4-C/results/911538831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3879","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","16:00:00","MST","2020-10-27 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538834","UTAHDWQ_WQX-BRI201026-4905780-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905780-1027-4-C/results/911538834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3880","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:30:00","MST","2020-10-28 18:30:00",NA,"3.82",3820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538854","UTAHDWQ_WQX-BRI201026-4905940-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905940-1028-4-C/results/911538854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3881","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:30:00","MST","2020-10-28 18:30:00",NA,"4.05",4050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538858","UTAHDWQ_WQX-BRI201026-4905940-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905940-1028-4-C/results/911538858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3882","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:30:00","MST","2020-10-28 18:30:00",NA,"3.93",3930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538859","UTAHDWQ_WQX-BRI201026-4905940-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905940-1028-4-C/results/911538859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3883","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:30:00","MST","2020-10-28 18:30:00",NA,"3.97",3970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538862","UTAHDWQ_WQX-BRI201026-4905940-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905940-1028-4-C/results/911538862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3884","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:15:00","MST","2020-10-27 21:15:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538882","UTAHDWQ_WQX-BRI201026-4906400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4906400-1027-4-C/results/911538882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3885","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","14:15:00","MST","2020-10-27 21:15:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538886","UTAHDWQ_WQX-BRI201026-4906400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4906400-1027-4-C/results/911538886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3886","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:15:00","MST","2020-10-27 21:15:00",NA,"0.304",304,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538887","UTAHDWQ_WQX-BRI201026-4906400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4906400-1027-4-C/results/911538887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3887","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","14:15:00","MST","2020-10-27 21:15:00",NA,"0.187",187,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538890","UTAHDWQ_WQX-BRI201026-4906400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4906400-1027-4-C/results/911538890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3888","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","14:30:00","MST","2020-10-26 21:30:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538910","UTAHDWQ_WQX-BRI201026-4908100-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908100-1026-4-C/results/911538910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3889","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","14:30:00","MST","2020-10-26 21:30:00",NA,"0.688",688,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538914","UTAHDWQ_WQX-BRI201026-4908100-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908100-1026-4-C/results/911538914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3890","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","14:30:00","MST","2020-10-26 21:30:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538915","UTAHDWQ_WQX-BRI201026-4908100-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908100-1026-4-C/results/911538915/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3891","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","14:30:00","MST","2020-10-26 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538918","UTAHDWQ_WQX-BRI201026-4908100-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908100-1026-4-C/results/911538918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3892","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:10:00","MST","2020-10-26 19:10:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538938","UTAHDWQ_WQX-BRI201026-4908130-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908130-1026-4-C/results/911538938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3893","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:10:00","MST","2020-10-26 19:10:00",NA,"0.205",205,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538942","UTAHDWQ_WQX-BRI201026-4908130-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908130-1026-4-C/results/911538942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3894","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:10:00","MST","2020-10-26 19:10:00",NA,"0.295",295,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538943","UTAHDWQ_WQX-BRI201026-4908130-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908130-1026-4-C/results/911538943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3895","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:10:00","MST","2020-10-26 19:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538946","UTAHDWQ_WQX-BRI201026-4908130-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908130-1026-4-C/results/911538946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3896","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"0.359",359,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538966","UTAHDWQ_WQX-BRI201026-4908140-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908140-1026-4-C/results/911538966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3897","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"0.326",326,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538970","UTAHDWQ_WQX-BRI201026-4908140-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908140-1026-4-C/results/911538970/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3898","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538971","UTAHDWQ_WQX-BRI201026-4908140-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908140-1026-4-C/results/911538971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3899","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"0.236",236,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538974","UTAHDWQ_WQX-BRI201026-4908140-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908140-1026-4-C/results/911538974/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3900","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","15:15:00","MST","2020-10-26 22:15:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538994","UTAHDWQ_WQX-BRI201026-4908152-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908152-1026-4-C/results/911538994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3901","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","15:15:00","MST","2020-10-26 22:15:00",NA,"0.363",363,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538998","UTAHDWQ_WQX-BRI201026-4908152-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908152-1026-4-C/results/911538998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3902","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","15:15:00","MST","2020-10-26 22:15:00",NA,"0.434",434,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911538999","UTAHDWQ_WQX-BRI201026-4908152-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908152-1026-4-C/results/911538999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3903","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","15:15:00","MST","2020-10-26 22:15:00",NA,"0.305",305,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539002","UTAHDWQ_WQX-BRI201026-4908152-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908152-1026-4-C/results/911539002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3904","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","14:00:00","MST","2020-10-26 21:00:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539022","UTAHDWQ_WQX-BRI201026-4908160-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908160-1026-4-C/results/911539022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3905","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","14:00:00","MST","2020-10-26 21:00:00",NA,"0.195",195,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539026","UTAHDWQ_WQX-BRI201026-4908160-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908160-1026-4-C/results/911539026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3906","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","14:00:00","MST","2020-10-26 21:00:00",NA,"0.281",281,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539027","UTAHDWQ_WQX-BRI201026-4908160-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908160-1026-4-C/results/911539027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3907","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","14:00:00","MST","2020-10-26 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539030","UTAHDWQ_WQX-BRI201026-4908160-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908160-1026-4-C/results/911539030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3908","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:10:00","MST","2020-10-26 20:10:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539050","UTAHDWQ_WQX-BRI201026-4908165-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908165-1026-4-C/results/911539050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3909","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:10:00","MST","2020-10-26 20:10:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539054","UTAHDWQ_WQX-BRI201026-4908165-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908165-1026-4-C/results/911539054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3910","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:10:00","MST","2020-10-26 20:10:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539055","UTAHDWQ_WQX-BRI201026-4908165-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908165-1026-4-C/results/911539055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3911","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:10:00","MST","2020-10-26 20:10:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539058","UTAHDWQ_WQX-BRI201026-4908165-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908165-1026-4-C/results/911539058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3912","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:45:00","MST","2020-10-26 20:45:00",NA,"0.145",145,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539078","UTAHDWQ_WQX-BRI201026-4908168-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908168-1026-4-C/results/911539078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3913","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:45:00","MST","2020-10-26 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539082","UTAHDWQ_WQX-BRI201026-4908168-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908168-1026-4-C/results/911539082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3914","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:45:00","MST","2020-10-26 20:45:00",NA,"0.192",192,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539083","UTAHDWQ_WQX-BRI201026-4908168-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908168-1026-4-C/results/911539083/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3915","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:45:00","MST","2020-10-26 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539086","UTAHDWQ_WQX-BRI201026-4908168-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908168-1026-4-C/results/911539086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3916","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:30:00","MST","2020-10-26 20:30:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539106","UTAHDWQ_WQX-BRI201026-4908170-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908170-1026-4-C/results/911539106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3917","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:30:00","MST","2020-10-26 20:30:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539110","UTAHDWQ_WQX-BRI201026-4908170-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908170-1026-4-C/results/911539110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3918","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:30:00","MST","2020-10-26 20:30:00",NA,"0.256",256,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539111","UTAHDWQ_WQX-BRI201026-4908170-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908170-1026-4-C/results/911539111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3919","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:30:00","MST","2020-10-26 20:30:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539114","UTAHDWQ_WQX-BRI201026-4908170-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908170-1026-4-C/results/911539114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3920","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:45:00","MST","2020-10-26 19:45:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539134","UTAHDWQ_WQX-BRI201026-4908280-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908280-1026-4-C/results/911539134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3921","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:45:00","MST","2020-10-26 19:45:00",NA,"0.314",314,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539138","UTAHDWQ_WQX-BRI201026-4908280-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908280-1026-4-C/results/911539138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3922","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:45:00","MST","2020-10-26 19:45:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539139","UTAHDWQ_WQX-BRI201026-4908280-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908280-1026-4-C/results/911539139/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3923","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:45:00","MST","2020-10-26 19:45:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539142","UTAHDWQ_WQX-BRI201026-4908280-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908280-1026-4-C/results/911539142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3924","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:00:00","MST","2020-10-26 20:00:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539162","UTAHDWQ_WQX-BRI201026-4908281-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908281-1026-4-C/results/911539162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3925","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","13:00:00","MST","2020-10-26 20:00:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539166","UTAHDWQ_WQX-BRI201026-4908281-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908281-1026-4-C/results/911539166/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3926","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:00:00","MST","2020-10-26 20:00:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539167","UTAHDWQ_WQX-BRI201026-4908281-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908281-1026-4-C/results/911539167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3927","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","13:00:00","MST","2020-10-26 20:00:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539170","UTAHDWQ_WQX-BRI201026-4908281-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908281-1026-4-C/results/911539170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3928","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","11:15:00","MST","2020-10-26 18:15:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539190","UTAHDWQ_WQX-BRI201026-4908350-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908350-1026-4-C/results/911539190/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3929","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","11:15:00","MST","2020-10-26 18:15:00",NA,"0.301",301,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539194","UTAHDWQ_WQX-BRI201026-4908350-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908350-1026-4-C/results/911539194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3930","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","11:15:00","MST","2020-10-26 18:15:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539195","UTAHDWQ_WQX-BRI201026-4908350-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908350-1026-4-C/results/911539195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3931","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","11:15:00","MST","2020-10-26 18:15:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539198","UTAHDWQ_WQX-BRI201026-4908350-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908350-1026-4-C/results/911539198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3932","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:00:00","MST","2020-10-26 17:00:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539218","UTAHDWQ_WQX-BRI201026-4908500-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908500-1026-4-C/results/911539218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3933","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:00:00","MST","2020-10-26 17:00:00",NA,"0.877",877,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539222","UTAHDWQ_WQX-BRI201026-4908500-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908500-1026-4-C/results/911539222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3934","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:00:00","MST","2020-10-26 17:00:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539223","UTAHDWQ_WQX-BRI201026-4908500-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908500-1026-4-C/results/911539223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3935","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:00:00","MST","2020-10-26 17:00:00",NA,"0.684",684,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539226","UTAHDWQ_WQX-BRI201026-4908500-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908500-1026-4-C/results/911539226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3936","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","11:40:00","MST","2020-10-26 18:40:00",NA,"0.393",393,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539246","UTAHDWQ_WQX-BRI201026-4908697-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908697-1026-4-C/results/911539246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3937","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","11:40:00","MST","2020-10-26 18:40:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539250","UTAHDWQ_WQX-BRI201026-4908697-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908697-1026-4-C/results/911539250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3938","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","11:40:00","MST","2020-10-26 18:40:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539251","UTAHDWQ_WQX-BRI201026-4908697-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908697-1026-4-C/results/911539251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3939","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","11:40:00","MST","2020-10-26 18:40:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539254","UTAHDWQ_WQX-BRI201026-4908697-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908697-1026-4-C/results/911539254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3940","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","08:30:00","MST","2020-10-27 15:30:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539274","UTAHDWQ_WQX-BRI201026-4908744-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908744-1027-4-C/results/911539274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3941","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","08:30:00","MST","2020-10-27 15:30:00",NA,"0.184",184,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539278","UTAHDWQ_WQX-BRI201026-4908744-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908744-1027-4-C/results/911539278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3942","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","08:30:00","MST","2020-10-27 15:30:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539279","UTAHDWQ_WQX-BRI201026-4908744-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908744-1027-4-C/results/911539279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3943","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","08:30:00","MST","2020-10-27 15:30:00",NA,"0.239",239,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539282","UTAHDWQ_WQX-BRI201026-4908744-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908744-1027-4-C/results/911539282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3944","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","14:20:00","MST","2020-10-26 21:20:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539302","UTAHDWQ_WQX-BRI201026-4908745-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908745-1026-4-C/results/911539302/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3945","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","14:20:00","MST","2020-10-26 21:20:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539305","UTAHDWQ_WQX-BRI201026-4908745-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908745-1026-4-C/results/911539305/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3946","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","14:20:00","MST","2020-10-26 21:20:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539306","UTAHDWQ_WQX-BRI201026-4908745-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908745-1026-4-C/results/911539306/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3947","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","14:20:00","MST","2020-10-26 21:20:00",NA,"0.222",222,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539310","UTAHDWQ_WQX-BRI201026-4908745-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908745-1026-4-C/results/911539310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3948","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:30:00","MST","2020-10-26 17:30:00",NA,"0.244",244,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539325","UTAHDWQ_WQX-BRI201026-5906850-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5906850-1026-4-C/results/911539325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3949","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","10:30:00","MST","2020-10-26 17:30:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539329","UTAHDWQ_WQX-BRI201026-5906850-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5906850-1026-4-C/results/911539329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3950","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:30:00","MST","2020-10-26 17:30:00",NA,"0.289",289,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539330","UTAHDWQ_WQX-BRI201026-5906850-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5906850-1026-4-C/results/911539330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3951","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","10:30:00","MST","2020-10-26 17:30:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539333","UTAHDWQ_WQX-BRI201026-5906850-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5906850-1026-4-C/results/911539333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3952","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","08:40:00","MST","2020-10-26 15:40:00",NA,"7.63",7630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539354","UTAHDWQ_WQX-BRI201026-5984855-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5984855-1026-4-C/results/911539354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3953","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","08:40:00","MST","2020-10-26 15:40:00",NA,"9.95",9950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539357","UTAHDWQ_WQX-BRI201026-5984855-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5984855-1026-4-C/results/911539357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3954","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","08:40:00","MST","2020-10-26 15:40:00",NA,"8.74",8740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539358","UTAHDWQ_WQX-BRI201026-5984855-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5984855-1026-4-C/results/911539358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3955","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","08:40:00","MST","2020-10-26 15:40:00",NA,"9.66",9660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539362","UTAHDWQ_WQX-BRI201026-5984855-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5984855-1026-4-C/results/911539362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3956","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-28","11:30:00","MST","2020-10-28 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539380","UTAHDWQ_WQX-BRI201026-5989995-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5989995-1028-4-C/results/911539380/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3957","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","18:00:00","MST","2020-11-17 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539386","UTAHDWQ_WQX-BRI201116-4900751-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1116-4-C/results/911539386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3958","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","18:00:00","MST","2020-11-17 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539390","UTAHDWQ_WQX-BRI201116-4900751-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1116-4-C/results/911539390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3959","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","18:00:00","MST","2020-11-18 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539429","UTAHDWQ_WQX-BRI201116-4900751-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1117-4-C/results/911539429/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3960","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","18:00:00","MST","2020-11-18 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539433","UTAHDWQ_WQX-BRI201116-4900751-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1117-4-C/results/911539433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3961","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","16:00:00","MST","2020-11-18 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539438","UTAHDWQ_WQX-BRI201116-4900751-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1118-4-C/results/911539438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3962","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","16:00:00","MST","2020-11-18 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539442","UTAHDWQ_WQX-BRI201116-4900751-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1118-4-C/results/911539442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3963","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","16:45:00","MST","2020-11-30 23:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539447","UTAHDWQ_WQX-BRI201116-4900753-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1130-4-C/results/911539447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3964","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","16:45:00","MST","2020-11-30 23:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539451","UTAHDWQ_WQX-BRI201116-4900753-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1130-4-C/results/911539451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3965","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","11:00:00","MST","2020-11-16 18:00:00",NA,"0.755",755,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539456","UTAHDWQ_WQX-BRI201116-4901050-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901050-1116-4-C/results/911539456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3966","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","11:00:00","MST","2020-11-16 18:00:00",NA,"0.731",731,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539460","UTAHDWQ_WQX-BRI201116-4901050-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901050-1116-4-C/results/911539460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3967","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","10:50:00","MST","2020-11-16 17:50:00",NA,"0.824",824,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539465","UTAHDWQ_WQX-BRI201116-4901100-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901100-1116-4-C/results/911539465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3968","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","10:50:00","MST","2020-11-16 17:50:00",NA,"0.851",851,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539469","UTAHDWQ_WQX-BRI201116-4901100-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901100-1116-4-C/results/911539469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3969","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","09:30:00","MST","2020-11-16 16:30:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539474","UTAHDWQ_WQX-BRI201116-4901180-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901180-1116-4-C/results/911539474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3970","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","09:30:00","MST","2020-11-16 16:30:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539478","UTAHDWQ_WQX-BRI201116-4901180-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901180-1116-4-C/results/911539478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3971","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","10:00:00","MST","2020-11-16 17:00:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539518","UTAHDWQ_WQX-BRI201116-4901190-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901190-1116-4-C/results/911539518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3972","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","10:00:00","MST","2020-11-16 17:00:00",NA,"0.132",132,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539522","UTAHDWQ_WQX-BRI201116-4901190-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901190-1116-4-C/results/911539522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3973","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","10:15:00","MST","2020-11-16 17:15:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539562","UTAHDWQ_WQX-BRI201116-4901200-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901200-1116-4-C/results/911539562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3974","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","10:15:00","MST","2020-11-16 17:15:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539566","UTAHDWQ_WQX-BRI201116-4901200-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901200-1116-4-C/results/911539566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3975","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","10:30:00","MST","2020-11-16 17:30:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539605","UTAHDWQ_WQX-BRI201116-4901225-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901225-1116-4-C/results/911539605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3976","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","10:30:00","MST","2020-11-16 17:30:00",NA,"1.72",1720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539609","UTAHDWQ_WQX-BRI201116-4901225-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901225-1116-4-C/results/911539609/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3977","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","13:15:00","MST","2020-11-16 20:15:00",NA,"4.01",4010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539648","UTAHDWQ_WQX-BRI201116-4901431-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901431-1116-4-C/results/911539648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3978","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","13:15:00","MST","2020-11-16 20:15:00",NA,"3.5",3500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539652","UTAHDWQ_WQX-BRI201116-4901431-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901431-1116-4-C/results/911539652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3979","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","13:20:00","MST","2020-11-16 20:20:00",NA,"4.4",4400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539657","UTAHDWQ_WQX-BRI201116-4901432-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901432-1116-4-C/results/911539657/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3980","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","13:20:00","MST","2020-11-16 20:20:00",NA,"4.53",4530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539661","UTAHDWQ_WQX-BRI201116-4901432-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901432-1116-4-C/results/911539661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3981","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","13:00:00","MST","2020-11-16 20:00:00",NA,"0.846",846,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539666","UTAHDWQ_WQX-BRI201116-4901600-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901600-1116-4-C/results/911539666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3982","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","13:00:00","MST","2020-11-16 20:00:00",NA,"0.907",907,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539670","UTAHDWQ_WQX-BRI201116-4901600-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901600-1116-4-C/results/911539670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3983","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","13:40:00","MST","2020-11-16 20:40:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539675","UTAHDWQ_WQX-BRI201116-4901700-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901700-1116-4-C/results/911539675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3984","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","13:40:00","MST","2020-11-16 20:40:00",NA,"1.73",1730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539679","UTAHDWQ_WQX-BRI201116-4901700-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901700-1116-4-C/results/911539679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3985","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","14:40:00","MST","2020-11-16 21:40:00",NA,"0.87",870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539684","UTAHDWQ_WQX-BRI201116-4901730-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901730-1116-4-C/results/911539684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3986","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","14:40:00","MST","2020-11-16 21:40:00",NA,"0.969",969,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539688","UTAHDWQ_WQX-BRI201116-4901730-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901730-1116-4-C/results/911539688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3987","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:00:00","MST","2020-11-17 17:00:00",NA,"0.93",930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539693","UTAHDWQ_WQX-BRI201116-4901790-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901790-1117-4-C/results/911539693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3988","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:00:00","MST","2020-11-17 17:00:00",NA,"0.809",809,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539697","UTAHDWQ_WQX-BRI201116-4901790-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901790-1117-4-C/results/911539697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3989","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:30:00","MST","2020-11-17 17:30:00",NA,"0.959",959,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539702","UTAHDWQ_WQX-BRI201116-4901950-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901950-1117-4-C/results/911539702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3990","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:30:00","MST","2020-11-17 17:30:00",NA,"0.92",920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539706","UTAHDWQ_WQX-BRI201116-4901950-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901950-1117-4-C/results/911539706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3991","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:10:00","MST","2020-11-17 17:10:00",NA,"3.01",3010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539711","UTAHDWQ_WQX-BRI201116-4901975-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901975-1117-4-C/results/911539711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3992","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:10:00","MST","2020-11-17 17:10:00",NA,"2.84",2840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539715","UTAHDWQ_WQX-BRI201116-4901975-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901975-1117-4-C/results/911539715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3993","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:20:00","MST","2020-11-17 17:20:00",NA,"0.929",929,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539720","UTAHDWQ_WQX-BRI201116-4901980-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901980-1117-4-C/results/911539720/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3994","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:20:00","MST","2020-11-17 17:20:00",NA,"0.908",908,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539724","UTAHDWQ_WQX-BRI201116-4901980-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901980-1117-4-C/results/911539724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3995","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","11:20:00","MST","2020-11-16 18:20:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539729","UTAHDWQ_WQX-BRI201116-4902000-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902000-1116-4-C/results/911539729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3996","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","11:20:00","MST","2020-11-16 18:20:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539733","UTAHDWQ_WQX-BRI201116-4902000-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902000-1116-4-C/results/911539733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3997","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","11:45:00","MST","2020-11-16 18:45:00",NA,"1.81",1810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539739","UTAHDWQ_WQX-BRI201116-4902040-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902040-1116-4-C/results/911539739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3998","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","11:45:00","MST","2020-11-16 18:45:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539743","UTAHDWQ_WQX-BRI201116-4902040-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902040-1116-4-C/results/911539743/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3999","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","12:30:00","MST","2020-11-16 19:30:00",NA,"1.62",1620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539748","UTAHDWQ_WQX-BRI201116-4902050-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902050-1116-4-C/results/911539748/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4000","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","12:30:00","MST","2020-11-16 19:30:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539752","UTAHDWQ_WQX-BRI201116-4902050-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902050-1116-4-C/results/911539752/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4001","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","14:00:00","MST","2020-11-16 21:00:00",NA,"1.92",1920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539757","UTAHDWQ_WQX-BRI201116-4902700-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902700-1116-4-C/results/911539757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4002","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","14:00:00","MST","2020-11-16 21:00:00",NA,"1.96",1960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539761","UTAHDWQ_WQX-BRI201116-4902700-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902700-1116-4-C/results/911539761/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4003","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","14:15:00","MST","2020-11-16 21:15:00",NA,"18.4",18400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539767","UTAHDWQ_WQX-BRI201116-4902710-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902710-1116-4-C/results/911539767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4004","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","14:15:00","MST","2020-11-16 21:15:00",NA,"16.9",16900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539771","UTAHDWQ_WQX-BRI201116-4902710-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902710-1116-4-C/results/911539771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4005","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","14:20:00","MST","2020-11-16 21:20:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539777","UTAHDWQ_WQX-BRI201116-4902720-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902720-1116-4-C/results/911539777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4006","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","14:20:00","MST","2020-11-16 21:20:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539781","UTAHDWQ_WQX-BRI201116-4902720-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902720-1116-4-C/results/911539781/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4007","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","15:15:00","MST","2020-11-16 22:15:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539786","UTAHDWQ_WQX-BRI201116-4902900-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902900-1116-4-C/results/911539786/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4008","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","15:15:00","MST","2020-11-16 22:15:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539790","UTAHDWQ_WQX-BRI201116-4902900-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902900-1116-4-C/results/911539790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4009","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","16:00:00","MST","2020-11-16 23:00:00",NA,"0.422",422,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539795","UTAHDWQ_WQX-BRI201116-4902940-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902940-1116-4-C/results/911539795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4010","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","16:00:00","MST","2020-11-16 23:00:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539799","UTAHDWQ_WQX-BRI201116-4902940-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902940-1116-4-C/results/911539799/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4011","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","16:10:00","MST","2020-11-16 23:10:00",NA,"0.399",399,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539804","UTAHDWQ_WQX-BRI201116-4902941-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902941-1116-4-C/results/911539804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4012","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","16:10:00","MST","2020-11-16 23:10:00",NA,"0.196",196,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539808","UTAHDWQ_WQX-BRI201116-4902941-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902941-1116-4-C/results/911539808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4013","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","14:30:00","MST","2020-11-17 21:30:00",NA,"2.1",2100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539813","UTAHDWQ_WQX-BRI201116-4903030-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903030-1117-4-C/results/911539813/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4014","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","14:30:00","MST","2020-11-17 21:30:00",NA,"2.37",2370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539817","UTAHDWQ_WQX-BRI201116-4903030-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903030-1117-4-C/results/911539817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4015","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","14:50:00","MST","2020-11-17 21:50:00",NA,"5.62",5620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539822","UTAHDWQ_WQX-BRI201116-4903060-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903060-1117-4-C/results/911539822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4016","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","14:50:00","MST","2020-11-17 21:50:00",NA,"5.19",5190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539826","UTAHDWQ_WQX-BRI201116-4903060-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903060-1117-4-C/results/911539826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4017","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","14:40:00","MST","2020-11-17 21:40:00",NA,"5.16",5160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539831","UTAHDWQ_WQX-BRI201116-4903080-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903080-1117-4-C/results/911539831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4018","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","14:40:00","MST","2020-11-17 21:40:00",NA,"5.29",5290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539835","UTAHDWQ_WQX-BRI201116-4903080-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903080-1117-4-C/results/911539835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4019","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","15:00:00","MST","2020-11-17 22:00:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539840","UTAHDWQ_WQX-BRI201116-4903180-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903180-1117-4-C/results/911539840/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4020","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","15:00:00","MST","2020-11-17 22:00:00",NA,"1.47",1470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539844","UTAHDWQ_WQX-BRI201116-4903180-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903180-1117-4-C/results/911539844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4021","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","15:10:00","MST","2020-11-17 22:10:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539849","UTAHDWQ_WQX-BRI201116-4903190-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903190-1117-4-C/results/911539849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4022","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","15:10:00","MST","2020-11-17 22:10:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539853","UTAHDWQ_WQX-BRI201116-4903190-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903190-1117-4-C/results/911539853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4023","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","15:20:00","MST","2020-11-17 22:20:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539858","UTAHDWQ_WQX-BRI201116-4903191-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903191-1117-4-C/results/911539858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4024","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","15:20:00","MST","2020-11-17 22:20:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539862","UTAHDWQ_WQX-BRI201116-4903191-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903191-1117-4-C/results/911539862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4025","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","15:30:00","MST","2020-11-17 22:30:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539867","UTAHDWQ_WQX-BRI201116-4903200-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903200-1117-4-C/results/911539867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4026","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","15:30:00","MST","2020-11-17 22:30:00",NA,"1.59",1590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539871","UTAHDWQ_WQX-BRI201116-4903200-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903200-1117-4-C/results/911539871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4027","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:00:00","MST","2020-11-17 18:00:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539876","UTAHDWQ_WQX-BRI201116-4903260-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903260-1117-4-C/results/911539876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4028","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:00:00","MST","2020-11-17 18:00:00",NA,"0.966",966,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539880","UTAHDWQ_WQX-BRI201116-4903260-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903260-1117-4-C/results/911539880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4029","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","13:20:00","MST","2020-11-17 20:20:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539885","UTAHDWQ_WQX-BRI201116-4903400-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903400-1117-4-C/results/911539885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4030","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","13:20:00","MST","2020-11-17 20:20:00",NA,"0.989",989,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539889","UTAHDWQ_WQX-BRI201116-4903400-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903400-1117-4-C/results/911539889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4031","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","13:00:00","MST","2020-11-17 20:00:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539894","UTAHDWQ_WQX-BRI201116-4903500-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903500-1117-4-C/results/911539894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4032","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","13:00:00","MST","2020-11-17 20:00:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539898","UTAHDWQ_WQX-BRI201116-4903500-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903500-1117-4-C/results/911539898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4033","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","12:10:00","MST","2020-11-17 19:10:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539903","UTAHDWQ_WQX-BRI201116-4903501-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903501-1117-4-C/results/911539903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4034","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","12:10:00","MST","2020-11-17 19:10:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539907","UTAHDWQ_WQX-BRI201116-4903501-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903501-1117-4-C/results/911539907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4035","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","12:40:00","MST","2020-11-17 19:40:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539912","UTAHDWQ_WQX-BRI201116-4903504-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903504-1117-4-C/results/911539912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4036","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","12:40:00","MST","2020-11-17 19:40:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539916","UTAHDWQ_WQX-BRI201116-4903504-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903504-1117-4-C/results/911539916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4037","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","12:30:00","MST","2020-11-17 19:30:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539921","UTAHDWQ_WQX-BRI201116-4903507-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903507-1117-4-C/results/911539921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4038","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","12:30:00","MST","2020-11-17 19:30:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539925","UTAHDWQ_WQX-BRI201116-4903507-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903507-1117-4-C/results/911539925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4039","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","12:10:00","MST","2020-11-17 19:10:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539930","UTAHDWQ_WQX-BRI201116-4903510-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903510-1117-4-C/results/911539930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4040","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","12:10:00","MST","2020-11-17 19:10:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539934","UTAHDWQ_WQX-BRI201116-4903510-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903510-1117-4-C/results/911539934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4041","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","09:30:00","MST","2020-11-18 16:30:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539939","UTAHDWQ_WQX-BRI201116-4903699-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903699-1118-4-C/results/911539939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4042","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","09:30:00","MST","2020-11-18 16:30:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539943","UTAHDWQ_WQX-BRI201116-4903699-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903699-1118-4-C/results/911539943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4043","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","10:20:00","MST","2020-11-18 17:20:00",NA,"16.1",16100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539949","UTAHDWQ_WQX-BRI201116-4903723-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903723-1118-4-C/results/911539949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4044","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","10:20:00","MST","2020-11-18 17:20:00",NA,"16.3",16300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539953","UTAHDWQ_WQX-BRI201116-4903723-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903723-1118-4-C/results/911539953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4045","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","11:30:00","MST","2020-11-18 18:30:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539959","UTAHDWQ_WQX-BRI201116-4903770-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903770-1118-4-C/results/911539959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4046","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","11:30:00","MST","2020-11-18 18:30:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539963","UTAHDWQ_WQX-BRI201116-4903770-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903770-1118-4-C/results/911539963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4047","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","09:00:00","MST","2020-11-18 16:00:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539977","UTAHDWQ_WQX-BRI201116-4903820-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903820-1118-4-C/results/911539977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4048","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","09:00:00","MST","2020-11-18 16:00:00",NA,"0.878",878,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539981","UTAHDWQ_WQX-BRI201116-4903820-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903820-1118-4-C/results/911539981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4049","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","10:30:00","MST","2020-11-18 17:30:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539987","UTAHDWQ_WQX-BRI201116-4904240-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904240-1118-4-C/results/911539987/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4050","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","10:30:00","MST","2020-11-18 17:30:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539991","UTAHDWQ_WQX-BRI201116-4904240-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904240-1118-4-C/results/911539991/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4051","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","10:40:00","MST","2020-11-18 17:40:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911539996","UTAHDWQ_WQX-BRI201116-4904241-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904241-1118-4-C/results/911539996/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4052","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","10:40:00","MST","2020-11-18 17:40:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540000","UTAHDWQ_WQX-BRI201116-4904241-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904241-1118-4-C/results/911540000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4053","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","10:00:00","MST","2020-11-18 17:00:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540005","UTAHDWQ_WQX-BRI201116-4904250-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904250-1118-4-C/results/911540005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4054","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","10:00:00","MST","2020-11-18 17:00:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540009","UTAHDWQ_WQX-BRI201116-4904250-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904250-1118-4-C/results/911540009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4055","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","11:00:00","MST","2020-11-18 18:00:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540014","UTAHDWQ_WQX-BRI201116-4904300-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ U91 XING","River/Stream",NA,"41.9568700000",41.95687,"-111.8130100000",-111.81301,"OK","16010202","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9568700000","-111.8130100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904300-1118-4-C/results/911540014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4056","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","11:00:00","MST","2020-11-18 18:00:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540018","UTAHDWQ_WQX-BRI201116-4904300-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ U91 XING","River/Stream",NA,"41.9568700000",41.95687,"-111.8130100000",-111.81301,"OK","16010202","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9568700000","-111.8130100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904300-1118-4-C/results/911540018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4057","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","11:50:00","MST","2020-11-18 18:50:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540023","UTAHDWQ_WQX-BRI201116-4904310-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904310-1118-4-C/results/911540023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4058","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","11:50:00","MST","2020-11-18 18:50:00",NA,"0.99",990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540027","UTAHDWQ_WQX-BRI201116-4904310-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904310-1118-4-C/results/911540027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4059","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","11:15:00","MST","2020-11-18 18:15:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540032","UTAHDWQ_WQX-BRI201116-4904340-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904340-1118-4-C/results/911540032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4060","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","11:15:00","MST","2020-11-18 18:15:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540036","UTAHDWQ_WQX-BRI201116-4904340-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904340-1118-4-C/results/911540036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4061","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:20:00","MST","2020-11-17 18:20:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540041","UTAHDWQ_WQX-BRI201116-4904490-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904490-1117-4-C/results/911540041/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4062","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:20:00","MST","2020-11-17 18:20:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540045","UTAHDWQ_WQX-BRI201116-4904490-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904490-1117-4-C/results/911540045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4063","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:30:00","MST","2020-11-17 18:30:00",NA,"5.04",5040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540050","UTAHDWQ_WQX-BRI201116-4904510-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904510-1117-4-C/results/911540050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4064","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:30:00","MST","2020-11-17 18:30:00",NA,"4.24",4240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540054","UTAHDWQ_WQX-BRI201116-4904510-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904510-1117-4-C/results/911540054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4065","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","14:10:00","MST","2020-11-17 21:10:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540059","UTAHDWQ_WQX-BRI201116-4904720-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904720-1117-4-C/results/911540059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4066","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","14:10:00","MST","2020-11-17 21:10:00",NA,"0.866",866,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540063","UTAHDWQ_WQX-BRI201116-4904720-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904720-1117-4-C/results/911540063/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4067","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","13:30:00","MST","2020-11-17 20:30:00",NA,"3.42",3420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540068","UTAHDWQ_WQX-BRI201116-4904724-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904724-1117-4-C/results/911540068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4068","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","13:30:00","MST","2020-11-17 20:30:00",NA,"2.35",2350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540072","UTAHDWQ_WQX-BRI201116-4904724-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904724-1117-4-C/results/911540072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4069","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","13:45:00","MST","2020-11-17 20:45:00",NA,"7.16",7160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540077","UTAHDWQ_WQX-BRI201116-4904726-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904726-1117-4-C/results/911540077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4070","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","13:45:00","MST","2020-11-17 20:45:00",NA,"6.47",6470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540081","UTAHDWQ_WQX-BRI201116-4904726-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904726-1117-4-C/results/911540081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4071","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","12:10:00","MST","2020-11-30 19:10:00",NA,"0.5",500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540104","UTAHDWQ_WQX-BRI201116-4908130-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908130-1130-4-C/results/911540104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4072","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","12:10:00","MST","2020-11-30 19:10:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540108","UTAHDWQ_WQX-BRI201116-4908130-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908130-1130-4-C/results/911540108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4073","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","12:00:00","MST","2020-11-30 19:00:00",NA,"0.528",528,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540113","UTAHDWQ_WQX-BRI201116-4908140-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908140-1130-4-C/results/911540113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4074","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","12:00:00","MST","2020-11-30 19:00:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540117","UTAHDWQ_WQX-BRI201116-4908140-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908140-1130-4-C/results/911540117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4075","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","14:05:00","MST","2020-11-30 21:05:00",NA,"0.387",387,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540122","UTAHDWQ_WQX-BRI201116-4908160-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908160-1130-4-C/results/911540122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4076","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","14:05:00","MST","2020-11-30 21:05:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540126","UTAHDWQ_WQX-BRI201116-4908160-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908160-1130-4-C/results/911540126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4077","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","13:25:00","MST","2020-11-30 20:25:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540131","UTAHDWQ_WQX-BRI201116-4908165-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908165-1130-4-C/results/911540131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4078","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","13:25:00","MST","2020-11-30 20:25:00",NA,"0.306",306,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540135","UTAHDWQ_WQX-BRI201116-4908165-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908165-1130-4-C/results/911540135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4079","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","13:55:00","MST","2020-11-30 20:55:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540140","UTAHDWQ_WQX-BRI201116-4908168-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908168-1130-4-C/results/911540140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4080","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","13:55:00","MST","2020-11-30 20:55:00",NA,"0.29",290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540144","UTAHDWQ_WQX-BRI201116-4908168-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908168-1130-4-C/results/911540144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4081","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","13:40:00","MST","2020-11-30 20:40:00",NA,"0.42",420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540149","UTAHDWQ_WQX-BRI201116-4908170-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908170-1130-4-C/results/911540149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4082","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","13:40:00","MST","2020-11-30 20:40:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540153","UTAHDWQ_WQX-BRI201116-4908170-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908170-1130-4-C/results/911540153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4083","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","12:55:00","MST","2020-11-30 19:55:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540158","UTAHDWQ_WQX-BRI201116-4908280-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908280-1130-4-C/results/911540158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4084","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","12:55:00","MST","2020-11-30 19:55:00",NA,"0.418",418,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540162","UTAHDWQ_WQX-BRI201116-4908280-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908280-1130-4-C/results/911540162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4085","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","13:00:00","MST","2020-11-30 20:00:00",NA,"0.403",403,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540167","UTAHDWQ_WQX-BRI201116-4908281-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908281-1130-4-C/results/911540167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4086","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","13:00:00","MST","2020-11-30 20:00:00",NA,"0.46",460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540171","UTAHDWQ_WQX-BRI201116-4908281-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908281-1130-4-C/results/911540171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4087","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","11:10:00","MST","2020-11-30 18:10:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540176","UTAHDWQ_WQX-BRI201116-4908350-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908350-1130-4-C/results/911540176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4088","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","11:10:00","MST","2020-11-30 18:10:00",NA,"0.557",557,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540180","UTAHDWQ_WQX-BRI201116-4908350-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908350-1130-4-C/results/911540180/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4089","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","11:30:00","MST","2020-11-30 18:30:00",NA,"0.407",407,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540185","UTAHDWQ_WQX-BRI201116-4908697-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908697-1130-4-C/results/911540185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4090","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","11:30:00","MST","2020-11-30 18:30:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540189","UTAHDWQ_WQX-BRI201116-4908697-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908697-1130-4-C/results/911540189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4091","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","15:40:00","MST","2020-11-16 22:40:00",NA,"0.374",374,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540194","UTAHDWQ_WQX-BRI201116-4908745-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908745-1116-4-C/results/911540194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4092","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","15:40:00","MST","2020-11-16 22:40:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540198","UTAHDWQ_WQX-BRI201116-4908745-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908745-1116-4-C/results/911540198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4093","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","10:30:00","MST","2020-11-30 17:30:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540203","UTAHDWQ_WQX-BRI201116-5906850-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-5906850-1130-4-C/results/911540203/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4094","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","10:30:00","MST","2020-11-30 17:30:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540207","UTAHDWQ_WQX-BRI201116-5906850-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-5906850-1130-4-C/results/911540207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4095","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","08:00:00","MST","2020-11-17 15:00:00",NA,"10.3",10300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540213","UTAHDWQ_WQX-BRI201116-5984855-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-5984855-1117-4-C/results/911540213/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4096","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","08:00:00","MST","2020-11-17 15:00:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540217","UTAHDWQ_WQX-BRI201116-5984855-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-5984855-1117-4-C/results/911540217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4097","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","13:05:00","MST","2020-12-02 20:05:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540222","UTAHDWQ_WQX-BRI201116-4900470-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900470-1202-4-C/results/911540222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4098","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","13:05:00","MST","2020-12-02 20:05:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540226","UTAHDWQ_WQX-BRI201116-4900470-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900470-1202-4-C/results/911540226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4099","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","13:20:00","MST","2020-12-02 20:20:00",NA,"0.617",617,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540231","UTAHDWQ_WQX-BRI201116-4900510-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900510-1202-4-C/results/911540231/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4100","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","13:20:00","MST","2020-12-02 20:20:00",NA,"0.656",656,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540235","UTAHDWQ_WQX-BRI201116-4900510-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900510-1202-4-C/results/911540235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4101","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","13:25:00","MST","2020-12-02 20:25:00",NA,"0.769",769,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540240","UTAHDWQ_WQX-BRI201116-4900511-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900511-1202-4-C/results/911540240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4102","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","13:25:00","MST","2020-12-02 20:25:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540244","UTAHDWQ_WQX-BRI201116-4900511-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900511-1202-4-C/results/911540244/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4103","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","18:00:00","MST","2020-12-02 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540249","UTAHDWQ_WQX-BRI201116-4900753-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1201-4-C/results/911540249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4104","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","18:00:00","MST","2020-12-02 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540253","UTAHDWQ_WQX-BRI201116-4900753-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1201-4-C/results/911540253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4105","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","14:45:00","MST","2020-12-02 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540292","UTAHDWQ_WQX-BRI201116-4900753-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1202-4-C/results/911540292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4106","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","14:45:00","MST","2020-12-02 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540296","UTAHDWQ_WQX-BRI201116-4900753-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1202-4-C/results/911540296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4107","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","13:05:00","MST","2020-12-01 20:05:00",NA,"7.6",7600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540301","UTAHDWQ_WQX-BRI201116-4903950-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903950-1201-4-C/results/911540301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4108","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","13:05:00","MST","2020-12-01 20:05:00",NA,"7.87",7870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540305","UTAHDWQ_WQX-BRI201116-4903950-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903950-1201-4-C/results/911540305/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4109","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","09:05:00","MST","2020-12-02 16:05:00",NA,"2.68",2680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540310","UTAHDWQ_WQX-BRI201116-4904110-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904110-1202-4-C/results/911540310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4110","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","09:05:00","MST","2020-12-02 16:05:00",NA,"2.74",2740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540314","UTAHDWQ_WQX-BRI201116-4904110-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904110-1202-4-C/results/911540314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4111","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","13:20:00","MST","2020-12-01 20:20:00",NA,"14.5",14500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540319","UTAHDWQ_WQX-BRI201116-4904740-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904740-1201-4-C/results/911540319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4112","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","13:20:00","MST","2020-12-01 20:20:00",NA,"14.8",14800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540323","UTAHDWQ_WQX-BRI201116-4904740-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904740-1201-4-C/results/911540323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4113","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","09:45:00","MST","2020-12-02 16:45:00",NA,"21.8",21800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540328","UTAHDWQ_WQX-BRI201116-4904770-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904770-1202-4-C/results/911540328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4114","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","09:45:00","MST","2020-12-02 16:45:00",NA,"22.5",22500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540332","UTAHDWQ_WQX-BRI201116-4904770-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904770-1202-4-C/results/911540332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4115","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","11:25:00","MST","2020-12-01 18:25:00",NA,"0.868",868,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540337","UTAHDWQ_WQX-BRI201116-4904800-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904800-1201-4-C/results/911540337/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4116","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","11:25:00","MST","2020-12-01 18:25:00",NA,"0.875",875,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540341","UTAHDWQ_WQX-BRI201116-4904800-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904800-1201-4-C/results/911540341/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4117","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","09:55:00","MST","2020-12-02 16:55:00",NA,"8.44",8440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540347","UTAHDWQ_WQX-BRI201116-4904810-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904810-1202-4-C/results/911540347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4118","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","09:55:00","MST","2020-12-02 16:55:00",NA,"8.61",8610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540351","UTAHDWQ_WQX-BRI201116-4904810-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904810-1202-4-C/results/911540351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4119","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","13:45:00","MST","2020-12-01 20:45:00",NA,"2.47",2470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540356","UTAHDWQ_WQX-BRI201116-4904870-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904870-1201-4-C/results/911540356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4120","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","13:45:00","MST","2020-12-01 20:45:00",NA,"2.5",2500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540360","UTAHDWQ_WQX-BRI201116-4904870-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904870-1201-4-C/results/911540360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4121","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","11:05:00","MST","2020-12-01 18:05:00",NA,"3.07",3070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540365","UTAHDWQ_WQX-BRI201116-4904900-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904900-1201-4-C/results/911540365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4122","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","11:05:00","MST","2020-12-01 18:05:00",NA,"3.18",3180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540369","UTAHDWQ_WQX-BRI201116-4904900-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904900-1201-4-C/results/911540369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4123","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","12:55:00","MST","2020-12-01 19:55:00",NA,"5.24",5240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540374","UTAHDWQ_WQX-BRI201116-4904920-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904920-1201-4-C/results/911540374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4124","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","12:55:00","MST","2020-12-01 19:55:00",NA,"5.64",5640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540378","UTAHDWQ_WQX-BRI201116-4904920-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904920-1201-4-C/results/911540378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4125","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","13:35:00","MST","2020-12-01 20:35:00",NA,"14.4",14400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540383","UTAHDWQ_WQX-BRI201116-4904940-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904940-1201-4-C/results/911540383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4126","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","13:35:00","MST","2020-12-01 20:35:00",NA,"14.6",14600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540387","UTAHDWQ_WQX-BRI201116-4904940-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904940-1201-4-C/results/911540387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4127","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","10:20:00","MST","2020-12-02 17:20:00",NA,"5.86",5860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540392","UTAHDWQ_WQX-BRI201116-4904943-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904943-1202-4-C/results/911540392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4128","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","10:20:00","MST","2020-12-02 17:20:00",NA,"6.2",6200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540396","UTAHDWQ_WQX-BRI201116-4904943-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904943-1202-4-C/results/911540396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4129","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","12:45:00","MST","2020-12-01 19:45:00",NA,"2.92",2920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540401","UTAHDWQ_WQX-BRI201116-4904965-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904965-1201-4-C/results/911540401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4130","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","12:45:00","MST","2020-12-01 19:45:00",NA,"2.99",2990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540405","UTAHDWQ_WQX-BRI201116-4904965-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904965-1201-4-C/results/911540405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4131","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","12:30:00","MST","2020-12-01 19:30:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540410","UTAHDWQ_WQX-BRI201116-4904990-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904990-1201-4-C/results/911540410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4132","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","12:30:00","MST","2020-12-01 19:30:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540414","UTAHDWQ_WQX-BRI201116-4904990-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904990-1201-4-C/results/911540414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4133","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","11:20:00","MST","2020-12-01 18:20:00",NA,"0.849",849,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540419","UTAHDWQ_WQX-BRI201116-4905000-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905000-1201-4-C/results/911540419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4134","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","11:20:00","MST","2020-12-01 18:20:00",NA,"0.914",914,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540423","UTAHDWQ_WQX-BRI201116-4905000-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905000-1201-4-C/results/911540423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4135","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","10:50:00","MST","2020-12-01 17:50:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540428","UTAHDWQ_WQX-BRI201116-4905040-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905040-1201-4-C/results/911540428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4136","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","10:50:00","MST","2020-12-01 17:50:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540432","UTAHDWQ_WQX-BRI201116-4905040-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905040-1201-4-C/results/911540432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4137","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","10:30:00","MST","2020-12-01 17:30:00",NA,"5.99",5990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540437","UTAHDWQ_WQX-BRI201116-4905050-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905050-1201-4-C/results/911540437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4138","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","10:30:00","MST","2020-12-01 17:30:00",NA,"5.97",5970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540441","UTAHDWQ_WQX-BRI201116-4905050-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905050-1201-4-C/results/911540441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4139","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","10:10:00","MST","2020-12-01 17:10:00",NA,"1.94",1940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540481","UTAHDWQ_WQX-BRI201116-4905052-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905052-1201-4-C/results/911540481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4140","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","10:10:00","MST","2020-12-01 17:10:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540485","UTAHDWQ_WQX-BRI201116-4905052-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905052-1201-4-C/results/911540485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4141","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","09:40:00","MST","2020-12-01 16:40:00",NA,"14.7",14700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540525","UTAHDWQ_WQX-BRI201116-4905070-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905070-1201-4-C/results/911540525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4142","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","09:40:00","MST","2020-12-01 16:40:00",NA,"13.6",13600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540529","UTAHDWQ_WQX-BRI201116-4905070-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905070-1201-4-C/results/911540529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4143","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","09:55:00","MST","2020-12-01 16:55:00",NA,"0.533",533,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540569","UTAHDWQ_WQX-BRI201116-4905078-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905078-1201-4-C/results/911540569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4144","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","09:55:00","MST","2020-12-01 16:55:00",NA,"0.577",577,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540573","UTAHDWQ_WQX-BRI201116-4905078-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905078-1201-4-C/results/911540573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4145","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","10:20:00","MST","2020-12-01 17:20:00",NA,"8.68",8680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540613","UTAHDWQ_WQX-BRI201116-4905090-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905090-1201-4-C/results/911540613/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4146","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","10:20:00","MST","2020-12-01 17:20:00",NA,"8.42",8420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540617","UTAHDWQ_WQX-BRI201116-4905090-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905090-1201-4-C/results/911540617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4147","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","09:20:00","MST","2020-12-01 16:20:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540656","UTAHDWQ_WQX-BRI201116-4905200-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905200-1201-4-C/results/911540656/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4148","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","09:20:00","MST","2020-12-01 16:20:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540660","UTAHDWQ_WQX-BRI201116-4905200-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905200-1201-4-C/results/911540660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4149","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","09:25:00","MST","2020-12-01 16:25:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540665","UTAHDWQ_WQX-BRI201116-4905301-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905301-1201-4-C/results/911540665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4150","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","09:25:00","MST","2020-12-01 16:25:00",NA,"0.626",626,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540669","UTAHDWQ_WQX-BRI201116-4905301-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905301-1201-4-C/results/911540669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4151","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","12:15:00","MST","2020-12-01 19:15:00",NA,"0.388",388,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540674","UTAHDWQ_WQX-BRI201116-4905400-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905400-1201-4-C/results/911540674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4152","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","12:15:00","MST","2020-12-01 19:15:00",NA,"0.418",418,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540678","UTAHDWQ_WQX-BRI201116-4905400-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905400-1201-4-C/results/911540678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4153","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","14:30:00","MST","2020-12-01 21:30:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540683","UTAHDWQ_WQX-BRI201116-4905440-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905440-1201-4-C/results/911540683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4154","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","14:30:00","MST","2020-12-01 21:30:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540687","UTAHDWQ_WQX-BRI201116-4905440-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905440-1201-4-C/results/911540687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4155","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","14:35:00","MST","2020-12-01 21:35:00",NA,"0.399",399,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540692","UTAHDWQ_WQX-BRI201116-4905441-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905441-1201-4-C/results/911540692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4156","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","14:35:00","MST","2020-12-01 21:35:00",NA,"0.46",460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540696","UTAHDWQ_WQX-BRI201116-4905441-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905441-1201-4-C/results/911540696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4157","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","10:10:00","MST","2020-12-02 17:10:00",NA,"8.94",8940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540702","UTAHDWQ_WQX-BRI201116-4905520-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905520-1202-4-C/results/911540702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4158","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","10:10:00","MST","2020-12-02 17:10:00",NA,"9.08",9080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540706","UTAHDWQ_WQX-BRI201116-4905520-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905520-1202-4-C/results/911540706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4159","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","09:25:00","MST","2020-12-02 16:25:00",NA,"24.1",24100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540712","UTAHDWQ_WQX-BRI201116-4905540-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905540-1202-4-C/results/911540712/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4160","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","09:25:00","MST","2020-12-02 16:25:00",NA,"24.5",24500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540716","UTAHDWQ_WQX-BRI201116-4905540-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905540-1202-4-C/results/911540716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4161","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","12:10:00","MST","2020-12-02 19:10:00",NA,"0.701",701,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540722","UTAHDWQ_WQX-BRI201116-4905580-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905580-1202-4-C/results/911540722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4162","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","12:10:00","MST","2020-12-02 19:10:00",NA,"0.674",674,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540726","UTAHDWQ_WQX-BRI201116-4905580-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905580-1202-4-C/results/911540726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4163","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","12:25:00","MST","2020-12-02 19:25:00",NA,"0.725",725,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540731","UTAHDWQ_WQX-BRI201116-4905590-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905590-1202-4-C/results/911540731/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4164","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","12:25:00","MST","2020-12-02 19:25:00",NA,"0.706",706,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540735","UTAHDWQ_WQX-BRI201116-4905590-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905590-1202-4-C/results/911540735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4165","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","11:30:00","MST","2020-12-02 18:30:00",NA,"0.473",473,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540740","UTAHDWQ_WQX-BRI201116-4905625-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Little Bear River at 4700 S xing below RR bridge","River/Stream",NA,"41.6468700000",41.64687,"-111.9224400000",-111.92244,"OK","16010203","UTAHDWQ_WQX-4905625",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6468700000","-111.9224400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905625-1202-4-C/results/911540740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4166","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","11:30:00","MST","2020-12-02 18:30:00",NA,"0.429",429,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540744","UTAHDWQ_WQX-BRI201116-4905625-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Little Bear River at 4700 S xing below RR bridge","River/Stream",NA,"41.6468700000",41.64687,"-111.9224400000",-111.92244,"OK","16010203","UTAHDWQ_WQX-4905625",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6468700000","-111.9224400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905625-1202-4-C/results/911540744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4167","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","10:55:00","MST","2020-12-02 17:55:00",NA,"0.489",489,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540749","UTAHDWQ_WQX-BRI201116-4905630-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905630-1202-4-C/results/911540749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4168","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","10:55:00","MST","2020-12-02 17:55:00",NA,"0.536",536,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540753","UTAHDWQ_WQX-BRI201116-4905630-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905630-1202-4-C/results/911540753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4169","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","11:00:00","MST","2020-12-02 18:00:00",NA,"0.493",493,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540758","UTAHDWQ_WQX-BRI201116-4905631-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905631-1202-4-C/results/911540758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4170","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","11:00:00","MST","2020-12-02 18:00:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540762","UTAHDWQ_WQX-BRI201116-4905631-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905631-1202-4-C/results/911540762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4171","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","10:30:00","MST","2020-12-02 17:30:00",NA,"0.463",463,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540767","UTAHDWQ_WQX-BRI201116-4905650-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905650-1202-4-C/results/911540767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4172","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","10:30:00","MST","2020-12-02 17:30:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540771","UTAHDWQ_WQX-BRI201116-4905650-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905650-1202-4-C/results/911540771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4173","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","14:55:00","MST","2020-12-01 21:55:00",NA,"0.689",689,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540776","UTAHDWQ_WQX-BRI201116-4905670-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905670-1201-4-C/results/911540776/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4174","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","14:55:00","MST","2020-12-01 21:55:00",NA,"0.669",669,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540780","UTAHDWQ_WQX-BRI201116-4905670-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905670-1201-4-C/results/911540780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4175","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","15:10:00","MST","2020-12-01 22:10:00",NA,"0.36",360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540785","UTAHDWQ_WQX-BRI201116-4905700-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905700-1201-4-C/results/911540785/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4176","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","15:10:00","MST","2020-12-01 22:10:00",NA,"0.355",355,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540789","UTAHDWQ_WQX-BRI201116-4905700-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905700-1201-4-C/results/911540789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4177","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","16:05:00","MST","2020-12-01 23:05:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540794","UTAHDWQ_WQX-BRI201116-4905740-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905740-1201-4-C/results/911540794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4178","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","16:05:00","MST","2020-12-01 23:05:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540798","UTAHDWQ_WQX-BRI201116-4905740-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905740-1201-4-C/results/911540798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4179","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","15:30:00","MST","2020-12-01 22:30:00",NA,"0.276",276,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540803","UTAHDWQ_WQX-BRI201116-4905750-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905750-1201-4-C/results/911540803/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4180","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","15:30:00","MST","2020-12-01 22:30:00",NA,"0.317",317,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540807","UTAHDWQ_WQX-BRI201116-4905750-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905750-1201-4-C/results/911540807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4181","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","15:45:00","MST","2020-12-01 22:45:00",NA,"0.284",284,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540812","UTAHDWQ_WQX-BRI201116-4905780-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905780-1201-4-C/results/911540812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4182","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","15:45:00","MST","2020-12-01 22:45:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540816","UTAHDWQ_WQX-BRI201116-4905780-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905780-1201-4-C/results/911540816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4183","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-02","11:15:00","MST","2020-12-02 18:15:00",NA,"3.96",3960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540821","UTAHDWQ_WQX-BRI201116-4905940-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905940-1202-4-C/results/911540821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4184","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-02","11:15:00","MST","2020-12-02 18:15:00",NA,"3.97",3970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540825","UTAHDWQ_WQX-BRI201116-4905940-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905940-1202-4-C/results/911540825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4185","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","14:00:00","MST","2020-12-01 21:00:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540830","UTAHDWQ_WQX-BRI201116-4906400-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4906400-1201-4-C/results/911540830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4186","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","14:00:00","MST","2020-12-01 21:00:00",NA,"0.465",465,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540834","UTAHDWQ_WQX-BRI201116-4906400-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4906400-1201-4-C/results/911540834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4187","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-01","09:05:00","MST","2020-12-01 16:05:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540839","UTAHDWQ_WQX-BRI201116-4908744-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908744-1201-4-C/results/911540839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4188","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-01","09:05:00","MST","2020-12-01 16:05:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540843","UTAHDWQ_WQX-BRI201116-4908744-1201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908744-1201-4-C/results/911540843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4189","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","16:00:00","MST","2020-12-14 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540848","UTAHDWQ_WQX-BRI201214-4900751-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1214-4-C/results/911540848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4190","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","16:00:00","MST","2020-12-14 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540852","UTAHDWQ_WQX-BRI201214-4900751-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1214-4-C/results/911540852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4191","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","15:00:00","MST","2020-12-15 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540891","UTAHDWQ_WQX-BRI201214-4900751-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1215-4-C/results/911540891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4192","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","15:00:00","MST","2020-12-15 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540895","UTAHDWQ_WQX-BRI201214-4900751-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1215-4-C/results/911540895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4193","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","15:00:00","MST","2020-12-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540917","UTAHDWQ_WQX-BRI201214-4900751-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1216-4-C/results/911540917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4194","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","15:00:00","MST","2020-12-16 22:00:00",NA,"0.106",106,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540921","UTAHDWQ_WQX-BRI201214-4900751-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1216-4-C/results/911540921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4195","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","17:00:00","MST","2020-12-15 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540943","UTAHDWQ_WQX-BRI201214-4900753-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900753-1214-4-C/results/911540943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4196","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","17:00:00","MST","2020-12-15 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540947","UTAHDWQ_WQX-BRI201214-4900753-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900753-1214-4-C/results/911540947/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4197","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","18:00:00","MST","2020-12-16 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540969","UTAHDWQ_WQX-BRI201214-4900753-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900753-1215-4-C/results/911540969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4198","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","18:00:00","MST","2020-12-16 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540973","UTAHDWQ_WQX-BRI201214-4900753-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900753-1215-4-C/results/911540973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4199","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","09:30:00","MST","2020-12-14 16:30:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540995","UTAHDWQ_WQX-BRI201214-4901180-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901180-1214-4-C/results/911540995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4200","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","09:30:00","MST","2020-12-14 16:30:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911540999","UTAHDWQ_WQX-BRI201214-4901180-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901180-1214-4-C/results/911540999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4201","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","10:00:00","MST","2020-12-14 17:00:00",NA,"2.07",2070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541039","UTAHDWQ_WQX-BRI201214-4901200-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901200-1214-4-C/results/911541039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4202","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","10:00:00","MST","2020-12-14 17:00:00",NA,"2.09",2090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541043","UTAHDWQ_WQX-BRI201214-4901200-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901200-1214-4-C/results/911541043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4203","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","10:15:00","MST","2020-12-14 17:15:00",NA,"1.77",1770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541082","UTAHDWQ_WQX-BRI201214-4901225-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901225-1214-4-C/results/911541082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4204","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","10:15:00","MST","2020-12-14 17:15:00",NA,"1.92",1920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541086","UTAHDWQ_WQX-BRI201214-4901225-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901225-1214-4-C/results/911541086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4205","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","11:40:00","MST","2020-12-14 18:40:00",NA,"4.75",4750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541125","UTAHDWQ_WQX-BRI201214-4901431-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901431-1214-4-C/results/911541125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4206","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","11:40:00","MST","2020-12-14 18:40:00",NA,"3.72",3720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541129","UTAHDWQ_WQX-BRI201214-4901431-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901431-1214-4-C/results/911541129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4207","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","11:50:00","MST","2020-12-14 18:50:00",NA,"4.47",4470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541151","UTAHDWQ_WQX-BRI201214-4901432-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901432-1214-4-C/results/911541151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4208","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","11:50:00","MST","2020-12-14 18:50:00",NA,"4.46",4460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541155","UTAHDWQ_WQX-BRI201214-4901432-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901432-1214-4-C/results/911541155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4209","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","11:20:00","MST","2020-12-14 18:20:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541177","UTAHDWQ_WQX-BRI201214-4901600-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901600-1214-4-C/results/911541177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4210","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","11:20:00","MST","2020-12-14 18:20:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541181","UTAHDWQ_WQX-BRI201214-4901600-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901600-1214-4-C/results/911541181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4211","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","13:00:00","MST","2020-12-14 20:00:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541203","UTAHDWQ_WQX-BRI201214-4901730-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901730-1214-4-C/results/911541203/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4212","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","13:00:00","MST","2020-12-14 20:00:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541207","UTAHDWQ_WQX-BRI201214-4901730-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901730-1214-4-C/results/911541207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4213","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","09:20:00","MST","2020-12-15 16:20:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541229","UTAHDWQ_WQX-BRI201214-4901790-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901790-1215-4-C/results/911541229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4214","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","09:20:00","MST","2020-12-15 16:20:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541233","UTAHDWQ_WQX-BRI201214-4901790-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901790-1215-4-C/results/911541233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4215","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","09:50:00","MST","2020-12-15 16:50:00",NA,"3.05",3050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541255","UTAHDWQ_WQX-BRI201214-4901975-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901975-1215-4-C/results/911541255/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4216","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","09:50:00","MST","2020-12-15 16:50:00",NA,"3.17",3170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541259","UTAHDWQ_WQX-BRI201214-4901975-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901975-1215-4-C/results/911541259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4217","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","10:10:00","MST","2020-12-15 17:10:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541281","UTAHDWQ_WQX-BRI201214-4901980-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901980-1215-4-C/results/911541281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4218","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","10:10:00","MST","2020-12-15 17:10:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541285","UTAHDWQ_WQX-BRI201214-4901980-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901980-1215-4-C/results/911541285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4219","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","11:00:00","MST","2020-12-14 18:00:00",NA,"2.17",2170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541307","UTAHDWQ_WQX-BRI201214-4902040-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902040-1214-4-C/results/911541307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4220","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","11:00:00","MST","2020-12-14 18:00:00",NA,"1.93",1930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541311","UTAHDWQ_WQX-BRI201214-4902040-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902040-1214-4-C/results/911541311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4221","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","12:20:00","MST","2020-12-14 19:20:00",NA,"2.33",2330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541333","UTAHDWQ_WQX-BRI201214-4902700-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902700-1214-4-C/results/911541333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4222","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","12:20:00","MST","2020-12-14 19:20:00",NA,"2.01",2010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541337","UTAHDWQ_WQX-BRI201214-4902700-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902700-1214-4-C/results/911541337/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4223","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","12:30:00","MST","2020-12-14 19:30:00",NA,"29.2",29200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541360","UTAHDWQ_WQX-BRI201214-4902710-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902710-1214-4-C/results/911541360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4224","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","12:30:00","MST","2020-12-14 19:30:00",NA,"27.5",27500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541364","UTAHDWQ_WQX-BRI201214-4902710-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902710-1214-4-C/results/911541364/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4225","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","12:50:00","MST","2020-12-14 19:50:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541387","UTAHDWQ_WQX-BRI201214-4902720-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902720-1214-4-C/results/911541387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4226","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","12:50:00","MST","2020-12-14 19:50:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541391","UTAHDWQ_WQX-BRI201214-4902720-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902720-1214-4-C/results/911541391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4227","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","13:30:00","MST","2020-12-14 20:30:00",NA,"0.652",652,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541413","UTAHDWQ_WQX-BRI201214-4902900-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902900-1214-4-C/results/911541413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4228","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","13:30:00","MST","2020-12-14 20:30:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541417","UTAHDWQ_WQX-BRI201214-4902900-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902900-1214-4-C/results/911541417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4229","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","13:20:00","MST","2020-12-14 20:20:00",NA,"0.506",506,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541438","UTAHDWQ_WQX-BRI201214-4902940-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902940-1214-4-C/results/911541438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4230","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","13:20:00","MST","2020-12-14 20:20:00",NA,"0.585",585,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541442","UTAHDWQ_WQX-BRI201214-4902940-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902940-1214-4-C/results/911541442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4231","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","13:30:00","MST","2020-12-14 20:30:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541464","UTAHDWQ_WQX-BRI201214-4902941-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902941-1214-4-C/results/911541464/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4232","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","13:30:00","MST","2020-12-14 20:30:00",NA,"0.741",741,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541468","UTAHDWQ_WQX-BRI201214-4902941-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902941-1214-4-C/results/911541468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4233","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","12:45:00","MST","2020-12-15 19:45:00",NA,"4.94",4940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541490","UTAHDWQ_WQX-BRI201214-4903080-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903080-1215-4-C/results/911541490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4234","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","12:45:00","MST","2020-12-15 19:45:00",NA,"4.99",4990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541494","UTAHDWQ_WQX-BRI201214-4903080-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903080-1215-4-C/results/911541494/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4235","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","13:10:00","MST","2020-12-15 20:10:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541516","UTAHDWQ_WQX-BRI201214-4903180-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903180-1215-4-C/results/911541516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4236","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","13:10:00","MST","2020-12-15 20:10:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541520","UTAHDWQ_WQX-BRI201214-4903180-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903180-1215-4-C/results/911541520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4237","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","13:35:00","MST","2020-12-15 20:35:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541542","UTAHDWQ_WQX-BRI201214-4903190-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903190-1215-4-C/results/911541542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4238","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","13:35:00","MST","2020-12-15 20:35:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541546","UTAHDWQ_WQX-BRI201214-4903190-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903190-1215-4-C/results/911541546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4239","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","13:40:00","MST","2020-12-15 20:40:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541568","UTAHDWQ_WQX-BRI201214-4903191-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903191-1215-4-C/results/911541568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4240","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","13:40:00","MST","2020-12-15 20:40:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541572","UTAHDWQ_WQX-BRI201214-4903191-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903191-1215-4-C/results/911541572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4241","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","13:30:00","MST","2020-12-15 20:30:00",NA,"1.83",1830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541594","UTAHDWQ_WQX-BRI201214-4903200-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903200-1215-4-C/results/911541594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4242","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","13:30:00","MST","2020-12-15 20:30:00",NA,"1.72",1720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541598","UTAHDWQ_WQX-BRI201214-4903200-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903200-1215-4-C/results/911541598/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4243","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","12:00:00","MST","2020-12-15 19:00:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541620","UTAHDWQ_WQX-BRI201214-4903400-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903400-1215-4-C/results/911541620/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4244","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","12:00:00","MST","2020-12-15 19:00:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541624","UTAHDWQ_WQX-BRI201214-4903400-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903400-1215-4-C/results/911541624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4245","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","11:50:00","MST","2020-12-15 18:50:00",NA,"0.501",501,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541646","UTAHDWQ_WQX-BRI201214-4903504-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903504-1215-4-C/results/911541646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4246","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","11:50:00","MST","2020-12-15 18:50:00",NA,"0.564",564,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541650","UTAHDWQ_WQX-BRI201214-4903504-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903504-1215-4-C/results/911541650/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4247","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","11:30:00","MST","2020-12-15 18:30:00",NA,"0.628",628,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541672","UTAHDWQ_WQX-BRI201214-4903507-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903507-1215-4-C/results/911541672/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4248","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","11:30:00","MST","2020-12-15 18:30:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541676","UTAHDWQ_WQX-BRI201214-4903507-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903507-1215-4-C/results/911541676/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4249","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","11:10:00","MST","2020-12-15 18:10:00",NA,"0.41",410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541698","UTAHDWQ_WQX-BRI201214-4903510-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903510-1215-4-C/results/911541698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4250","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","11:10:00","MST","2020-12-15 18:10:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541702","UTAHDWQ_WQX-BRI201214-4903510-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903510-1215-4-C/results/911541702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4251","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","10:15:00","MST","2020-12-16 17:15:00",NA,"2.38",2380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541724","UTAHDWQ_WQX-BRI201214-4903699-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903699-1216-4-C/results/911541724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4252","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","10:15:00","MST","2020-12-16 17:15:00",NA,"2.32",2320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541728","UTAHDWQ_WQX-BRI201214-4903699-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903699-1216-4-C/results/911541728/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4253","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","11:00:00","MST","2020-12-16 18:00:00",NA,"21",21000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541751","UTAHDWQ_WQX-BRI201214-4903723-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903723-1216-4-C/results/911541751/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4254","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","11:00:00","MST","2020-12-16 18:00:00",NA,"19.7",19700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541755","UTAHDWQ_WQX-BRI201214-4903723-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903723-1216-4-C/results/911541755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4255","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","13:45:00","MST","2020-12-15 20:45:00",NA,"9.1",9100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541803","UTAHDWQ_WQX-BRI201214-4903950-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903950-1215-4-C/results/911541803/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4256","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","13:45:00","MST","2020-12-15 20:45:00",NA,"8.15",8150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541807","UTAHDWQ_WQX-BRI201214-4903950-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903950-1215-4-C/results/911541807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4257","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","09:20:00","MST","2020-12-16 16:20:00",NA,"2.84",2840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541829","UTAHDWQ_WQX-BRI201214-4904110-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904110-1216-4-C/results/911541829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4258","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","09:20:00","MST","2020-12-16 16:20:00",NA,"2.88",2880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541833","UTAHDWQ_WQX-BRI201214-4904110-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904110-1216-4-C/results/911541833/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4259","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","11:20:00","MST","2020-12-16 18:20:00",NA,"2.28",2280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541856","UTAHDWQ_WQX-BRI201214-4904240-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904240-1216-4-C/results/911541856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4260","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","11:20:00","MST","2020-12-16 18:20:00",NA,"2.26",2260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541860","UTAHDWQ_WQX-BRI201214-4904240-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904240-1216-4-C/results/911541860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4261","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","11:30:00","MST","2020-12-16 18:30:00",NA,"2.18",2180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541882","UTAHDWQ_WQX-BRI201214-4904241-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904241-1216-4-C/results/911541882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4262","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","11:30:00","MST","2020-12-16 18:30:00",NA,"2.21",2210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541886","UTAHDWQ_WQX-BRI201214-4904241-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904241-1216-4-C/results/911541886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4263","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","10:35:00","MST","2020-12-16 17:35:00",NA,"2.28",2280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541908","UTAHDWQ_WQX-BRI201214-4904250-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904250-1216-4-C/results/911541908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4264","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","10:35:00","MST","2020-12-16 17:35:00",NA,"2.25",2250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541912","UTAHDWQ_WQX-BRI201214-4904250-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904250-1216-4-C/results/911541912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4265","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","12:00:00","MST","2020-12-16 19:00:00",NA,"2.31",2310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541934","UTAHDWQ_WQX-BRI201214-4904340-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904340-1216-4-C/results/911541934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4266","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","12:00:00","MST","2020-12-16 19:00:00",NA,"2.42",2420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541938","UTAHDWQ_WQX-BRI201214-4904340-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904340-1216-4-C/results/911541938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4267","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","14:10:00","MST","2020-12-15 21:10:00",NA,"18.4",18400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541960","UTAHDWQ_WQX-BRI201214-4904740-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904740-1215-4-C/results/911541960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4268","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","14:10:00","MST","2020-12-15 21:10:00",NA,"19.1",19100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541964","UTAHDWQ_WQX-BRI201214-4904740-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904740-1215-4-C/results/911541964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4269","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","11:35:00","MST","2020-12-15 18:35:00",NA,"0.894",894,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541986","UTAHDWQ_WQX-BRI201214-4904800-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904800-1215-4-C/results/911541986/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4270","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","11:35:00","MST","2020-12-15 18:35:00",NA,"0.926",926,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911541990","UTAHDWQ_WQX-BRI201214-4904800-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904800-1215-4-C/results/911541990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4271","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","14:30:00","MST","2020-12-15 21:30:00",NA,"2.73",2730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542012","UTAHDWQ_WQX-BRI201214-4904870-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904870-1215-4-C/results/911542012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4272","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","14:30:00","MST","2020-12-15 21:30:00",NA,"2.68",2680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542016","UTAHDWQ_WQX-BRI201214-4904870-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904870-1215-4-C/results/911542016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4273","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","11:20:00","MST","2020-12-15 18:20:00",NA,"2.96",2960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542038","UTAHDWQ_WQX-BRI201214-4904900-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904900-1215-4-C/results/911542038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4274","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","11:20:00","MST","2020-12-15 18:20:00",NA,"3.02",3020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542042","UTAHDWQ_WQX-BRI201214-4904900-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904900-1215-4-C/results/911542042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4275","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","13:30:00","MST","2020-12-15 20:30:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542064","UTAHDWQ_WQX-BRI201214-4904920-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904920-1215-4-C/results/911542064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4276","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","13:30:00","MST","2020-12-15 20:30:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542068","UTAHDWQ_WQX-BRI201214-4904920-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904920-1215-4-C/results/911542068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4277","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","14:00:00","MST","2020-12-15 21:00:00",NA,"18.2",18200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542090","UTAHDWQ_WQX-BRI201214-4904940-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904940-1215-4-C/results/911542090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4278","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","14:00:00","MST","2020-12-15 21:00:00",NA,"18.8",18800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542094","UTAHDWQ_WQX-BRI201214-4904940-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904940-1215-4-C/results/911542094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4279","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","13:15:00","MST","2020-12-15 20:15:00",NA,"2.89",2890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542116","UTAHDWQ_WQX-BRI201214-4904965-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904965-1215-4-C/results/911542116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4280","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","13:15:00","MST","2020-12-15 20:15:00",NA,"3.04",3040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542120","UTAHDWQ_WQX-BRI201214-4904965-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904965-1215-4-C/results/911542120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4281","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","12:45:00","MST","2020-12-15 19:45:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542142","UTAHDWQ_WQX-BRI201214-4904990-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904990-1215-4-C/results/911542142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4282","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","12:45:00","MST","2020-12-15 19:45:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542146","UTAHDWQ_WQX-BRI201214-4904990-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904990-1215-4-C/results/911542146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4283","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","11:30:00","MST","2020-12-15 18:30:00",NA,"0.912",912,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542168","UTAHDWQ_WQX-BRI201214-4905000-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905000-1215-4-C/results/911542168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4284","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","11:30:00","MST","2020-12-15 18:30:00",NA,"0.982",982,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542172","UTAHDWQ_WQX-BRI201214-4905000-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905000-1215-4-C/results/911542172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4285","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","11:00:00","MST","2020-12-15 18:00:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542194","UTAHDWQ_WQX-BRI201214-4905040-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905040-1215-4-C/results/911542194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4286","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","11:00:00","MST","2020-12-15 18:00:00",NA,"0.42",420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542198","UTAHDWQ_WQX-BRI201214-4905040-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905040-1215-4-C/results/911542198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4287","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","10:35:00","MST","2020-12-15 17:35:00",NA,"7.09",7090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542220","UTAHDWQ_WQX-BRI201214-4905050-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905050-1215-4-C/results/911542220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4288","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","10:35:00","MST","2020-12-15 17:35:00",NA,"6.86",6860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542224","UTAHDWQ_WQX-BRI201214-4905050-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905050-1215-4-C/results/911542224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4289","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","10:25:00","MST","2020-12-15 17:25:00",NA,"2.12",2120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542264","UTAHDWQ_WQX-BRI201214-4905052-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905052-1215-4-C/results/911542264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4290","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","10:25:00","MST","2020-12-15 17:25:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542268","UTAHDWQ_WQX-BRI201214-4905052-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:34:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905052-1215-4-C/results/911542268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4291","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","09:55:00","MST","2020-12-15 16:55:00",NA,"16.5",16500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542308","UTAHDWQ_WQX-BRI201214-4905070-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905070-1215-4-C/results/911542308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4292","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","09:55:00","MST","2020-12-15 16:55:00",NA,"15.1",15100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542312","UTAHDWQ_WQX-BRI201214-4905070-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905070-1215-4-C/results/911542312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4293","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","10:10:00","MST","2020-12-15 17:10:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542352","UTAHDWQ_WQX-BRI201214-4905078-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905078-1215-4-C/results/911542352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4294","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","10:10:00","MST","2020-12-15 17:10:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542356","UTAHDWQ_WQX-BRI201214-4905078-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905078-1215-4-C/results/911542356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4295","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","09:30:00","MST","2020-12-15 16:30:00",NA,"0.333",333,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542395","UTAHDWQ_WQX-BRI201214-4905200-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905200-1215-4-C/results/911542395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4296","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","09:30:00","MST","2020-12-15 16:30:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542399","UTAHDWQ_WQX-BRI201214-4905200-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905200-1215-4-C/results/911542399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4297","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","09:35:00","MST","2020-12-15 16:35:00",NA,"0.344",344,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542421","UTAHDWQ_WQX-BRI201214-4905301-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905301-1215-4-C/results/911542421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4298","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","09:35:00","MST","2020-12-15 16:35:00",NA,"0.414",414,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542425","UTAHDWQ_WQX-BRI201214-4905301-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905301-1215-4-C/results/911542425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4299","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","12:30:00","MST","2020-12-15 19:30:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542447","UTAHDWQ_WQX-BRI201214-4905400-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905400-1215-4-C/results/911542447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4300","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","12:30:00","MST","2020-12-15 19:30:00",NA,"0.488",488,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542451","UTAHDWQ_WQX-BRI201214-4905400-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905400-1215-4-C/results/911542451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4301","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","15:00:00","MST","2020-12-15 22:00:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542473","UTAHDWQ_WQX-BRI201214-4905440-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905440-1215-4-C/results/911542473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4302","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","15:00:00","MST","2020-12-15 22:00:00",NA,"0.462",462,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542477","UTAHDWQ_WQX-BRI201214-4905440-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905440-1215-4-C/results/911542477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4303","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","15:10:00","MST","2020-12-15 22:10:00",NA,"0.393",393,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542499","UTAHDWQ_WQX-BRI201214-4905441-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905441-1215-4-C/results/911542499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4304","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","15:10:00","MST","2020-12-15 22:10:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542503","UTAHDWQ_WQX-BRI201214-4905441-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905441-1215-4-C/results/911542503/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4305","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","15:25:00","MST","2020-12-15 22:25:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542525","UTAHDWQ_WQX-BRI201214-4905670-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905670-1215-4-C/results/911542525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4306","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","15:25:00","MST","2020-12-15 22:25:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542529","UTAHDWQ_WQX-BRI201214-4905670-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905670-1215-4-C/results/911542529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4307","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","15:50:00","MST","2020-12-15 22:50:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542551","UTAHDWQ_WQX-BRI201214-4905700-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905700-1215-4-C/results/911542551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4308","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","15:50:00","MST","2020-12-15 22:50:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542555","UTAHDWQ_WQX-BRI201214-4905700-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905700-1215-4-C/results/911542555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4309","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","16:40:00","MST","2020-12-15 23:40:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542577","UTAHDWQ_WQX-BRI201214-4905740-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905740-1215-4-C/results/911542577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4310","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","16:40:00","MST","2020-12-15 23:40:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542581","UTAHDWQ_WQX-BRI201214-4905740-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905740-1215-4-C/results/911542581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4311","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","16:10:00","MST","2020-12-15 23:10:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542603","UTAHDWQ_WQX-BRI201214-4905750-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905750-1215-4-C/results/911542603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4312","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","16:10:00","MST","2020-12-15 23:10:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542607","UTAHDWQ_WQX-BRI201214-4905750-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905750-1215-4-C/results/911542607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4313","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","16:20:00","MST","2020-12-15 23:20:00",NA,"0.307",307,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542629","UTAHDWQ_WQX-BRI201214-4905780-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905780-1215-4-C/results/911542629/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4314","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","16:20:00","MST","2020-12-15 23:20:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542633","UTAHDWQ_WQX-BRI201214-4905780-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905780-1215-4-C/results/911542633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4315","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","14:45:00","MST","2020-12-15 21:45:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542707","UTAHDWQ_WQX-BRI201214-4906400-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4906400-1215-4-C/results/911542707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4316","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","14:45:00","MST","2020-12-15 21:45:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542711","UTAHDWQ_WQX-BRI201214-4906400-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4906400-1215-4-C/results/911542711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4317","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","12:00:00","MST","2020-12-14 19:00:00",NA,"0.474",474,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542733","UTAHDWQ_WQX-BRI201214-4908130-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908130-1214-4-C/results/911542733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4318","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","12:00:00","MST","2020-12-14 19:00:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542737","UTAHDWQ_WQX-BRI201214-4908130-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908130-1214-4-C/results/911542737/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4319","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","13:55:00","MST","2020-12-14 20:55:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542759","UTAHDWQ_WQX-BRI201214-4908160-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908160-1214-4-C/results/911542759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4320","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","13:55:00","MST","2020-12-14 20:55:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542763","UTAHDWQ_WQX-BRI201214-4908160-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908160-1214-4-C/results/911542763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4321","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","13:05:00","MST","2020-12-14 20:05:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542785","UTAHDWQ_WQX-BRI201214-4908165-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908165-1214-4-C/results/911542785/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4322","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","13:05:00","MST","2020-12-14 20:05:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542789","UTAHDWQ_WQX-BRI201214-4908165-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908165-1214-4-C/results/911542789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4323","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","13:40:00","MST","2020-12-14 20:40:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542811","UTAHDWQ_WQX-BRI201214-4908168-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908168-1214-4-C/results/911542811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4324","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","13:40:00","MST","2020-12-14 20:40:00",NA,"0.313",313,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542815","UTAHDWQ_WQX-BRI201214-4908168-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908168-1214-4-C/results/911542815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4325","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","13:30:00","MST","2020-12-14 20:30:00",NA,"0.485",485,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542837","UTAHDWQ_WQX-BRI201214-4908170-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908170-1214-4-C/results/911542837/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4326","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","13:30:00","MST","2020-12-14 20:30:00",NA,"0.489",489,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542841","UTAHDWQ_WQX-BRI201214-4908170-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908170-1214-4-C/results/911542841/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4327","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","11:05:00","MST","2020-12-14 18:05:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542863","UTAHDWQ_WQX-BRI201214-4908350-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908350-1214-4-C/results/911542863/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4328","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","11:05:00","MST","2020-12-14 18:05:00",NA,"0.633",633,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542867","UTAHDWQ_WQX-BRI201214-4908350-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908350-1214-4-C/results/911542867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4329","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","11:35:00","MST","2020-12-14 18:35:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542889","UTAHDWQ_WQX-BRI201214-4908697-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908697-1214-4-C/results/911542889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4330","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","11:35:00","MST","2020-12-14 18:35:00",NA,"0.507",507,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542893","UTAHDWQ_WQX-BRI201214-4908697-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908697-1214-4-C/results/911542893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4331","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","09:15:00","MST","2020-12-15 16:15:00",NA,"0.327",327,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542915","UTAHDWQ_WQX-BRI201214-4908744-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908744-1215-4-C/results/911542915/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4332","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","09:15:00","MST","2020-12-15 16:15:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542919","UTAHDWQ_WQX-BRI201214-4908744-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908744-1215-4-C/results/911542919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4333","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","14:00:00","MST","2020-12-14 21:00:00",NA,"0.45",450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542941","UTAHDWQ_WQX-BRI201214-4908745-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908745-1214-4-C/results/911542941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4334","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","14:00:00","MST","2020-12-14 21:00:00",NA,"0.566",566,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542945","UTAHDWQ_WQX-BRI201214-4908745-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908745-1214-4-C/results/911542945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4335","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","10:20:00","MST","2020-12-14 17:20:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542967","UTAHDWQ_WQX-BRI201214-5906850-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-5906850-1214-4-C/results/911542967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4336","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","10:20:00","MST","2020-12-14 17:20:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542971","UTAHDWQ_WQX-BRI201214-5906850-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-5906850-1214-4-C/results/911542971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4337","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","08:30:00","MST","2020-12-15 15:30:00",NA,"9.63",9630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542994","UTAHDWQ_WQX-BRI201214-5984855-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-5984855-1215-4-C/results/911542994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4338","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","08:30:00","MST","2020-12-15 15:30:00",NA,"9.56",9560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911542998","UTAHDWQ_WQX-BRI201214-5984855-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-5984855-1215-4-C/results/911542998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4339","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","12:10:00","MST","2021-01-13 19:10:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543020","UTAHDWQ_WQX-BRI210111-4900470-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900470-0113-4-C/results/911543020/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4340","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","12:10:00","MST","2021-01-13 19:10:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543024","UTAHDWQ_WQX-BRI210111-4900470-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900470-0113-4-C/results/911543024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4341","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","12:30:00","MST","2021-01-13 19:30:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543029","UTAHDWQ_WQX-BRI210111-4900510-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900510-0113-4-C/results/911543029/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4342","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","12:30:00","MST","2021-01-13 19:30:00",NA,"0.784",784,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543033","UTAHDWQ_WQX-BRI210111-4900510-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900510-0113-4-C/results/911543033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4343","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","12:40:00","MST","2021-01-13 19:40:00",NA,"0.636",636,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543038","UTAHDWQ_WQX-BRI210111-4900511-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900511-0113-4-C/results/911543038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4344","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","12:40:00","MST","2021-01-13 19:40:00",NA,"0.683",683,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543042","UTAHDWQ_WQX-BRI210111-4900511-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900511-0113-4-C/results/911543042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4345","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","16:30:00","MST","2021-01-11 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543047","UTAHDWQ_WQX-BRI210111-4900751-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0111-4-C/results/911543047/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4346","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","16:30:00","MST","2021-01-11 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543051","UTAHDWQ_WQX-BRI210111-4900751-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0111-4-C/results/911543051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4347","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","16:00:00","MST","2021-01-12 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543090","UTAHDWQ_WQX-BRI210111-4900751-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0112-4-C/results/911543090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4348","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","16:00:00","MST","2021-01-12 23:00:00",NA,"0.097",97,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543094","UTAHDWQ_WQX-BRI210111-4900751-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0112-4-C/results/911543094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4349","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","15:15:00","MST","2021-01-13 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543099","UTAHDWQ_WQX-BRI210111-4900751-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0113-4-C/results/911543099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4350","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","15:15:00","MST","2021-01-13 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543103","UTAHDWQ_WQX-BRI210111-4900751-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0113-4-C/results/911543103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4351","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","15:30:00","MST","2021-01-11 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543108","UTAHDWQ_WQX-BRI210111-4900753-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0111-4-C/results/911543108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4352","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","15:30:00","MST","2021-01-11 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543112","UTAHDWQ_WQX-BRI210111-4900753-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0111-4-C/results/911543112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4353","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","17:00:00","MST","2021-01-13 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543117","UTAHDWQ_WQX-BRI210111-4900753-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0112-4-C/results/911543117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4354","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","17:00:00","MST","2021-01-13 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543121","UTAHDWQ_WQX-BRI210111-4900753-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0112-4-C/results/911543121/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4355","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","15:00:00","MST","2021-01-13 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543160","UTAHDWQ_WQX-BRI210111-4900753-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0113-4-C/results/911543160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4356","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","15:00:00","MST","2021-01-13 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543164","UTAHDWQ_WQX-BRI210111-4900753-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0113-4-C/results/911543164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4357","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","09:50:00","MST","2021-01-11 16:50:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543169","UTAHDWQ_WQX-BRI210111-4901180-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901180-0111-4-C/results/911543169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4358","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","09:50:00","MST","2021-01-11 16:50:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543173","UTAHDWQ_WQX-BRI210111-4901180-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901180-0111-4-C/results/911543173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4359","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","10:05:00","MST","2021-01-11 17:05:00",NA,"2.55",2550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543213","UTAHDWQ_WQX-BRI210111-4901200-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901200-0111-4-C/results/911543213/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4360","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","10:05:00","MST","2021-01-11 17:05:00",NA,"2.37",2370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543217","UTAHDWQ_WQX-BRI210111-4901200-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901200-0111-4-C/results/911543217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4361","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","10:20:00","MST","2021-01-11 17:20:00",NA,"2.2",2200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543256","UTAHDWQ_WQX-BRI210111-4901225-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901225-0111-4-C/results/911543256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4362","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","10:20:00","MST","2021-01-11 17:20:00",NA,"2.08",2080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543260","UTAHDWQ_WQX-BRI210111-4901225-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901225-0111-4-C/results/911543260/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","12:10:00","MST","2021-01-11 19:10:00",NA,"4.41",4410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543299","UTAHDWQ_WQX-BRI210111-4901431-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901431-0111-4-C/results/911543299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4364","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","12:10:00","MST","2021-01-11 19:10:00",NA,"3.55",3550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543303","UTAHDWQ_WQX-BRI210111-4901431-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901431-0111-4-C/results/911543303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4365","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","12:15:00","MST","2021-01-11 19:15:00",NA,"4.27",4270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543308","UTAHDWQ_WQX-BRI210111-4901432-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901432-0111-4-C/results/911543308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4366","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","12:15:00","MST","2021-01-11 19:15:00",NA,"4.62",4620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543312","UTAHDWQ_WQX-BRI210111-4901432-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901432-0111-4-C/results/911543312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4367","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","11:55:00","MST","2021-01-11 18:55:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543317","UTAHDWQ_WQX-BRI210111-4901600-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901600-0111-4-C/results/911543317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4368","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","11:55:00","MST","2021-01-11 18:55:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543321","UTAHDWQ_WQX-BRI210111-4901600-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901600-0111-4-C/results/911543321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4369","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","09:10:00","MST","2021-01-12 16:10:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543326","UTAHDWQ_WQX-BRI210111-4901790-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901790-0112-4-C/results/911543326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4370","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","09:10:00","MST","2021-01-12 16:10:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543330","UTAHDWQ_WQX-BRI210111-4901790-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901790-0112-4-C/results/911543330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4371","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","09:30:00","MST","2021-01-12 16:30:00",NA,"3.12",3120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543335","UTAHDWQ_WQX-BRI210111-4901975-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901975-0112-4-C/results/911543335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4372","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","09:30:00","MST","2021-01-12 16:30:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543339","UTAHDWQ_WQX-BRI210111-4901975-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901975-0112-4-C/results/911543339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4373","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","09:45:00","MST","2021-01-12 16:45:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543344","UTAHDWQ_WQX-BRI210111-4901980-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901980-0112-4-C/results/911543344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4374","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","09:45:00","MST","2021-01-12 16:45:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543348","UTAHDWQ_WQX-BRI210111-4901980-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901980-0112-4-C/results/911543348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4375","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","10:50:00","MST","2021-01-11 17:50:00",NA,"1.96",1960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543353","UTAHDWQ_WQX-BRI210111-4902000-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902000-0111-4-C/results/911543353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4376","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","10:50:00","MST","2021-01-11 17:50:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543357","UTAHDWQ_WQX-BRI210111-4902000-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902000-0111-4-C/results/911543357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4377","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","11:20:00","MST","2021-01-11 18:20:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543363","UTAHDWQ_WQX-BRI210111-4902040-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902040-0111-4-C/results/911543363/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4378","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","11:20:00","MST","2021-01-11 18:20:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543367","UTAHDWQ_WQX-BRI210111-4902040-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902040-0111-4-C/results/911543367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4379","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","11:40:00","MST","2021-01-11 18:40:00",NA,"1.94",1940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543372","UTAHDWQ_WQX-BRI210111-4902050-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902050-0111-4-C/results/911543372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4380","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","11:40:00","MST","2021-01-11 18:40:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543376","UTAHDWQ_WQX-BRI210111-4902050-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902050-0111-4-C/results/911543376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4381","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","13:00:00","MST","2021-01-11 20:00:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543381","UTAHDWQ_WQX-BRI210111-4902700-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902700-0111-4-C/results/911543381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4382","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","13:00:00","MST","2021-01-11 20:00:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543385","UTAHDWQ_WQX-BRI210111-4902700-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902700-0111-4-C/results/911543385/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4383","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","12:45:00","MST","2021-01-11 19:45:00",NA,"17.4",17400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543391","UTAHDWQ_WQX-BRI210111-4902710-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902710-0111-4-C/results/911543391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4384","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","12:45:00","MST","2021-01-11 19:45:00",NA,"15",15000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543395","UTAHDWQ_WQX-BRI210111-4902710-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902710-0111-4-C/results/911543395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4385","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","13:15:00","MST","2021-01-11 20:15:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543401","UTAHDWQ_WQX-BRI210111-4902720-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902720-0111-4-C/results/911543401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4386","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","13:15:00","MST","2021-01-11 20:15:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543405","UTAHDWQ_WQX-BRI210111-4902720-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902720-0111-4-C/results/911543405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4387","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","13:45:00","MST","2021-01-11 20:45:00",NA,"0.627",627,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543410","UTAHDWQ_WQX-BRI210111-4902900-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902900-0111-4-C/results/911543410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4388","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","13:45:00","MST","2021-01-11 20:45:00",NA,"0.718",718,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543414","UTAHDWQ_WQX-BRI210111-4902900-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902900-0111-4-C/results/911543414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4389","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","14:30:00","MST","2021-01-11 21:30:00",NA,"0.526",526,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543419","UTAHDWQ_WQX-BRI210111-4902940-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902940-0111-4-C/results/911543419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4390","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","14:30:00","MST","2021-01-11 21:30:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543423","UTAHDWQ_WQX-BRI210111-4902940-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902940-0111-4-C/results/911543423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4391","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","14:40:00","MST","2021-01-11 21:40:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543428","UTAHDWQ_WQX-BRI210111-4902941-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902941-0111-4-C/results/911543428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4392","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","14:40:00","MST","2021-01-11 21:40:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543432","UTAHDWQ_WQX-BRI210111-4902941-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902941-0111-4-C/results/911543432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4393","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","12:50:00","MST","2021-01-12 19:50:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543437","UTAHDWQ_WQX-BRI210111-4903190-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903190-0112-4-C/results/911543437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4394","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","12:50:00","MST","2021-01-12 19:50:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543441","UTAHDWQ_WQX-BRI210111-4903190-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903190-0112-4-C/results/911543441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4395","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","13:00:00","MST","2021-01-12 20:00:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543446","UTAHDWQ_WQX-BRI210111-4903191-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903191-0112-4-C/results/911543446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4396","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","13:00:00","MST","2021-01-12 20:00:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543450","UTAHDWQ_WQX-BRI210111-4903191-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903191-0112-4-C/results/911543450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4397","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","13:10:00","MST","2021-01-12 20:10:00",NA,"1.71",1710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543455","UTAHDWQ_WQX-BRI210111-4903200-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903200-0112-4-C/results/911543455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4398","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","13:10:00","MST","2021-01-12 20:10:00",NA,"1.75",1750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543459","UTAHDWQ_WQX-BRI210111-4903200-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903200-0112-4-C/results/911543459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4399","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","11:50:00","MST","2021-01-12 18:50:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543464","UTAHDWQ_WQX-BRI210111-4903400-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903400-0112-4-C/results/911543464/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4400","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","11:50:00","MST","2021-01-12 18:50:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543468","UTAHDWQ_WQX-BRI210111-4903400-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903400-0112-4-C/results/911543468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4401","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","11:20:00","MST","2021-01-12 18:20:00",NA,"0.528",528,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543473","UTAHDWQ_WQX-BRI210111-4903504-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903504-0112-4-C/results/911543473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4402","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","11:20:00","MST","2021-01-12 18:20:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543477","UTAHDWQ_WQX-BRI210111-4903504-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903504-0112-4-C/results/911543477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4403","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","11:15:00","MST","2021-01-12 18:15:00",NA,"0.506",506,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543482","UTAHDWQ_WQX-BRI210111-4903507-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903507-0112-4-C/results/911543482/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4404","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","11:15:00","MST","2021-01-12 18:15:00",NA,"0.546",546,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543486","UTAHDWQ_WQX-BRI210111-4903507-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903507-0112-4-C/results/911543486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4405","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","10:55:00","MST","2021-01-12 17:55:00",NA,"0.316",316,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543491","UTAHDWQ_WQX-BRI210111-4903510-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903510-0112-4-C/results/911543491/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4406","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","10:55:00","MST","2021-01-12 17:55:00",NA,"0.413",413,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543495","UTAHDWQ_WQX-BRI210111-4903510-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903510-0112-4-C/results/911543495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4407","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","10:10:00","MST","2021-01-13 17:10:00",NA,"2.86",2860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543500","UTAHDWQ_WQX-BRI210111-4903699-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903699-0113-4-C/results/911543500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4408","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","10:10:00","MST","2021-01-13 17:10:00",NA,"2.57",2570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543504","UTAHDWQ_WQX-BRI210111-4903699-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903699-0113-4-C/results/911543504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4409","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","10:35:00","MST","2021-01-13 17:35:00",NA,"14.3",14300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543510","UTAHDWQ_WQX-BRI210111-4903723-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903723-0113-4-C/results/911543510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4410","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","10:35:00","MST","2021-01-13 17:35:00",NA,"14.2",14200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543514","UTAHDWQ_WQX-BRI210111-4903723-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903723-0113-4-C/results/911543514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4411","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","09:50:00","MST","2021-01-13 16:50:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543528","UTAHDWQ_WQX-BRI210111-4903820-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903820-0113-4-C/results/911543528/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4412","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","09:50:00","MST","2021-01-13 16:50:00",NA,"1.45",1450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543532","UTAHDWQ_WQX-BRI210111-4903820-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903820-0113-4-C/results/911543532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4413","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","12:10:00","MST","2021-01-12 19:10:00",NA,"9.77",9770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543537","UTAHDWQ_WQX-BRI210111-4903950-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903950-0112-4-C/results/911543537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4414","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","12:10:00","MST","2021-01-12 19:10:00",NA,"10.7",10700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543541","UTAHDWQ_WQX-BRI210111-4903950-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903950-0112-4-C/results/911543541/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4415","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","10:55:00","MST","2021-01-13 17:55:00",NA,"2.38",2380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543547","UTAHDWQ_WQX-BRI210111-4904240-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904240-0113-4-C/results/911543547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4416","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","10:55:00","MST","2021-01-13 17:55:00",NA,"2.22",2220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543551","UTAHDWQ_WQX-BRI210111-4904240-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904240-0113-4-C/results/911543551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4417","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","10:40:00","MST","2021-01-13 17:40:00",NA,"2.22",2220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543556","UTAHDWQ_WQX-BRI210111-4904241-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904241-0113-4-C/results/911543556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4418","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","10:40:00","MST","2021-01-13 17:40:00",NA,"2.19",2190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543560","UTAHDWQ_WQX-BRI210111-4904241-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904241-0113-4-C/results/911543560/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4419","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","10:25:00","MST","2021-01-13 17:25:00",NA,"2.43",2430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543565","UTAHDWQ_WQX-BRI210111-4904250-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904250-0113-4-C/results/911543565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4420","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","10:25:00","MST","2021-01-13 17:25:00",NA,"2.16",2160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543569","UTAHDWQ_WQX-BRI210111-4904250-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904250-0113-4-C/results/911543569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4421","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","11:20:00","MST","2021-01-13 18:20:00",NA,"3",3000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543574","UTAHDWQ_WQX-BRI210111-4904340-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904340-0113-4-C/results/911543574/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4422","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","11:20:00","MST","2021-01-13 18:20:00",NA,"2.72",2720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543578","UTAHDWQ_WQX-BRI210111-4904340-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904340-0113-4-C/results/911543578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4423","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","12:40:00","MST","2021-01-12 19:40:00",NA,"19.9",19900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543583","UTAHDWQ_WQX-BRI210111-4904740-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904740-0112-4-C/results/911543583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4424","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","12:40:00","MST","2021-01-12 19:40:00",NA,"21.1",21100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543587","UTAHDWQ_WQX-BRI210111-4904740-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904740-0112-4-C/results/911543587/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4425","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","09:40:00","MST","2021-01-13 16:40:00",NA,"36.7",36700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543592","UTAHDWQ_WQX-BRI210111-4904770-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904770-0113-4-C/results/911543592/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4426","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","09:40:00","MST","2021-01-13 16:40:00",NA,"37.9",37900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543596","UTAHDWQ_WQX-BRI210111-4904770-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904770-0113-4-C/results/911543596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4427","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","11:10:00","MST","2021-01-12 18:10:00",NA,"0.909",909,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543601","UTAHDWQ_WQX-BRI210111-4904800-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904800-0112-4-C/results/911543601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4428","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","11:10:00","MST","2021-01-12 18:10:00",NA,"0.859",859,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543605","UTAHDWQ_WQX-BRI210111-4904800-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904800-0112-4-C/results/911543605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4429","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","09:50:00","MST","2021-01-13 16:50:00",NA,"10.4",10400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543611","UTAHDWQ_WQX-BRI210111-4904810-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904810-0113-4-C/results/911543611/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4430","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","09:50:00","MST","2021-01-13 16:50:00",NA,"10.7",10700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543615","UTAHDWQ_WQX-BRI210111-4904810-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904810-0113-4-C/results/911543615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4431","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","10:45:00","MST","2021-01-12 17:45:00",NA,"3.39",3390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543620","UTAHDWQ_WQX-BRI210111-4904900-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904900-0112-4-C/results/911543620/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4432","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","10:45:00","MST","2021-01-12 17:45:00",NA,"3.08",3080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543624","UTAHDWQ_WQX-BRI210111-4904900-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904900-0112-4-C/results/911543624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4433","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","12:00:00","MST","2021-01-12 19:00:00",NA,"2.79",2790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543629","UTAHDWQ_WQX-BRI210111-4904920-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904920-0112-4-C/results/911543629/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4434","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","12:00:00","MST","2021-01-12 19:00:00",NA,"2.52",2520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543633","UTAHDWQ_WQX-BRI210111-4904920-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904920-0112-4-C/results/911543633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4435","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","12:30:00","MST","2021-01-12 19:30:00",NA,"21.5",21500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543638","UTAHDWQ_WQX-BRI210111-4904940-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904940-0112-4-C/results/911543638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4436","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","12:30:00","MST","2021-01-12 19:30:00",NA,"22",22000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543642","UTAHDWQ_WQX-BRI210111-4904940-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904940-0112-4-C/results/911543642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4437","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","10:00:00","MST","2021-01-13 17:00:00",NA,"7.39",7390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543647","UTAHDWQ_WQX-BRI210111-4904943-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904943-0113-4-C/results/911543647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4438","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","10:00:00","MST","2021-01-13 17:00:00",NA,"7.91",7910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543651","UTAHDWQ_WQX-BRI210111-4904943-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904943-0113-4-C/results/911543651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4439","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","11:50:00","MST","2021-01-12 18:50:00",NA,"3.55",3550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543656","UTAHDWQ_WQX-BRI210111-4904965-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904965-0112-4-C/results/911543656/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4440","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","11:50:00","MST","2021-01-12 18:50:00",NA,"3.15",3150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543660","UTAHDWQ_WQX-BRI210111-4904965-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904965-0112-4-C/results/911543660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4441","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","11:40:00","MST","2021-01-12 18:40:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543665","UTAHDWQ_WQX-BRI210111-4904990-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904990-0112-4-C/results/911543665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4442","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","11:40:00","MST","2021-01-12 18:40:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543669","UTAHDWQ_WQX-BRI210111-4904990-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904990-0112-4-C/results/911543669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4443","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","11:00:00","MST","2021-01-12 18:00:00",NA,"0.979",979,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543674","UTAHDWQ_WQX-BRI210111-4905000-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905000-0112-4-C/results/911543674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4444","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","11:00:00","MST","2021-01-12 18:00:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543678","UTAHDWQ_WQX-BRI210111-4905000-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905000-0112-4-C/results/911543678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4445","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","10:30:00","MST","2021-01-12 17:30:00",NA,"0.405",405,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543683","UTAHDWQ_WQX-BRI210111-4905040-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905040-0112-4-C/results/911543683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4446","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","10:30:00","MST","2021-01-12 17:30:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543687","UTAHDWQ_WQX-BRI210111-4905040-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905040-0112-4-C/results/911543687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4447","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","10:00:00","MST","2021-01-12 17:00:00",NA,"12.5",12500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543692","UTAHDWQ_WQX-BRI210111-4905050-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905050-0112-4-C/results/911543692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4448","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","10:00:00","MST","2021-01-12 17:00:00",NA,"12",12000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543696","UTAHDWQ_WQX-BRI210111-4905050-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905050-0112-4-C/results/911543696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4449","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","09:50:00","MST","2021-01-12 16:50:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543736","UTAHDWQ_WQX-BRI210111-4905052-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905052-0112-4-C/results/911543736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4450","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","09:50:00","MST","2021-01-12 16:50:00",NA,"1.83",1830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543740","UTAHDWQ_WQX-BRI210111-4905052-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905052-0112-4-C/results/911543740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4451","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","09:40:00","MST","2021-01-12 16:40:00",NA,"21.3",21300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543780","UTAHDWQ_WQX-BRI210111-4905070-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905070-0112-4-C/results/911543780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4452","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","09:40:00","MST","2021-01-12 16:40:00",NA,"19.8",19800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543784","UTAHDWQ_WQX-BRI210111-4905070-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905070-0112-4-C/results/911543784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4453","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","10:10:00","MST","2021-01-12 17:10:00",NA,"16.9",16900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543824","UTAHDWQ_WQX-BRI210111-4905090-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905090-0112-4-C/results/911543824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4454","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","10:10:00","MST","2021-01-12 17:10:00",NA,"16.7",16700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543828","UTAHDWQ_WQX-BRI210111-4905090-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905090-0112-4-C/results/911543828/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4455","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","09:00:00","MST","2021-01-12 16:00:00",NA,"0.385",385,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543867","UTAHDWQ_WQX-BRI210111-4905200-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905200-0112-4-C/results/911543867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4456","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","09:00:00","MST","2021-01-12 16:00:00",NA,"0.639",639,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543871","UTAHDWQ_WQX-BRI210111-4905200-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905200-0112-4-C/results/911543871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4457","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","09:10:00","MST","2021-01-12 16:10:00",NA,"0.319",319,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543876","UTAHDWQ_WQX-BRI210111-4905301-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905301-0112-4-C/results/911543876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4458","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","09:10:00","MST","2021-01-12 16:10:00",NA,"0.313",313,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543880","UTAHDWQ_WQX-BRI210111-4905301-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905301-0112-4-C/results/911543880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4459","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","11:30:00","MST","2021-01-12 18:30:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543885","UTAHDWQ_WQX-BRI210111-4905400-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905400-0112-4-C/results/911543885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4460","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","11:30:00","MST","2021-01-12 18:30:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543889","UTAHDWQ_WQX-BRI210111-4905400-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905400-0112-4-C/results/911543889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4461","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","13:20:00","MST","2021-01-12 20:20:00",NA,"0.398",398,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543894","UTAHDWQ_WQX-BRI210111-4905440-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905440-0112-4-C/results/911543894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4462","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","13:20:00","MST","2021-01-12 20:20:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543898","UTAHDWQ_WQX-BRI210111-4905440-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905440-0112-4-C/results/911543898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4463","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","13:30:00","MST","2021-01-12 20:30:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543903","UTAHDWQ_WQX-BRI210111-4905441-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905441-0112-4-C/results/911543903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4464","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","13:30:00","MST","2021-01-12 20:30:00",NA,"0.331",331,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543907","UTAHDWQ_WQX-BRI210111-4905441-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905441-0112-4-C/results/911543907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4465","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","09:55:00","MST","2021-01-13 16:55:00",NA,"8.61",8610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543913","UTAHDWQ_WQX-BRI210111-4905520-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905520-0113-4-C/results/911543913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4466","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","09:55:00","MST","2021-01-13 16:55:00",NA,"7.25",7250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543917","UTAHDWQ_WQX-BRI210111-4905520-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905520-0113-4-C/results/911543917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4467","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","09:20:00","MST","2021-01-13 16:20:00",NA,"39.9",39900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543923","UTAHDWQ_WQX-BRI210111-4905540-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905540-0113-4-C/results/911543923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4468","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","09:20:00","MST","2021-01-13 16:20:00",NA,"41",41000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543927","UTAHDWQ_WQX-BRI210111-4905540-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905540-0113-4-C/results/911543927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4469","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","11:40:00","MST","2021-01-13 18:40:00",NA,"0.693",693,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543933","UTAHDWQ_WQX-BRI210111-4905580-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905580-0113-4-C/results/911543933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4470","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","11:40:00","MST","2021-01-13 18:40:00",NA,"0.77",770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543937","UTAHDWQ_WQX-BRI210111-4905580-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905580-0113-4-C/results/911543937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4471","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","11:20:00","MST","2021-01-13 18:20:00",NA,"0.674",674,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543942","UTAHDWQ_WQX-BRI210111-4905590-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905590-0113-4-C/results/911543942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4472","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","11:20:00","MST","2021-01-13 18:20:00",NA,"0.779",779,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543946","UTAHDWQ_WQX-BRI210111-4905590-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905590-0113-4-C/results/911543946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4473","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","11:10:00","MST","2021-01-13 18:10:00",NA,"0.482",482,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543951","UTAHDWQ_WQX-BRI210111-4905625-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Little Bear River at 4700 S xing below RR bridge","River/Stream",NA,"41.6468700000",41.64687,"-111.9224400000",-111.92244,"OK","16010203","UTAHDWQ_WQX-4905625",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6468700000","-111.9224400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905625-0113-4-C/results/911543951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4474","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","11:10:00","MST","2021-01-13 18:10:00",NA,"0.56",560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543955","UTAHDWQ_WQX-BRI210111-4905625-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Little Bear River at 4700 S xing below RR bridge","River/Stream",NA,"41.6468700000",41.64687,"-111.9224400000",-111.92244,"OK","16010203","UTAHDWQ_WQX-4905625",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6468700000","-111.9224400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905625-0113-4-C/results/911543955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4475","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","10:40:00","MST","2021-01-13 17:40:00",NA,"0.47",470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543960","UTAHDWQ_WQX-BRI210111-4905630-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905630-0113-4-C/results/911543960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4476","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","10:40:00","MST","2021-01-13 17:40:00",NA,"0.514",514,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543964","UTAHDWQ_WQX-BRI210111-4905630-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905630-0113-4-C/results/911543964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4477","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","10:50:00","MST","2021-01-13 17:50:00",NA,"0.457",457,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543969","UTAHDWQ_WQX-BRI210111-4905631-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905631-0113-4-C/results/911543969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4478","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","10:50:00","MST","2021-01-13 17:50:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543973","UTAHDWQ_WQX-BRI210111-4905631-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905631-0113-4-C/results/911543973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4479","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","10:20:00","MST","2021-01-13 17:20:00",NA,"0.43",430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543978","UTAHDWQ_WQX-BRI210111-4905650-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905650-0113-4-C/results/911543978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4480","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","10:20:00","MST","2021-01-13 17:20:00",NA,"0.543",543,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543982","UTAHDWQ_WQX-BRI210111-4905650-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905650-0113-4-C/results/911543982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4481","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","13:40:00","MST","2021-01-12 20:40:00",NA,"0.713",713,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543987","UTAHDWQ_WQX-BRI210111-4905670-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905670-0112-4-C/results/911543987/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4482","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","13:40:00","MST","2021-01-12 20:40:00",NA,"0.665",665,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543991","UTAHDWQ_WQX-BRI210111-4905670-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905670-0112-4-C/results/911543991/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4483","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","14:00:00","MST","2021-01-12 21:00:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911543996","UTAHDWQ_WQX-BRI210111-4905700-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905700-0112-4-C/results/911543996/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4484","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","14:00:00","MST","2021-01-12 21:00:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544000","UTAHDWQ_WQX-BRI210111-4905700-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905700-0112-4-C/results/911544000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4485","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","14:50:00","MST","2021-01-12 21:50:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544005","UTAHDWQ_WQX-BRI210111-4905740-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905740-0112-4-C/results/911544005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4486","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","14:50:00","MST","2021-01-12 21:50:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544009","UTAHDWQ_WQX-BRI210111-4905740-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905740-0112-4-C/results/911544009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4487","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","14:10:00","MST","2021-01-12 21:10:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544014","UTAHDWQ_WQX-BRI210111-4905750-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905750-0112-4-C/results/911544014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4488","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","14:10:00","MST","2021-01-12 21:10:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544018","UTAHDWQ_WQX-BRI210111-4905750-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905750-0112-4-C/results/911544018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4489","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","14:30:00","MST","2021-01-12 21:30:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544023","UTAHDWQ_WQX-BRI210111-4905780-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905780-0112-4-C/results/911544023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4490","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","14:30:00","MST","2021-01-12 21:30:00",NA,"0.262",262,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544027","UTAHDWQ_WQX-BRI210111-4905780-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905780-0112-4-C/results/911544027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4491","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-13","11:00:00","MST","2021-01-13 18:00:00",NA,"4.03",4030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544032","UTAHDWQ_WQX-BRI210111-4905940-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905940-0113-4-C/results/911544032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4492","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-13","11:00:00","MST","2021-01-13 18:00:00",NA,"4.13",4130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544036","UTAHDWQ_WQX-BRI210111-4905940-0113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905940-0113-4-C/results/911544036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4493","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","12:50:00","MST","2021-01-12 19:50:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544059","UTAHDWQ_WQX-BRI210111-4906400-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4906400-0112-4-C/results/911544059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4494","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","12:50:00","MST","2021-01-12 19:50:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544063","UTAHDWQ_WQX-BRI210111-4906400-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4906400-0112-4-C/results/911544063/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4495","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","11:10:00","MST","2021-01-11 18:10:00",NA,"0.375",375,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544068","UTAHDWQ_WQX-BRI210111-4908130-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908130-0111-4-C/results/911544068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4496","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","11:10:00","MST","2021-01-11 18:10:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544072","UTAHDWQ_WQX-BRI210111-4908130-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908130-0111-4-C/results/911544072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4497","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","12:45:00","MST","2021-01-11 19:45:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544077","UTAHDWQ_WQX-BRI210111-4908160-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908160-0111-4-C/results/911544077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4498","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","12:45:00","MST","2021-01-11 19:45:00",NA,"0.307",307,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544081","UTAHDWQ_WQX-BRI210111-4908160-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908160-0111-4-C/results/911544081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4499","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","12:00:00","MST","2021-01-11 19:00:00",NA,"0.307",307,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544086","UTAHDWQ_WQX-BRI210111-4908165-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908165-0111-4-C/results/911544086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4500","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","12:00:00","MST","2021-01-11 19:00:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544090","UTAHDWQ_WQX-BRI210111-4908165-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908165-0111-4-C/results/911544090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4501","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","12:30:00","MST","2021-01-11 19:30:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544095","UTAHDWQ_WQX-BRI210111-4908168-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908168-0111-4-C/results/911544095/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4502","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","12:30:00","MST","2021-01-11 19:30:00",NA,"0.331",331,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544099","UTAHDWQ_WQX-BRI210111-4908168-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908168-0111-4-C/results/911544099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4503","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","12:15:00","MST","2021-01-11 19:15:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544104","UTAHDWQ_WQX-BRI210111-4908170-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908170-0111-4-C/results/911544104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4504","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","12:15:00","MST","2021-01-11 19:15:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544108","UTAHDWQ_WQX-BRI210111-4908170-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908170-0111-4-C/results/911544108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4505","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","10:30:00","MST","2021-01-11 17:30:00",NA,"0.571",571,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544113","UTAHDWQ_WQX-BRI210111-4908350-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908350-0111-4-C/results/911544113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4506","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","10:30:00","MST","2021-01-11 17:30:00",NA,"0.538",538,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544117","UTAHDWQ_WQX-BRI210111-4908350-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908350-0111-4-C/results/911544117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4507","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-12","08:50:00","MST","2021-01-12 15:50:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544122","UTAHDWQ_WQX-BRI210111-4908744-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908744-0112-4-C/results/911544122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4508","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-12","08:50:00","MST","2021-01-12 15:50:00",NA,"0.422",422,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544126","UTAHDWQ_WQX-BRI210111-4908744-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908744-0112-4-C/results/911544126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4509","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","14:10:00","MST","2021-01-11 21:10:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544131","UTAHDWQ_WQX-BRI210111-4908745-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908745-0111-4-C/results/911544131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4510","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","14:10:00","MST","2021-01-11 21:10:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544135","UTAHDWQ_WQX-BRI210111-4908745-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908745-0111-4-C/results/911544135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4511","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","09:50:00","MST","2021-01-11 16:50:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544140","UTAHDWQ_WQX-BRI210111-5906850-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-5906850-0111-4-C/results/911544140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4512","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","09:50:00","MST","2021-01-11 16:50:00",NA,"0.438",438,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544144","UTAHDWQ_WQX-BRI210111-5906850-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-5906850-0111-4-C/results/911544144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4513","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-11","09:15:00","MST","2021-01-11 16:15:00",NA,"8.76",8760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544150","UTAHDWQ_WQX-BRI210111-5984855-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-5984855-0111-4-C/results/911544150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4514","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-11","09:15:00","MST","2021-01-11 16:15:00",NA,"7.76",7760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544154","UTAHDWQ_WQX-BRI210111-5984855-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-5984855-0111-4-C/results/911544154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4515","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","17:45:00","MST","2021-02-17 00:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544159","UTAHDWQ_WQX-BRI210208-4900751-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0216-4-C/results/911544159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4516","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","17:45:00","MST","2021-02-17 00:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544163","UTAHDWQ_WQX-BRI210208-4900751-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0216-4-C/results/911544163/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4517","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","17:40:00","MST","2021-02-23 00:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544202","UTAHDWQ_WQX-BRI210208-4900751-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0222-4-C/results/911544202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4518","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","17:40:00","MST","2021-02-23 00:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544206","UTAHDWQ_WQX-BRI210208-4900751-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0222-4-C/results/911544206/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4519","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","13:30:00","MST","2021-02-23 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544228","UTAHDWQ_WQX-BRI210208-4900751-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0223-4-C/results/911544228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4520","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","13:30:00","MST","2021-02-23 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544232","UTAHDWQ_WQX-BRI210208-4900751-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0223-4-C/results/911544232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4521","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","11:40:00","MST","2021-02-16 18:40:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544254","UTAHDWQ_WQX-BRI210208-4901050-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901050-0216-4-C/results/911544254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4522","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","11:40:00","MST","2021-02-16 18:40:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544258","UTAHDWQ_WQX-BRI210208-4901050-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901050-0216-4-C/results/911544258/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4523","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","11:30:00","MST","2021-02-16 18:30:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544280","UTAHDWQ_WQX-BRI210208-4901100-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901100-0216-4-C/results/911544280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4524","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","11:30:00","MST","2021-02-16 18:30:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544284","UTAHDWQ_WQX-BRI210208-4901100-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901100-0216-4-C/results/911544284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4525","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","10:20:00","MST","2021-02-16 17:20:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544306","UTAHDWQ_WQX-BRI210208-4901180-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901180-0216-4-C/results/911544306/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4526","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","10:20:00","MST","2021-02-16 17:20:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544310","UTAHDWQ_WQX-BRI210208-4901180-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901180-0216-4-C/results/911544310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4527","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","11:00:00","MST","2021-02-16 18:00:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544350","UTAHDWQ_WQX-BRI210208-4901190-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901190-0216-4-C/results/911544350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4528","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","11:00:00","MST","2021-02-16 18:00:00",NA,"0.475",475,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544354","UTAHDWQ_WQX-BRI210208-4901190-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901190-0216-4-C/results/911544354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4529","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","11:10:00","MST","2021-02-16 18:10:00",NA,"2.08",2080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544394","UTAHDWQ_WQX-BRI210208-4901200-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901200-0216-4-C/results/911544394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4530","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","11:10:00","MST","2021-02-16 18:10:00",NA,"1.97",1970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544398","UTAHDWQ_WQX-BRI210208-4901200-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901200-0216-4-C/results/911544398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4531","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","11:20:00","MST","2021-02-16 18:20:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544437","UTAHDWQ_WQX-BRI210208-4901225-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901225-0216-4-C/results/911544437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4532","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","11:20:00","MST","2021-02-16 18:20:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544441","UTAHDWQ_WQX-BRI210208-4901225-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901225-0216-4-C/results/911544441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4533","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","13:00:00","MST","2021-02-16 20:00:00",NA,"6.21",6210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544480","UTAHDWQ_WQX-BRI210208-4901431-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901431-0216-4-C/results/911544480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4534","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","13:00:00","MST","2021-02-16 20:00:00",NA,"5.48",5480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544484","UTAHDWQ_WQX-BRI210208-4901431-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901431-0216-4-C/results/911544484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4535","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","13:10:00","MST","2021-02-16 20:10:00",NA,"7.29",7290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544506","UTAHDWQ_WQX-BRI210208-4901432-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901432-0216-4-C/results/911544506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4536","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","13:10:00","MST","2021-02-16 20:10:00",NA,"7.02",7020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544510","UTAHDWQ_WQX-BRI210208-4901432-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901432-0216-4-C/results/911544510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4537","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","12:50:00","MST","2021-02-16 19:50:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544532","UTAHDWQ_WQX-BRI210208-4901600-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901600-0216-4-C/results/911544532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4538","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","12:50:00","MST","2021-02-16 19:50:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544536","UTAHDWQ_WQX-BRI210208-4901600-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901600-0216-4-C/results/911544536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4539","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","13:30:00","MST","2021-02-16 20:30:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544558","UTAHDWQ_WQX-BRI210208-4901700-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901700-0216-4-C/results/911544558/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4540","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","13:30:00","MST","2021-02-16 20:30:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544562","UTAHDWQ_WQX-BRI210208-4901700-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901700-0216-4-C/results/911544562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4541","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","14:40:00","MST","2021-02-16 21:40:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544584","UTAHDWQ_WQX-BRI210208-4901730-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901730-0216-4-C/results/911544584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4542","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","14:40:00","MST","2021-02-16 21:40:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544588","UTAHDWQ_WQX-BRI210208-4901730-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901730-0216-4-C/results/911544588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4543","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","10:50:00","MST","2021-02-22 17:50:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544610","UTAHDWQ_WQX-BRI210208-4901790-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901790-0222-4-C/results/911544610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4544","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","10:50:00","MST","2021-02-22 17:50:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544614","UTAHDWQ_WQX-BRI210208-4901790-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901790-0222-4-C/results/911544614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4545","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","11:00:00","MST","2021-02-22 18:00:00",NA,"3.4",3400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544636","UTAHDWQ_WQX-BRI210208-4901975-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901975-0222-4-C/results/911544636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4546","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","11:00:00","MST","2021-02-22 18:00:00",NA,"2.86",2860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544640","UTAHDWQ_WQX-BRI210208-4901975-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901975-0222-4-C/results/911544640/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4547","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","11:20:00","MST","2021-02-22 18:20:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544662","UTAHDWQ_WQX-BRI210208-4901980-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901980-0222-4-C/results/911544662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4548","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","11:20:00","MST","2021-02-22 18:20:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544666","UTAHDWQ_WQX-BRI210208-4901980-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901980-0222-4-C/results/911544666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4549","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","12:00:00","MST","2021-02-16 19:00:00",NA,"1.74",1740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544688","UTAHDWQ_WQX-BRI210208-4902000-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902000-0216-4-C/results/911544688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4550","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","12:00:00","MST","2021-02-16 19:00:00",NA,"1.79",1790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544692","UTAHDWQ_WQX-BRI210208-4902000-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902000-0216-4-C/results/911544692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4551","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","12:10:00","MST","2021-02-16 19:10:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544715","UTAHDWQ_WQX-BRI210208-4902040-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902040-0216-4-C/results/911544715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4552","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","12:10:00","MST","2021-02-16 19:10:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544719","UTAHDWQ_WQX-BRI210208-4902040-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902040-0216-4-C/results/911544719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4553","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","12:30:00","MST","2021-02-16 19:30:00",NA,"1.81",1810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544741","UTAHDWQ_WQX-BRI210208-4902050-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902050-0216-4-C/results/911544741/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4554","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","12:30:00","MST","2021-02-16 19:30:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544745","UTAHDWQ_WQX-BRI210208-4902050-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902050-0216-4-C/results/911544745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4555","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","14:00:00","MST","2021-02-16 21:00:00",NA,"1.5",1500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544767","UTAHDWQ_WQX-BRI210208-4902700-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902700-0216-4-C/results/911544767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4556","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","14:00:00","MST","2021-02-16 21:00:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544771","UTAHDWQ_WQX-BRI210208-4902700-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902700-0216-4-C/results/911544771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4557","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","14:15:00","MST","2021-02-16 21:15:00",NA,"17.7",17700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544794","UTAHDWQ_WQX-BRI210208-4902710-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902710-0216-4-C/results/911544794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4558","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","14:15:00","MST","2021-02-16 21:15:00",NA,"15.3",15300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544798","UTAHDWQ_WQX-BRI210208-4902710-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902710-0216-4-C/results/911544798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4559","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","14:30:00","MST","2021-02-16 21:30:00",NA,"0.851",851,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544821","UTAHDWQ_WQX-BRI210208-4902720-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902720-0216-4-C/results/911544821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4560","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","14:30:00","MST","2021-02-16 21:30:00",NA,"0.828",828,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544825","UTAHDWQ_WQX-BRI210208-4902720-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902720-0216-4-C/results/911544825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4561","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","15:00:00","MST","2021-02-16 22:00:00",NA,"0.608",608,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544847","UTAHDWQ_WQX-BRI210208-4902900-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902900-0216-4-C/results/911544847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4562","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","15:00:00","MST","2021-02-16 22:00:00",NA,"0.551",551,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544851","UTAHDWQ_WQX-BRI210208-4902900-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902900-0216-4-C/results/911544851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4563","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","15:40:00","MST","2021-02-16 22:40:00",NA,"0.52",520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544873","UTAHDWQ_WQX-BRI210208-4902940-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902940-0216-4-C/results/911544873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4564","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","15:40:00","MST","2021-02-16 22:40:00",NA,"0.516",516,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544877","UTAHDWQ_WQX-BRI210208-4902940-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902940-0216-4-C/results/911544877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4565","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","15:45:00","MST","2021-02-16 22:45:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544899","UTAHDWQ_WQX-BRI210208-4902941-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902941-0216-4-C/results/911544899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4566","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","15:45:00","MST","2021-02-16 22:45:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544903","UTAHDWQ_WQX-BRI210208-4902941-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902941-0216-4-C/results/911544903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4567","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","14:40:00","MST","2021-02-22 21:40:00",NA,"4.88",4880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544925","UTAHDWQ_WQX-BRI210208-4903060-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903060-0222-4-C/results/911544925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4568","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","14:40:00","MST","2021-02-22 21:40:00",NA,"5.26",5260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544929","UTAHDWQ_WQX-BRI210208-4903060-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903060-0222-4-C/results/911544929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4569","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","14:30:00","MST","2021-02-22 21:30:00",NA,"3.57",3570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544951","UTAHDWQ_WQX-BRI210208-4903080-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903080-0222-4-C/results/911544951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4570","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","14:30:00","MST","2021-02-22 21:30:00",NA,"3.64",3640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544955","UTAHDWQ_WQX-BRI210208-4903080-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903080-0222-4-C/results/911544955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4571","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","15:00:00","MST","2021-02-22 22:00:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544977","UTAHDWQ_WQX-BRI210208-4903190-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903190-0222-4-C/results/911544977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4572","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","15:00:00","MST","2021-02-22 22:00:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911544981","UTAHDWQ_WQX-BRI210208-4903190-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903190-0222-4-C/results/911544981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4573","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","15:10:00","MST","2021-02-22 22:10:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545003","UTAHDWQ_WQX-BRI210208-4903191-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903191-0222-4-C/results/911545003/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4574","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","15:10:00","MST","2021-02-22 22:10:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545007","UTAHDWQ_WQX-BRI210208-4903191-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903191-0222-4-C/results/911545007/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4575","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","15:20:00","MST","2021-02-22 22:20:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545029","UTAHDWQ_WQX-BRI210208-4903200-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903200-0222-4-C/results/911545029/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4576","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","15:20:00","MST","2021-02-22 22:20:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545033","UTAHDWQ_WQX-BRI210208-4903200-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903200-0222-4-C/results/911545033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4577","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","11:45:00","MST","2021-02-22 18:45:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545055","UTAHDWQ_WQX-BRI210208-4903260-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903260-0222-4-C/results/911545055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4578","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","11:45:00","MST","2021-02-22 18:45:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545059","UTAHDWQ_WQX-BRI210208-4903260-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903260-0222-4-C/results/911545059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4579","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","13:40:00","MST","2021-02-22 20:40:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545081","UTAHDWQ_WQX-BRI210208-4903400-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903400-0222-4-C/results/911545081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4580","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","13:40:00","MST","2021-02-22 20:40:00",NA,"1.47",1470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545085","UTAHDWQ_WQX-BRI210208-4903400-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903400-0222-4-C/results/911545085/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4581","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","13:20:00","MST","2021-02-22 20:20:00",NA,"2.09",2090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545107","UTAHDWQ_WQX-BRI210208-4903500-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903500-0222-4-C/results/911545107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4582","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","13:20:00","MST","2021-02-22 20:20:00",NA,"2.12",2120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545111","UTAHDWQ_WQX-BRI210208-4903500-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903500-0222-4-C/results/911545111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4583","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","13:30:00","MST","2021-02-22 20:30:00",NA,"2.14",2140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545133","UTAHDWQ_WQX-BRI210208-4903501-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903501-0222-4-C/results/911545133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4584","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","13:30:00","MST","2021-02-22 20:30:00",NA,"2.1",2100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545137","UTAHDWQ_WQX-BRI210208-4903501-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903501-0222-4-C/results/911545137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4585","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","13:10:00","MST","2021-02-22 20:10:00",NA,"0.318",318,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545159","UTAHDWQ_WQX-BRI210208-4903504-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903504-0222-4-C/results/911545159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4586","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","13:10:00","MST","2021-02-22 20:10:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545163","UTAHDWQ_WQX-BRI210208-4903504-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903504-0222-4-C/results/911545163/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4587","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","12:50:00","MST","2021-02-22 19:50:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545185","UTAHDWQ_WQX-BRI210208-4903507-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903507-0222-4-C/results/911545185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4588","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","12:50:00","MST","2021-02-22 19:50:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545189","UTAHDWQ_WQX-BRI210208-4903507-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903507-0222-4-C/results/911545189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4589","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","12:40:00","MST","2021-02-22 19:40:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545211","UTAHDWQ_WQX-BRI210208-4903510-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903510-0222-4-C/results/911545211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4590","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","12:40:00","MST","2021-02-22 19:40:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545215","UTAHDWQ_WQX-BRI210208-4903510-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903510-0222-4-C/results/911545215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4591","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","10:30:00","MST","2021-02-23 17:30:00",NA,"1.98",1980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545237","UTAHDWQ_WQX-BRI210208-4903699-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903699-0223-4-C/results/911545237/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4592","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","10:30:00","MST","2021-02-23 17:30:00",NA,"1.87",1870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545241","UTAHDWQ_WQX-BRI210208-4903699-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903699-0223-4-C/results/911545241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4593","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","10:15:00","MST","2021-02-23 17:15:00",NA,"21.1",21100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545264","UTAHDWQ_WQX-BRI210208-4903723-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903723-0223-4-C/results/911545264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4594","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","10:15:00","MST","2021-02-23 17:15:00",NA,"21.1",21100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545268","UTAHDWQ_WQX-BRI210208-4903723-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903723-0223-4-C/results/911545268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4595","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","11:50:00","MST","2021-02-23 18:50:00",NA,"2.18",2180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545291","UTAHDWQ_WQX-BRI210208-4903770-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903770-0223-4-C/results/911545291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4596","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","11:50:00","MST","2021-02-23 18:50:00",NA,"2.24",2240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545295","UTAHDWQ_WQX-BRI210208-4903770-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903770-0223-4-C/results/911545295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4597","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","09:45:00","MST","2021-02-23 16:45:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545343","UTAHDWQ_WQX-BRI210208-4903820-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903820-0223-4-C/results/911545343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4598","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","09:45:00","MST","2021-02-23 16:45:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545347","UTAHDWQ_WQX-BRI210208-4903820-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903820-0223-4-C/results/911545347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4599","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","10:50:00","MST","2021-02-23 17:50:00",NA,"1.77",1770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545370","UTAHDWQ_WQX-BRI210208-4904240-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904240-0223-4-C/results/911545370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4600","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","10:50:00","MST","2021-02-23 17:50:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545374","UTAHDWQ_WQX-BRI210208-4904240-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904240-0223-4-C/results/911545374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4601","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","11:00:00","MST","2021-02-23 18:00:00",NA,"1.83",1830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545396","UTAHDWQ_WQX-BRI210208-4904241-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904241-0223-4-C/results/911545396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4602","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","11:00:00","MST","2021-02-23 18:00:00",NA,"1.84",1840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545400","UTAHDWQ_WQX-BRI210208-4904241-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904241-0223-4-C/results/911545400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4603","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","10:00:00","MST","2021-02-23 17:00:00",NA,"1.85",1850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545422","UTAHDWQ_WQX-BRI210208-4904250-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904250-0223-4-C/results/911545422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4604","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","10:00:00","MST","2021-02-23 17:00:00",NA,"1.9",1900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545426","UTAHDWQ_WQX-BRI210208-4904250-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904250-0223-4-C/results/911545426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4605","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","12:00:00","MST","2021-02-23 19:00:00",NA,"0.902",902,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545448","UTAHDWQ_WQX-BRI210208-4904310-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904310-0223-4-C/results/911545448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4606","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","12:00:00","MST","2021-02-23 19:00:00",NA,"0.987",987,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545452","UTAHDWQ_WQX-BRI210208-4904310-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904310-0223-4-C/results/911545452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4607","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","11:40:00","MST","2021-02-23 18:40:00",NA,"2.08",2080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545474","UTAHDWQ_WQX-BRI210208-4904340-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904340-0223-4-C/results/911545474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4608","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","11:40:00","MST","2021-02-23 18:40:00",NA,"1.83",1830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545478","UTAHDWQ_WQX-BRI210208-4904340-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904340-0223-4-C/results/911545478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4609","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","11:55:00","MST","2021-02-22 18:55:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545500","UTAHDWQ_WQX-BRI210208-4904490-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904490-0222-4-C/results/911545500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4610","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","11:55:00","MST","2021-02-22 18:55:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545504","UTAHDWQ_WQX-BRI210208-4904490-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904490-0222-4-C/results/911545504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4611","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","12:10:00","MST","2021-02-22 19:10:00",NA,"3.33",3330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545526","UTAHDWQ_WQX-BRI210208-4904510-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904510-0222-4-C/results/911545526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4612","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","12:10:00","MST","2021-02-22 19:10:00",NA,"3.23",3230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545530","UTAHDWQ_WQX-BRI210208-4904510-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904510-0222-4-C/results/911545530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4613","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","14:15:00","MST","2021-02-22 21:15:00",NA,"4.03",4030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545552","UTAHDWQ_WQX-BRI210208-4904720-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904720-0222-4-C/results/911545552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4614","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","14:15:00","MST","2021-02-22 21:15:00",NA,"3.86",3860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545556","UTAHDWQ_WQX-BRI210208-4904720-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904720-0222-4-C/results/911545556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4615","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","15:15:00","MST","2021-02-16 22:15:00",NA,"0.51",510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545630","UTAHDWQ_WQX-BRI210208-4908745-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908745-0216-4-C/results/911545630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4616","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","15:15:00","MST","2021-02-16 22:15:00",NA,"0.581",581,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545634","UTAHDWQ_WQX-BRI210208-4908745-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908745-0216-4-C/results/911545634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4617","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","10:00:00","MST","2021-02-16 17:00:00",NA,"4.2",4200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545657","UTAHDWQ_WQX-BRI210208-5984855-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-5984855-0216-4-C/results/911545657/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4618","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","10:00:00","MST","2021-02-16 17:00:00",NA,"3.85",3850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545661","UTAHDWQ_WQX-BRI210208-5984855-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-5984855-0216-4-C/results/911545661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4619","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","14:40:00","MST","2021-03-10 21:40:00",NA,"0.89",890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545683","UTAHDWQ_WQX-BRI210308-4900470-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900470-0310-4-C/results/911545683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4620","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","14:40:00","MST","2021-03-10 21:40:00",NA,"0.879",879,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545687","UTAHDWQ_WQX-BRI210308-4900470-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900470-0310-4-C/results/911545687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4621","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","15:00:00","MST","2021-03-10 22:00:00",NA,"0.535",535,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545692","UTAHDWQ_WQX-BRI210308-4900510-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900510-0310-4-C/results/911545692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4622","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","15:00:00","MST","2021-03-10 22:00:00",NA,"0.524",524,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545696","UTAHDWQ_WQX-BRI210308-4900510-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900510-0310-4-C/results/911545696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4623","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","15:05:00","MST","2021-03-10 22:05:00",NA,"0.526",526,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545701","UTAHDWQ_WQX-BRI210308-4900511-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900511-0310-4-C/results/911545701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4624","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","15:05:00","MST","2021-03-10 22:05:00",NA,"0.531",531,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545705","UTAHDWQ_WQX-BRI210308-4900511-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900511-0310-4-C/results/911545705/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4625","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","16:00:00","MST","2021-03-08 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545710","UTAHDWQ_WQX-BRI210308-4900751-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0308-4-C/results/911545710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4626","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","16:00:00","MST","2021-03-08 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545714","UTAHDWQ_WQX-BRI210308-4900751-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0308-4-C/results/911545714/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4627","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","16:00:00","MST","2021-03-09 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545753","UTAHDWQ_WQX-BRI210308-4900751-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0309-4-C/results/911545753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4628","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","16:00:00","MST","2021-03-09 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545757","UTAHDWQ_WQX-BRI210308-4900751-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0309-4-C/results/911545757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4629","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","15:00:00","MST","2021-03-10 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545762","UTAHDWQ_WQX-BRI210308-4900751-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0310-4-C/results/911545762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4630","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","15:00:00","MST","2021-03-10 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545766","UTAHDWQ_WQX-BRI210308-4900751-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0310-4-C/results/911545766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4631","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","16:30:00","MST","2021-03-08 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545771","UTAHDWQ_WQX-BRI210308-4900753-0308-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0308-4%2F1-C/results/911545771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4632","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","16:30:00","MST","2021-03-08 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545775","UTAHDWQ_WQX-BRI210308-4900753-0308-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0308-4%2F1-C/results/911545775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4633","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","08:00:00","MST","2021-03-10 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545780","UTAHDWQ_WQX-BRI210308-4900753-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0308-4-C/results/911545780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4634","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","08:00:00","MST","2021-03-10 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545784","UTAHDWQ_WQX-BRI210308-4900753-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0308-4-C/results/911545784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4635","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","16:30:00","MST","2021-03-10 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545823","UTAHDWQ_WQX-BRI210308-4900753-0310-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0310-4%2F1-C/results/911545823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4636","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","16:30:00","MST","2021-03-10 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545827","UTAHDWQ_WQX-BRI210308-4900753-0310-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0310-4%2F1-C/results/911545827/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4637","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","10:20:00","MST","2021-03-08 17:20:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545832","UTAHDWQ_WQX-BRI210308-4901050-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901050-0308-4-C/results/911545832/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4638","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","10:20:00","MST","2021-03-08 17:20:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545836","UTAHDWQ_WQX-BRI210308-4901050-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901050-0308-4-C/results/911545836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4639","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","10:15:00","MST","2021-03-08 17:15:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545841","UTAHDWQ_WQX-BRI210308-4901100-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901100-0308-4-C/results/911545841/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4640","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","10:15:00","MST","2021-03-08 17:15:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545845","UTAHDWQ_WQX-BRI210308-4901100-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901100-0308-4-C/results/911545845/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4641","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","09:00:00","MST","2021-03-08 16:00:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545850","UTAHDWQ_WQX-BRI210308-4901180-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901180-0308-4-C/results/911545850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4642","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","09:00:00","MST","2021-03-08 16:00:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545854","UTAHDWQ_WQX-BRI210308-4901180-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901180-0308-4-C/results/911545854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4643","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","09:40:00","MST","2021-03-08 16:40:00",NA,"0.464",464,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545894","UTAHDWQ_WQX-BRI210308-4901190-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901190-0308-4-C/results/911545894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4644","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","09:40:00","MST","2021-03-08 16:40:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545898","UTAHDWQ_WQX-BRI210308-4901190-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901190-0308-4-C/results/911545898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4645","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","09:45:00","MST","2021-03-08 16:45:00",NA,"1.94",1940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545938","UTAHDWQ_WQX-BRI210308-4901200-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901200-0308-4-C/results/911545938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4646","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","09:45:00","MST","2021-03-08 16:45:00",NA,"2.21",2210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545942","UTAHDWQ_WQX-BRI210308-4901200-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901200-0308-4-C/results/911545942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4647","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","10:00:00","MST","2021-03-08 17:00:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545981","UTAHDWQ_WQX-BRI210308-4901225-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901225-0308-4-C/results/911545981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4648","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","10:00:00","MST","2021-03-08 17:00:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911545985","UTAHDWQ_WQX-BRI210308-4901225-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901225-0308-4-C/results/911545985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4649","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","12:00:00","MST","2021-03-08 19:00:00",NA,"6.81",6810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546024","UTAHDWQ_WQX-BRI210308-4901431-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901431-0308-4-C/results/911546024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4650","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","12:00:00","MST","2021-03-08 19:00:00",NA,"5.8",5800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546028","UTAHDWQ_WQX-BRI210308-4901431-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901431-0308-4-C/results/911546028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4651","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","12:10:00","MST","2021-03-08 19:10:00",NA,"6.88",6880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546033","UTAHDWQ_WQX-BRI210308-4901432-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901432-0308-4-C/results/911546033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4652","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","12:10:00","MST","2021-03-08 19:10:00",NA,"7.04",7040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546037","UTAHDWQ_WQX-BRI210308-4901432-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901432-0308-4-C/results/911546037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4653","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","11:50:00","MST","2021-03-08 18:50:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546042","UTAHDWQ_WQX-BRI210308-4901600-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901600-0308-4-C/results/911546042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4654","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","11:50:00","MST","2021-03-08 18:50:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546046","UTAHDWQ_WQX-BRI210308-4901600-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901600-0308-4-C/results/911546046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4655","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","12:20:00","MST","2021-03-08 19:20:00",NA,"1.62",1620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546051","UTAHDWQ_WQX-BRI210308-4901700-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901700-0308-4-C/results/911546051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4656","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","12:20:00","MST","2021-03-08 19:20:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546055","UTAHDWQ_WQX-BRI210308-4901700-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901700-0308-4-C/results/911546055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4657","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","13:40:00","MST","2021-03-08 20:40:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546060","UTAHDWQ_WQX-BRI210308-4901730-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901730-0308-4-C/results/911546060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4658","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","13:40:00","MST","2021-03-08 20:40:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546064","UTAHDWQ_WQX-BRI210308-4901730-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901730-0308-4-C/results/911546064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4659","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","10:00:00","MST","2021-03-09 17:00:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546069","UTAHDWQ_WQX-BRI210308-4901790-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901790-0309-4-C/results/911546069/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4660","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","10:00:00","MST","2021-03-09 17:00:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546073","UTAHDWQ_WQX-BRI210308-4901790-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901790-0309-4-C/results/911546073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4661","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","10:10:00","MST","2021-03-09 17:10:00",NA,"2.71",2710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546078","UTAHDWQ_WQX-BRI210308-4901975-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901975-0309-4-C/results/911546078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4662","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","10:10:00","MST","2021-03-09 17:10:00",NA,"2.68",2680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546082","UTAHDWQ_WQX-BRI210308-4901975-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901975-0309-4-C/results/911546082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4663","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","10:10:00","MST","2021-03-09 17:10:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546087","UTAHDWQ_WQX-BRI210308-4901980-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901980-0309-4-C/results/911546087/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4664","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","10:10:00","MST","2021-03-09 17:10:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546091","UTAHDWQ_WQX-BRI210308-4901980-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901980-0309-4-C/results/911546091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4665","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","10:50:00","MST","2021-03-08 17:50:00",NA,"2.74",2740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546096","UTAHDWQ_WQX-BRI210308-4902000-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902000-0308-4-C/results/911546096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4666","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","10:50:00","MST","2021-03-08 17:50:00",NA,"2.89",2890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546100","UTAHDWQ_WQX-BRI210308-4902000-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902000-0308-4-C/results/911546100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4667","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","11:10:00","MST","2021-03-08 18:10:00",NA,"1.92",1920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546106","UTAHDWQ_WQX-BRI210308-4902040-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902040-0308-4-C/results/911546106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4668","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","11:10:00","MST","2021-03-08 18:10:00",NA,"2.17",2170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546110","UTAHDWQ_WQX-BRI210308-4902040-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902040-0308-4-C/results/911546110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4669","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","11:30:00","MST","2021-03-08 18:30:00",NA,"1.84",1840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546115","UTAHDWQ_WQX-BRI210308-4902050-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902050-0308-4-C/results/911546115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4670","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","11:30:00","MST","2021-03-08 18:30:00",NA,"1.93",1930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546119","UTAHDWQ_WQX-BRI210308-4902050-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902050-0308-4-C/results/911546119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4671","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","12:45:00","MST","2021-03-08 19:45:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546124","UTAHDWQ_WQX-BRI210308-4902700-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902700-0308-4-C/results/911546124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4672","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","12:45:00","MST","2021-03-08 19:45:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546128","UTAHDWQ_WQX-BRI210308-4902700-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902700-0308-4-C/results/911546128/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4673","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","13:00:00","MST","2021-03-08 20:00:00",NA,"13.9",13900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546134","UTAHDWQ_WQX-BRI210308-4902710-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902710-0308-4-C/results/911546134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4674","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","13:00:00","MST","2021-03-08 20:00:00",NA,"13",13000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546138","UTAHDWQ_WQX-BRI210308-4902710-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902710-0308-4-C/results/911546138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4675","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","13:20:00","MST","2021-03-08 20:20:00",NA,"0.979",979,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546144","UTAHDWQ_WQX-BRI210308-4902720-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902720-0308-4-C/results/911546144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4676","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","13:20:00","MST","2021-03-08 20:20:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546148","UTAHDWQ_WQX-BRI210308-4902720-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902720-0308-4-C/results/911546148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4677","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","14:00:00","MST","2021-03-08 21:00:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546153","UTAHDWQ_WQX-BRI210308-4902900-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902900-0308-4-C/results/911546153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4678","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","14:00:00","MST","2021-03-08 21:00:00",NA,"0.781",781,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546157","UTAHDWQ_WQX-BRI210308-4902900-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902900-0308-4-C/results/911546157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4679","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","14:50:00","MST","2021-03-08 21:50:00",NA,"0.801",801,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546162","UTAHDWQ_WQX-BRI210308-4902940-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902940-0308-4-C/results/911546162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4680","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","14:50:00","MST","2021-03-08 21:50:00",NA,"0.779",779,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546166","UTAHDWQ_WQX-BRI210308-4902940-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902940-0308-4-C/results/911546166/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4681","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","15:00:00","MST","2021-03-08 22:00:00",NA,"0.699",699,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546171","UTAHDWQ_WQX-BRI210308-4902941-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902941-0308-4-C/results/911546171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4682","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","15:00:00","MST","2021-03-08 22:00:00",NA,"0.604",604,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546175","UTAHDWQ_WQX-BRI210308-4902941-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902941-0308-4-C/results/911546175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4683","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","13:40:00","MST","2021-03-09 20:40:00",NA,"3.09",3090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546180","UTAHDWQ_WQX-BRI210308-4903030-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903030-0309-4-C/results/911546180/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4684","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","13:40:00","MST","2021-03-09 20:40:00",NA,"3.09",3090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546184","UTAHDWQ_WQX-BRI210308-4903030-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903030-0309-4-C/results/911546184/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4685","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","13:45:00","MST","2021-03-09 20:45:00",NA,"4.46",4460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546189","UTAHDWQ_WQX-BRI210308-4903060-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903060-0309-4-C/results/911546189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4686","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","13:45:00","MST","2021-03-09 20:45:00",NA,"4.36",4360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546193","UTAHDWQ_WQX-BRI210308-4903060-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903060-0309-4-C/results/911546193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4687","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","13:40:00","MST","2021-03-09 20:40:00",NA,"4.15",4150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546198","UTAHDWQ_WQX-BRI210308-4903080-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903080-0309-4-C/results/911546198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4688","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","13:40:00","MST","2021-03-09 20:40:00",NA,"4.44",4440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546202","UTAHDWQ_WQX-BRI210308-4903080-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903080-0309-4-C/results/911546202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4689","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","14:15:00","MST","2021-03-09 21:15:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546207","UTAHDWQ_WQX-BRI210308-4903190-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903190-0309-4-C/results/911546207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4690","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","14:15:00","MST","2021-03-09 21:15:00",NA,"1.88",1880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546211","UTAHDWQ_WQX-BRI210308-4903190-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903190-0309-4-C/results/911546211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4691","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","14:20:00","MST","2021-03-09 21:20:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546216","UTAHDWQ_WQX-BRI210308-4903191-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903191-0309-4-C/results/911546216/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4692","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","14:20:00","MST","2021-03-09 21:20:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546220","UTAHDWQ_WQX-BRI210308-4903191-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903191-0309-4-C/results/911546220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4693","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","14:40:00","MST","2021-03-09 21:40:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546225","UTAHDWQ_WQX-BRI210308-4903200-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903200-0309-4-C/results/911546225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4694","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","14:40:00","MST","2021-03-09 21:40:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546229","UTAHDWQ_WQX-BRI210308-4903200-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903200-0309-4-C/results/911546229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4695","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","10:20:00","MST","2021-03-09 17:20:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546234","UTAHDWQ_WQX-BRI210308-4903260-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903260-0309-4-C/results/911546234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4696","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","10:20:00","MST","2021-03-09 17:20:00",NA,"1.59",1590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546238","UTAHDWQ_WQX-BRI210308-4903260-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903260-0309-4-C/results/911546238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4697","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","12:30:00","MST","2021-03-09 19:30:00",NA,"1.62",1620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546243","UTAHDWQ_WQX-BRI210308-4903400-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903400-0309-4-C/results/911546243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4698","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","12:30:00","MST","2021-03-09 19:30:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546247","UTAHDWQ_WQX-BRI210308-4903400-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903400-0309-4-C/results/911546247/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4699","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","12:30:00","MST","2021-03-09 19:30:00",NA,"1.75",1750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546252","UTAHDWQ_WQX-BRI210308-4903500-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903500-0309-4-C/results/911546252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4700","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","12:30:00","MST","2021-03-09 19:30:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546256","UTAHDWQ_WQX-BRI210308-4903500-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903500-0309-4-C/results/911546256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4701","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","12:35:00","MST","2021-03-09 19:35:00",NA,"1.68",1680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546261","UTAHDWQ_WQX-BRI210308-4903501-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903501-0309-4-C/results/911546261/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4702","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","12:35:00","MST","2021-03-09 19:35:00",NA,"2.03",2030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546265","UTAHDWQ_WQX-BRI210308-4903501-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903501-0309-4-C/results/911546265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4703","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","12:10:00","MST","2021-03-09 19:10:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546270","UTAHDWQ_WQX-BRI210308-4903504-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903504-0309-4-C/results/911546270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4704","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","12:10:00","MST","2021-03-09 19:10:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546274","UTAHDWQ_WQX-BRI210308-4903504-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903504-0309-4-C/results/911546274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4705","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","12:00:00","MST","2021-03-09 19:00:00",NA,"0.461",461,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546279","UTAHDWQ_WQX-BRI210308-4903507-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903507-0309-4-C/results/911546279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4706","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","12:00:00","MST","2021-03-09 19:00:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546283","UTAHDWQ_WQX-BRI210308-4903507-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903507-0309-4-C/results/911546283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4707","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","11:30:00","MST","2021-03-09 18:30:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546288","UTAHDWQ_WQX-BRI210308-4903510-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903510-0309-4-C/results/911546288/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4708","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","11:30:00","MST","2021-03-09 18:30:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546292","UTAHDWQ_WQX-BRI210308-4903510-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903510-0309-4-C/results/911546292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4709","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","10:00:00","MST","2021-03-10 17:00:00",NA,"2.22",2220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546297","UTAHDWQ_WQX-BRI210308-4903699-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903699-0310-4-C/results/911546297/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4710","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","10:00:00","MST","2021-03-10 17:00:00",NA,"2.16",2160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546301","UTAHDWQ_WQX-BRI210308-4903699-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903699-0310-4-C/results/911546301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4711","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","10:30:00","MST","2021-03-10 17:30:00",NA,"25.2",25200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546307","UTAHDWQ_WQX-BRI210308-4903723-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903723-0310-4-C/results/911546307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4712","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","10:30:00","MST","2021-03-10 17:30:00",NA,"24.4",24400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546311","UTAHDWQ_WQX-BRI210308-4903723-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Richmond WWTP outfall 002","Facility Other",NA,"41.9248800000",41.92488,"-111.8340900000",-111.83409,"OK","16010202","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9248800000","-111.8340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903723-0310-4-C/results/911546311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4713","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","11:40:00","MST","2021-03-10 18:40:00",NA,"2.16",2160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546317","UTAHDWQ_WQX-BRI210308-4903770-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903770-0310-4-C/results/911546317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4714","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","11:40:00","MST","2021-03-10 18:40:00",NA,"2.2",2200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546321","UTAHDWQ_WQX-BRI210308-4903770-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903770-0310-4-C/results/911546321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4715","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","09:20:00","MST","2021-03-10 16:20:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546335","UTAHDWQ_WQX-BRI210308-4903820-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903820-0310-4-C/results/911546335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4716","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","09:20:00","MST","2021-03-10 16:20:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546339","UTAHDWQ_WQX-BRI210308-4903820-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903820-0310-4-C/results/911546339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4717","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","14:00:00","MST","2021-03-09 21:00:00",NA,"9.28",9280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546344","UTAHDWQ_WQX-BRI210308-4903950-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903950-0309-4-C/results/911546344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4718","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","14:00:00","MST","2021-03-09 21:00:00",NA,"9.18",9180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546348","UTAHDWQ_WQX-BRI210308-4903950-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903950-0309-4-C/results/911546348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4719","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","09:45:00","MST","2021-03-10 16:45:00",NA,"2.51",2510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546353","UTAHDWQ_WQX-BRI210308-4904110-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904110-0310-4-C/results/911546353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4720","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","09:45:00","MST","2021-03-10 16:45:00",NA,"2.43",2430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546357","UTAHDWQ_WQX-BRI210308-4904110-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904110-0310-4-C/results/911546357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4721","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","11:00:00","MST","2021-03-10 18:00:00",NA,"2.21",2210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546363","UTAHDWQ_WQX-BRI210308-4904240-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904240-0310-4-C/results/911546363/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4722","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","11:00:00","MST","2021-03-10 18:00:00",NA,"2.13",2130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546367","UTAHDWQ_WQX-BRI210308-4904240-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904240-0310-4-C/results/911546367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4723","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","11:20:00","MST","2021-03-10 18:20:00",NA,"2.13",2130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546372","UTAHDWQ_WQX-BRI210308-4904241-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904241-0310-4-C/results/911546372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4724","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","11:20:00","MST","2021-03-10 18:20:00",NA,"2.2",2200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546376","UTAHDWQ_WQX-BRI210308-4904241-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904241-0310-4-C/results/911546376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4725","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","10:15:00","MST","2021-03-10 17:15:00",NA,"2.32",2320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546381","UTAHDWQ_WQX-BRI210308-4904250-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904250-0310-4-C/results/911546381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4726","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","10:15:00","MST","2021-03-10 17:15:00",NA,"2.31",2310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546385","UTAHDWQ_WQX-BRI210308-4904250-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904250-0310-4-C/results/911546385/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4727","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","11:10:00","MST","2021-03-10 18:10:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546390","UTAHDWQ_WQX-BRI210308-4904300-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ U91 XING","River/Stream",NA,"41.9568700000",41.95687,"-111.8130100000",-111.81301,"OK","16010202","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9568700000","-111.8130100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904300-0310-4-C/results/911546390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4728","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","11:10:00","MST","2021-03-10 18:10:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546394","UTAHDWQ_WQX-BRI210308-4904300-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ U91 XING","River/Stream",NA,"41.9568700000",41.95687,"-111.8130100000",-111.81301,"OK","16010202","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9568700000","-111.8130100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904300-0310-4-C/results/911546394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4729","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","12:00:00","MST","2021-03-10 19:00:00",NA,"6.9",6900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546399","UTAHDWQ_WQX-BRI210308-4904310-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904310-0310-4-C/results/911546399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4730","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","12:00:00","MST","2021-03-10 19:00:00",NA,"6.65",6650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546403","UTAHDWQ_WQX-BRI210308-4904310-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904310-0310-4-C/results/911546403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4731","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","10:50:00","MST","2021-03-10 17:50:00",NA,"0.653",653,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546408","UTAHDWQ_WQX-BRI210308-4904320-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CHERRY CK @ U91 XING","River/Stream",NA,"41.9376100000",41.93761,"-111.8138100000",-111.81381,"OK","16010202","UTAHDWQ_WQX-4904320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9376100000","-111.8138100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904320-0310-4-C/results/911546408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4732","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","10:50:00","MST","2021-03-10 17:50:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546412","UTAHDWQ_WQX-BRI210308-4904320-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CHERRY CK @ U91 XING","River/Stream",NA,"41.9376100000",41.93761,"-111.8138100000",-111.81381,"OK","16010202","UTAHDWQ_WQX-4904320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9376100000","-111.8138100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904320-0310-4-C/results/911546412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4733","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","11:20:00","MST","2021-03-10 18:20:00",NA,"2.32",2320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546417","UTAHDWQ_WQX-BRI210308-4904340-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904340-0310-4-C/results/911546417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4734","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","11:20:00","MST","2021-03-10 18:20:00",NA,"2.38",2380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546421","UTAHDWQ_WQX-BRI210308-4904340-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904340-0310-4-C/results/911546421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4735","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","11:00:00","MST","2021-03-09 18:00:00",NA,"1.47",1470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546426","UTAHDWQ_WQX-BRI210308-4904490-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904490-0309-4-C/results/911546426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4736","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","11:00:00","MST","2021-03-09 18:00:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546430","UTAHDWQ_WQX-BRI210308-4904490-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904490-0309-4-C/results/911546430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4737","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","11:05:00","MST","2021-03-09 18:05:00",NA,"2.36",2360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546435","UTAHDWQ_WQX-BRI210308-4904510-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904510-0309-4-C/results/911546435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4738","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","11:05:00","MST","2021-03-09 18:05:00",NA,"2.65",2650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546439","UTAHDWQ_WQX-BRI210308-4904510-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904510-0309-4-C/results/911546439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4739","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","13:15:00","MST","2021-03-09 20:15:00",NA,"2.77",2770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546444","UTAHDWQ_WQX-BRI210308-4904720-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904720-0309-4-C/results/911546444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4740","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","13:15:00","MST","2021-03-09 20:15:00",NA,"2.48",2480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546448","UTAHDWQ_WQX-BRI210308-4904720-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904720-0309-4-C/results/911546448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4741","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","12:40:00","MST","2021-03-09 19:40:00",NA,"2.27",2270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546453","UTAHDWQ_WQX-BRI210308-4904724-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904724-0309-4-C/results/911546453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4742","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","12:40:00","MST","2021-03-09 19:40:00",NA,"2.03",2030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546457","UTAHDWQ_WQX-BRI210308-4904724-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904724-0309-4-C/results/911546457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4743","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","13:00:00","MST","2021-03-09 20:00:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546462","UTAHDWQ_WQX-BRI210308-4904726-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904726-0309-4-C/results/911546462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4744","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","13:00:00","MST","2021-03-09 20:00:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546466","UTAHDWQ_WQX-BRI210308-4904726-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904726-0309-4-C/results/911546466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4745","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","14:40:00","MST","2021-03-09 21:40:00",NA,"16.4",16400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546471","UTAHDWQ_WQX-BRI210308-4904740-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904740-0309-4-C/results/911546471/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4746","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","14:40:00","MST","2021-03-09 21:40:00",NA,"13.8",13800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546475","UTAHDWQ_WQX-BRI210308-4904740-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904740-0309-4-C/results/911546475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4747","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","10:35:00","MST","2021-03-10 17:35:00",NA,"27.9",27900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546480","UTAHDWQ_WQX-BRI210308-4904770-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904770-0310-4-C/results/911546480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4748","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","10:35:00","MST","2021-03-10 17:35:00",NA,"28",28000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546484","UTAHDWQ_WQX-BRI210308-4904770-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904770-0310-4-C/results/911546484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4749","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","12:05:00","MST","2021-03-09 19:05:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546489","UTAHDWQ_WQX-BRI210308-4904800-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904800-0309-4-C/results/911546489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4750","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","12:05:00","MST","2021-03-09 19:05:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546493","UTAHDWQ_WQX-BRI210308-4904800-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904800-0309-4-C/results/911546493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4751","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","10:50:00","MST","2021-03-10 17:50:00",NA,"8.57",8570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546499","UTAHDWQ_WQX-BRI210308-4904810-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904810-0310-4-C/results/911546499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4752","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","10:50:00","MST","2021-03-10 17:50:00",NA,"6.6",6600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546503","UTAHDWQ_WQX-BRI210308-4904810-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904810-0310-4-C/results/911546503/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4753","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","10:20:00","MST","2021-03-10 17:20:00",NA,"2.39",2390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546509","UTAHDWQ_WQX-BRI210308-4904840-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DITCH AB EA MILLER SC-12","Canal Drainage",NA,"41.6555700000",41.65557,"-111.8690300000",-111.86903,"OK","16010203","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6555700000","-111.8690300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904840-0310-4-C/results/911546509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4754","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","10:20:00","MST","2021-03-10 17:20:00",NA,"2.37",2370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546513","UTAHDWQ_WQX-BRI210308-4904840-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DITCH AB EA MILLER SC-12","Canal Drainage",NA,"41.6555700000",41.65557,"-111.8690300000",-111.86903,"OK","16010203","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6555700000","-111.8690300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904840-0310-4-C/results/911546513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4755","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","15:05:00","MST","2021-03-09 22:05:00",NA,"1.87",1870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546518","UTAHDWQ_WQX-BRI210308-4904870-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904870-0309-4-C/results/911546518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4756","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","15:05:00","MST","2021-03-09 22:05:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546522","UTAHDWQ_WQX-BRI210308-4904870-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904870-0309-4-C/results/911546522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4757","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","11:40:00","MST","2021-03-09 18:40:00",NA,"3.27",3270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546527","UTAHDWQ_WQX-BRI210308-4904900-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904900-0309-4-C/results/911546527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4758","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","11:40:00","MST","2021-03-09 18:40:00",NA,"3.28",3280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546531","UTAHDWQ_WQX-BRI210308-4904900-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904900-0309-4-C/results/911546531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4759","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","13:45:00","MST","2021-03-09 20:45:00",NA,"2.18",2180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546536","UTAHDWQ_WQX-BRI210308-4904920-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904920-0309-4-C/results/911546536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4760","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","13:45:00","MST","2021-03-09 20:45:00",NA,"2.31",2310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546540","UTAHDWQ_WQX-BRI210308-4904920-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904920-0309-4-C/results/911546540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4761","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","14:30:00","MST","2021-03-09 21:30:00",NA,"15.8",15800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546545","UTAHDWQ_WQX-BRI210308-4904940-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904940-0309-4-C/results/911546545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4762","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","14:30:00","MST","2021-03-09 21:30:00",NA,"15.2",15200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546549","UTAHDWQ_WQX-BRI210308-4904940-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904940-0309-4-C/results/911546549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4763","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","11:20:00","MST","2021-03-10 18:20:00",NA,"7.3",7300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546554","UTAHDWQ_WQX-BRI210308-4904943-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904943-0310-4-C/results/911546554/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4764","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","11:20:00","MST","2021-03-10 18:20:00",NA,"7.02",7020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546558","UTAHDWQ_WQX-BRI210308-4904943-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904943-0310-4-C/results/911546558/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4765","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","13:25:00","MST","2021-03-09 20:25:00",NA,"3.36",3360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546563","UTAHDWQ_WQX-BRI210308-4904965-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904965-0309-4-C/results/911546563/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4766","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","13:25:00","MST","2021-03-09 20:25:00",NA,"3.42",3420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546567","UTAHDWQ_WQX-BRI210308-4904965-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904965-0309-4-C/results/911546567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4767","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","13:00:00","MST","2021-03-09 20:00:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546572","UTAHDWQ_WQX-BRI210308-4904990-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904990-0309-4-C/results/911546572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4768","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","13:00:00","MST","2021-03-09 20:00:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546576","UTAHDWQ_WQX-BRI210308-4904990-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904990-0309-4-C/results/911546576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4769","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","12:00:00","MST","2021-03-09 19:00:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546581","UTAHDWQ_WQX-BRI210308-4905000-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905000-0309-4-C/results/911546581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4770","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","12:00:00","MST","2021-03-09 19:00:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546585","UTAHDWQ_WQX-BRI210308-4905000-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905000-0309-4-C/results/911546585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4771","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","11:15:00","MST","2021-03-09 18:15:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546590","UTAHDWQ_WQX-BRI210308-4905040-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905040-0309-4-C/results/911546590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4772","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","11:15:00","MST","2021-03-09 18:15:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546594","UTAHDWQ_WQX-BRI210308-4905040-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905040-0309-4-C/results/911546594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4773","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","10:30:00","MST","2021-03-09 17:30:00",NA,"12.9",12900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546599","UTAHDWQ_WQX-BRI210308-4905050-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905050-0309-4-C/results/911546599/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4774","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","10:30:00","MST","2021-03-09 17:30:00",NA,"12.5",12500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546603","UTAHDWQ_WQX-BRI210308-4905050-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905050-0309-4-C/results/911546603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4775","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","10:20:00","MST","2021-03-09 17:20:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546644","UTAHDWQ_WQX-BRI210308-4905052-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905052-0309-4-C/results/911546644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4776","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","10:20:00","MST","2021-03-09 17:20:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546648","UTAHDWQ_WQX-BRI210308-4905052-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905052-0309-4-C/results/911546648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4777","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","10:00:00","MST","2021-03-09 17:00:00",NA,"27.6",27600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546688","UTAHDWQ_WQX-BRI210308-4905070-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905070-0309-4-C/results/911546688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4778","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","10:00:00","MST","2021-03-09 17:00:00",NA,"24.5",24500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546692","UTAHDWQ_WQX-BRI210308-4905070-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905070-0309-4-C/results/911546692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4779","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","10:50:00","MST","2021-03-09 17:50:00",NA,"19.2",19200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546732","UTAHDWQ_WQX-BRI210308-4905090-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905090-0309-4-C/results/911546732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4780","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","10:50:00","MST","2021-03-09 17:50:00",NA,"18.7",18700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546736","UTAHDWQ_WQX-BRI210308-4905090-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905090-0309-4-C/results/911546736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4781","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","09:30:00","MST","2021-03-09 16:30:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546775","UTAHDWQ_WQX-BRI210308-4905200-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905200-0309-4-C/results/911546775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4782","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","09:30:00","MST","2021-03-09 16:30:00",NA,"0.161",161,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546779","UTAHDWQ_WQX-BRI210308-4905200-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905200-0309-4-C/results/911546779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4783","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","09:35:00","MST","2021-03-09 16:35:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546784","UTAHDWQ_WQX-BRI210308-4905301-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905301-0309-4-C/results/911546784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4784","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","09:35:00","MST","2021-03-09 16:35:00",NA,"0.155",155,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546788","UTAHDWQ_WQX-BRI210308-4905301-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905301-0309-4-C/results/911546788/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4785","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","12:50:00","MST","2021-03-09 19:50:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546793","UTAHDWQ_WQX-BRI210308-4905400-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905400-0309-4-C/results/911546793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4786","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","12:50:00","MST","2021-03-09 19:50:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546797","UTAHDWQ_WQX-BRI210308-4905400-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905400-0309-4-C/results/911546797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4787","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","15:55:00","MST","2021-03-09 22:55:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546802","UTAHDWQ_WQX-BRI210308-4905440-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905440-0309-4-C/results/911546802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4788","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","15:55:00","MST","2021-03-09 22:55:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546806","UTAHDWQ_WQX-BRI210308-4905440-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905440-0309-4-C/results/911546806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4789","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","16:00:00","MST","2021-03-09 23:00:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546811","UTAHDWQ_WQX-BRI210308-4905441-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905441-0309-4-C/results/911546811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4790","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","16:00:00","MST","2021-03-09 23:00:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546815","UTAHDWQ_WQX-BRI210308-4905441-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905441-0309-4-C/results/911546815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4791","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","11:10:00","MST","2021-03-10 18:10:00",NA,"18",18000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546821","UTAHDWQ_WQX-BRI210308-4905520-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905520-0310-4-C/results/911546821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4792","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","11:10:00","MST","2021-03-10 18:10:00",NA,"17.5",17500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546825","UTAHDWQ_WQX-BRI210308-4905520-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905520-0310-4-C/results/911546825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4793","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","10:05:00","MST","2021-03-10 17:05:00",NA,"40.8",40800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546831","UTAHDWQ_WQX-BRI210308-4905540-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905540-0310-4-C/results/911546831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4794","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","10:05:00","MST","2021-03-10 17:05:00",NA,"40.1",40100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546835","UTAHDWQ_WQX-BRI210308-4905540-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905540-0310-4-C/results/911546835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4795","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","14:00:00","MST","2021-03-10 21:00:00",NA,"0.965",965,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546841","UTAHDWQ_WQX-BRI210308-4905580-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905580-0310-4-C/results/911546841/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4796","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","14:00:00","MST","2021-03-10 21:00:00",NA,"0.967",967,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546845","UTAHDWQ_WQX-BRI210308-4905580-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905580-0310-4-C/results/911546845/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4797","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","13:10:00","MST","2021-03-10 20:10:00",NA,"0.952",952,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546850","UTAHDWQ_WQX-BRI210308-4905590-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905590-0310-4-C/results/911546850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4798","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","13:10:00","MST","2021-03-10 20:10:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546854","UTAHDWQ_WQX-BRI210308-4905590-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905590-0310-4-C/results/911546854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4799","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","12:00:00","MST","2021-03-10 19:00:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546859","UTAHDWQ_WQX-BRI210308-4905630-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905630-0310-4-C/results/911546859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4800","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","12:00:00","MST","2021-03-10 19:00:00",NA,"0.395",395,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546863","UTAHDWQ_WQX-BRI210308-4905630-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905630-0310-4-C/results/911546863/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4801","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","12:05:00","MST","2021-03-10 19:05:00",NA,"0.395",395,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546868","UTAHDWQ_WQX-BRI210308-4905631-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905631-0310-4-C/results/911546868/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4802","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","12:05:00","MST","2021-03-10 19:05:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546872","UTAHDWQ_WQX-BRI210308-4905631-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905631-0310-4-C/results/911546872/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4803","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","12:35:00","MST","2021-03-10 19:35:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546877","UTAHDWQ_WQX-BRI210308-4905640-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905640-0310-4-C/results/911546877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4804","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","12:35:00","MST","2021-03-10 19:35:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546881","UTAHDWQ_WQX-BRI210308-4905640-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905640-0310-4-C/results/911546881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4805","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","11:40:00","MST","2021-03-10 18:40:00",NA,"0.508",508,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546886","UTAHDWQ_WQX-BRI210308-4905650-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905650-0310-4-C/results/911546886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4806","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","11:40:00","MST","2021-03-10 18:40:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546890","UTAHDWQ_WQX-BRI210308-4905650-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905650-0310-4-C/results/911546890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4807","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","16:20:00","MST","2021-03-09 23:20:00",NA,"0.493",493,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546895","UTAHDWQ_WQX-BRI210308-4905670-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905670-0309-4-C/results/911546895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4808","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","16:20:00","MST","2021-03-09 23:20:00",NA,"0.528",528,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546899","UTAHDWQ_WQX-BRI210308-4905670-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905670-0309-4-C/results/911546899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4809","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","16:20:00","MST","2021-03-09 23:20:00",NA,"0.188",188,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546904","UTAHDWQ_WQX-BRI210308-4905700-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905700-0309-4-C/results/911546904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4810","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","16:20:00","MST","2021-03-09 23:20:00",NA,"0.177",177,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546908","UTAHDWQ_WQX-BRI210308-4905700-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905700-0309-4-C/results/911546908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4811","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","17:35:00","MST","2021-03-10 00:35:00",NA,"0.129",129,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546913","UTAHDWQ_WQX-BRI210308-4905740-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905740-0309-4-C/results/911546913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4812","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","17:35:00","MST","2021-03-10 00:35:00",NA,"0.117",117,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546917","UTAHDWQ_WQX-BRI210308-4905740-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905740-0309-4-C/results/911546917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4813","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","17:00:00","MST","2021-03-10 00:00:00",NA,"0.193",193,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546922","UTAHDWQ_WQX-BRI210308-4905750-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905750-0309-4-C/results/911546922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4814","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","17:00:00","MST","2021-03-10 00:00:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546926","UTAHDWQ_WQX-BRI210308-4905750-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905750-0309-4-C/results/911546926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4815","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","17:15:00","MST","2021-03-10 00:15:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546931","UTAHDWQ_WQX-BRI210308-4905780-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905780-0309-4-C/results/911546931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4816","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","17:15:00","MST","2021-03-10 00:15:00",NA,"0.387",387,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546935","UTAHDWQ_WQX-BRI210308-4905780-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905780-0309-4-C/results/911546935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4817","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-10","12:20:00","MST","2021-03-10 19:20:00",NA,"3.52",3520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546940","UTAHDWQ_WQX-BRI210308-4905940-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905940-0310-4-C/results/911546940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4818","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-10","12:20:00","MST","2021-03-10 19:20:00",NA,"3.53",3530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546944","UTAHDWQ_WQX-BRI210308-4905940-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905940-0310-4-C/results/911546944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4819","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","15:30:00","MST","2021-03-09 22:30:00",NA,"0.152",152,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546967","UTAHDWQ_WQX-BRI210308-4906400-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4906400-0309-4-C/results/911546967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4820","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","15:30:00","MST","2021-03-09 22:30:00",NA,"0.148",148,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546971","UTAHDWQ_WQX-BRI210308-4906400-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4906400-0309-4-C/results/911546971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4821","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","12:40:00","MST","2021-03-08 19:40:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546976","UTAHDWQ_WQX-BRI210308-4908165-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908165-0308-4-C/results/911546976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4822","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","12:40:00","MST","2021-03-08 19:40:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546980","UTAHDWQ_WQX-BRI210308-4908165-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908165-0308-4-C/results/911546980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4823","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","13:30:00","MST","2021-03-08 20:30:00",NA,"0.313",313,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546985","UTAHDWQ_WQX-BRI210308-4908170-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908170-0308-4-C/results/911546985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4824","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","13:30:00","MST","2021-03-08 20:30:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546989","UTAHDWQ_WQX-BRI210308-4908170-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908170-0308-4-C/results/911546989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4825","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","09:35:00","MST","2021-03-08 16:35:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546994","UTAHDWQ_WQX-BRI210308-4908200-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","GENES CK @ U-16 XING","River/Stream",NA,"41.5238300000",41.52383,"-111.1560300000",-111.15603,"OK","16010101","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5238300000","-111.1560300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908200-0308-4-C/results/911546994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4826","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","09:35:00","MST","2021-03-08 16:35:00",NA,"0.159",159,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911546998","UTAHDWQ_WQX-BRI210308-4908200-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","GENES CK @ U-16 XING","River/Stream",NA,"41.5238300000",41.52383,"-111.1560300000",-111.15603,"OK","16010101","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5238300000","-111.1560300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908200-0308-4-C/results/911546998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4827","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","12:15:00","MST","2021-03-08 19:15:00",NA,"0.256",256,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547003","UTAHDWQ_WQX-BRI210308-4908280-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908280-0308-4-C/results/911547003/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4828","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","12:15:00","MST","2021-03-08 19:15:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547007","UTAHDWQ_WQX-BRI210308-4908280-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908280-0308-4-C/results/911547007/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4829","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","12:20:00","MST","2021-03-08 19:20:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547012","UTAHDWQ_WQX-BRI210308-4908281-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908281-0308-4-C/results/911547012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4830","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","12:20:00","MST","2021-03-08 19:20:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547016","UTAHDWQ_WQX-BRI210308-4908281-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908281-0308-4-C/results/911547016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4831","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","11:00:00","MST","2021-03-08 18:00:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547021","UTAHDWQ_WQX-BRI210308-4908350-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908350-0308-4-C/results/911547021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4832","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","11:00:00","MST","2021-03-08 18:00:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547025","UTAHDWQ_WQX-BRI210308-4908350-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908350-0308-4-C/results/911547025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4833","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","09:50:00","MST","2021-03-08 16:50:00",NA,"0.735",735,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547030","UTAHDWQ_WQX-BRI210308-4908500-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908500-0308-4-C/results/911547030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4834","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","09:50:00","MST","2021-03-08 16:50:00",NA,"0.508",508,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547034","UTAHDWQ_WQX-BRI210308-4908500-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908500-0308-4-C/results/911547034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4835","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","09:15:00","MST","2021-03-09 16:15:00",NA,"0.138",138,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547039","UTAHDWQ_WQX-BRI210308-4908744-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908744-0309-4-C/results/911547039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4836","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","09:15:00","MST","2021-03-09 16:15:00",NA,"0.152",152,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547043","UTAHDWQ_WQX-BRI210308-4908744-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908744-0309-4-C/results/911547043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4837","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","14:20:00","MST","2021-03-08 21:20:00",NA,"0.611",611,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547048","UTAHDWQ_WQX-BRI210308-4908745-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908745-0308-4-C/results/911547048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4838","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","14:20:00","MST","2021-03-08 21:20:00",NA,"0.834",834,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547052","UTAHDWQ_WQX-BRI210308-4908745-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908745-0308-4-C/results/911547052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4839","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","08:20:00","MST","2021-03-08 15:20:00",NA,"5.03",5030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547058","UTAHDWQ_WQX-BRI210308-5984855-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-5984855-0308-4-C/results/911547058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4840","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","08:20:00","MST","2021-03-08 15:20:00",NA,"4.43",4430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547062","UTAHDWQ_WQX-BRI210308-5984855-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-5984855-0308-4-C/results/911547062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4841","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:00:00","MST","2020-10-27 19:00:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547070","UTAHDWQ_WQX-DC201027-4990360-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990360-1027-4-C/results/911547070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4842","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:00:00","MST","2020-10-27 19:00:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547074","UTAHDWQ_WQX-DC201027-4990360-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990360-1027-4-C/results/911547074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4843","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:30:00","MST","2020-10-27 16:30:00",NA,"0.945",945,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547098","UTAHDWQ_WQX-DC201027-4990373-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990373-1027-4-C/results/911547098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4844","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:30:00","MST","2020-10-27 16:30:00",NA,"0.978",978,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547102","UTAHDWQ_WQX-DC201027-4990373-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990373-1027-4-C/results/911547102/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4845","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:15:00","MST","2020-10-27 19:15:00",NA,"0.139",139,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547126","UTAHDWQ_WQX-DC201027-4990376-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990376-1027-4-C/results/911547126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4846","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:15:00","MST","2020-10-27 19:15:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547130","UTAHDWQ_WQX-DC201027-4990376-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990376-1027-4-C/results/911547130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4847","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","13:45:00","MST","2020-10-27 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547154","UTAHDWQ_WQX-DC201027-4990555-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990555-1027-4-C/results/911547154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4848","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","13:45:00","MST","2020-10-27 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547158","UTAHDWQ_WQX-DC201027-4990555-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990555-1027-4-C/results/911547158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4849","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:45:00","MST","2020-10-27 18:45:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547182","UTAHDWQ_WQX-DC201027-4990620-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990620-1027-4-C/results/911547182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4850","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:45:00","MST","2020-10-27 18:45:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547186","UTAHDWQ_WQX-DC201027-4990620-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990620-1027-4-C/results/911547186/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4851","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","09:50:00","MST","2020-10-27 16:50:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547210","UTAHDWQ_WQX-DC201027-4990640-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990640-1027-4-C/results/911547210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4852","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","09:50:00","MST","2020-10-27 16:50:00",NA,"0.913",913,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547214","UTAHDWQ_WQX-DC201027-4990640-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990640-1027-4-C/results/911547214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4853","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:30:00","MST","2020-10-27 18:30:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547238","UTAHDWQ_WQX-DC201027-4990650-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990650-1027-4-C/results/911547238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4854","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:30:00","MST","2020-10-27 18:30:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547242","UTAHDWQ_WQX-DC201027-4990650-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990650-1027-4-C/results/911547242/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4855","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"1.99",1990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547266","UTAHDWQ_WQX-DC201027-4990680-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990680-1027-4-C/results/911547266/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4856","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"2.09",2090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547270","UTAHDWQ_WQX-DC201027-4990680-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990680-1027-4-C/results/911547270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4857","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:15:00","MST","2020-10-27 18:15:00",NA,"0.136",136,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547294","UTAHDWQ_WQX-DC201027-4990700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990700-1027-4-C/results/911547294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4858","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:15:00","MST","2020-10-27 18:15:00",NA,"0.209",209,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547298","UTAHDWQ_WQX-DC201027-4990700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990700-1027-4-C/results/911547298/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4859","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:30:00","MST","2020-10-27 17:30:00",NA,"2.43",2430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547322","UTAHDWQ_WQX-DC201027-4990987-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990987-1027-4-C/results/911547322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4860","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:30:00","MST","2020-10-27 17:30:00",NA,"2.13",2130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547326","UTAHDWQ_WQX-DC201027-4990987-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990987-1027-4-C/results/911547326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4861","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:55:00","MST","2020-10-27 17:55:00",NA,"0.186",186,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547350","UTAHDWQ_WQX-DC201027-4990996-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990996-1027-4-C/results/911547350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4862","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:55:00","MST","2020-10-27 17:55:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547354","UTAHDWQ_WQX-DC201027-4990996-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990996-1027-4-C/results/911547354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4863","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","11:00:00","MST","2020-10-27 18:00:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547378","UTAHDWQ_WQX-DC201027-4990997-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990997-1027-4-C/results/911547378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4864","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:00:00","MST","2020-10-27 18:00:00",NA,"0.537",537,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547382","UTAHDWQ_WQX-DC201027-4990997-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County;Division of Water Quality",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990997-1027-4-C/results/911547382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4865","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:35:00","MST","2020-11-17 18:35:00",NA,"0.298",298,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547406","UTAHDWQ_WQX-DC201117-4990360-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990360-1117-4-C/results/911547406/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4866","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:35:00","MST","2020-11-17 18:35:00",NA,"0.164",164,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547410","UTAHDWQ_WQX-DC201117-4990360-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990360-1117-4-C/results/911547410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4867","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","08:50:00","MST","2020-11-17 15:50:00",NA,"0.831",831,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547419","UTAHDWQ_WQX-DC201117-4990373-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990373-1117-4-C/results/911547419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4868","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:45:00","MST","2020-11-17 18:45:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547423","UTAHDWQ_WQX-DC201117-4990376-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990376-1117-4-C/results/911547423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4869","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:45:00","MST","2020-11-17 18:45:00",NA,"0.082",82,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547427","UTAHDWQ_WQX-DC201117-4990376-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990376-1117-4-C/results/911547427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4870","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","08:00:00","MST","2020-11-17 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547436","UTAHDWQ_WQX-DC201117-4990555-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990555-1117-4-C/results/911547436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4871","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","08:00:00","MST","2020-11-17 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547440","UTAHDWQ_WQX-DC201117-4990555-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990555-1117-4-C/results/911547440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4872","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:20:00","MST","2020-11-17 18:20:00",NA,"0.218",218,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547449","UTAHDWQ_WQX-DC201117-4990620-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990620-1117-4-C/results/911547449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4873","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:20:00","MST","2020-11-17 18:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547453","UTAHDWQ_WQX-DC201117-4990620-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990620-1117-4-C/results/911547453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4874","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","09:30:00","MST","2020-11-17 16:30:00",NA,"0.727",727,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547462","UTAHDWQ_WQX-DC201117-4990640-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990640-1117-4-C/results/911547462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4875","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","09:30:00","MST","2020-11-17 16:30:00",NA,"0.769",769,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547466","UTAHDWQ_WQX-DC201117-4990640-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990640-1117-4-C/results/911547466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4876","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:15:00","MST","2020-11-17 18:15:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547475","UTAHDWQ_WQX-DC201117-4990650-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990650-1117-4-C/results/911547475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4877","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:15:00","MST","2020-11-17 18:15:00",NA,"0.119",119,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547479","UTAHDWQ_WQX-DC201117-4990650-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990650-1117-4-C/results/911547479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4878","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","09:10:00","MST","2020-11-17 16:10:00",NA,"0.643",643,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547488","UTAHDWQ_WQX-DC201117-4990680-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990680-1117-4-C/results/911547488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4879","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","09:10:00","MST","2020-11-17 16:10:00",NA,"0.574",574,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547492","UTAHDWQ_WQX-DC201117-4990680-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990680-1117-4-C/results/911547492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4880","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:00:00","MST","2020-11-17 18:00:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547501","UTAHDWQ_WQX-DC201117-4990700-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990700-1117-4-C/results/911547501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4881","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:00:00","MST","2020-11-17 18:00:00",NA,"0.084",84,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547505","UTAHDWQ_WQX-DC201117-4990700-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990700-1117-4-C/results/911547505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4882","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","09:50:00","MST","2020-11-17 16:50:00",NA,"2.23",2230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547514","UTAHDWQ_WQX-DC201117-4990987-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990987-1117-4-C/results/911547514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4883","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","09:50:00","MST","2020-11-17 16:50:00",NA,"2.31",2310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547518","UTAHDWQ_WQX-DC201117-4990987-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990987-1117-4-C/results/911547518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4884","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:00:00","MST","2020-11-17 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547527","UTAHDWQ_WQX-DC201117-4990996-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990996-1117-4-C/results/911547527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4885","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:00:00","MST","2020-11-17 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547531","UTAHDWQ_WQX-DC201117-4990996-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990996-1117-4-C/results/911547531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4886","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:05:00","MST","2020-11-17 17:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547540","UTAHDWQ_WQX-DC201117-4990997-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990997-1117-4-C/results/911547540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4887","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:05:00","MST","2020-11-17 17:05:00",NA,"0.088",88,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547544","UTAHDWQ_WQX-DC201117-4990997-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990997-1117-4-C/results/911547544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4888","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","12:40:00","MST","2020-12-15 19:40:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547553","UTAHDWQ_WQX-DC201215-4990360-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990360-1215-4-C/results/911547553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4889","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","12:40:00","MST","2020-12-15 19:40:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547557","UTAHDWQ_WQX-DC201215-4990360-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990360-1215-4-C/results/911547557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4890","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","10:10:00","MST","2020-12-15 17:10:00",NA,"0.99",990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547581","UTAHDWQ_WQX-DC201215-4990373-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990373-1215-4-C/results/911547581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4891","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","10:10:00","MST","2020-12-15 17:10:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547585","UTAHDWQ_WQX-DC201215-4990373-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990373-1215-4-C/results/911547585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4892","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","12:15:00","MST","2020-12-15 19:15:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547609","UTAHDWQ_WQX-DC201215-4990376-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990376-1215-4-C/results/911547609/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4893","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","12:15:00","MST","2020-12-15 19:15:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547613","UTAHDWQ_WQX-DC201215-4990376-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990376-1215-4-C/results/911547613/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4894","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","09:00:00","MST","2020-12-15 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547637","UTAHDWQ_WQX-DC201215-4990555-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990555-1215-4-C/results/911547637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4895","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","09:00:00","MST","2020-12-15 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547641","UTAHDWQ_WQX-DC201215-4990555-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990555-1215-4-C/results/911547641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4896","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","12:30:00","MST","2020-12-15 19:30:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547665","UTAHDWQ_WQX-DC201215-4990620-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990620-1215-4-C/results/911547665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4897","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","12:30:00","MST","2020-12-15 19:30:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547669","UTAHDWQ_WQX-DC201215-4990620-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990620-1215-4-C/results/911547669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4898","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","10:55:00","MST","2020-12-15 17:55:00",NA,"0.681",681,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547693","UTAHDWQ_WQX-DC201215-4990640-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990640-1215-4-C/results/911547693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4899","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","10:55:00","MST","2020-12-15 17:55:00",NA,"0.683",683,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547697","UTAHDWQ_WQX-DC201215-4990640-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990640-1215-4-C/results/911547697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4900","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","12:20:00","MST","2020-12-15 19:20:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547721","UTAHDWQ_WQX-DC201215-4990650-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990650-1215-4-C/results/911547721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4901","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","12:20:00","MST","2020-12-15 19:20:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547725","UTAHDWQ_WQX-DC201215-4990650-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990650-1215-4-C/results/911547725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4902","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","10:30:00","MST","2020-12-15 17:30:00",NA,"2.02",2020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547751","UTAHDWQ_WQX-DC201215-4990680-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990680-1215-4-C/results/911547751/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4903","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","10:30:00","MST","2020-12-15 17:30:00",NA,"2.1",2100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547755","UTAHDWQ_WQX-DC201215-4990680-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990680-1215-4-C/results/911547755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4904","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","12:00:00","MST","2020-12-15 19:00:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547779","UTAHDWQ_WQX-DC201215-4990700-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990700-1215-4-C/results/911547779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4905","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","12:00:00","MST","2020-12-15 19:00:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547783","UTAHDWQ_WQX-DC201215-4990700-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990700-1215-4-C/results/911547783/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4906","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","11:10:00","MST","2020-12-15 18:10:00",NA,"2.41",2410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547807","UTAHDWQ_WQX-DC201215-4990987-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990987-1215-4-C/results/911547807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4907","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","11:10:00","MST","2020-12-15 18:10:00",NA,"2.49",2490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547811","UTAHDWQ_WQX-DC201215-4990987-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990987-1215-4-C/results/911547811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4908","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-20","12:25:00","MST","2021-01-20 19:25:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547835","UTAHDWQ_WQX-DC210120-4990360-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990360-0120-4-C/results/911547835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4909","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-20","12:25:00","MST","2021-01-20 19:25:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547839","UTAHDWQ_WQX-DC210120-4990360-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990360-0120-4-C/results/911547839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4910","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-20","10:00:00","MST","2021-01-20 17:00:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547848","UTAHDWQ_WQX-DC210120-4990373-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990373-0120-4-C/results/911547848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4911","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-20","10:00:00","MST","2021-01-20 17:00:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547852","UTAHDWQ_WQX-DC210120-4990373-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990373-0120-4-C/results/911547852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4912","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-20","12:40:00","MST","2021-01-20 19:40:00",NA,"0.31",310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547861","UTAHDWQ_WQX-DC210120-4990376-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990376-0120-4-C/results/911547861/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4913","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-20","12:40:00","MST","2021-01-20 19:40:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547865","UTAHDWQ_WQX-DC210120-4990376-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990376-0120-4-C/results/911547865/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4914","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-20","08:00:00","MST","2021-01-20 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547874","UTAHDWQ_WQX-DC210120-4990555-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990555-0120-4-C/results/911547874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4915","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-20","08:00:00","MST","2021-01-20 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547878","UTAHDWQ_WQX-DC210120-4990555-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990555-0120-4-C/results/911547878/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4916","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-20","12:00:00","MST","2021-01-20 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547887","UTAHDWQ_WQX-DC210120-4990620-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990620-0120-4-C/results/911547887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4917","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-20","12:00:00","MST","2021-01-20 19:00:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547891","UTAHDWQ_WQX-DC210120-4990620-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990620-0120-4-C/results/911547891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4918","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-20","10:45:00","MST","2021-01-20 17:45:00",NA,"0.894",894,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547900","UTAHDWQ_WQX-DC210120-4990640-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990640-0120-4-C/results/911547900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4919","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-20","10:45:00","MST","2021-01-20 17:45:00",NA,"0.798",798,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547904","UTAHDWQ_WQX-DC210120-4990640-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990640-0120-4-C/results/911547904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4920","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-20","11:50:00","MST","2021-01-20 18:50:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547913","UTAHDWQ_WQX-DC210120-4990650-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990650-0120-4-C/results/911547913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4921","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-20","11:50:00","MST","2021-01-20 18:50:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547917","UTAHDWQ_WQX-DC210120-4990650-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990650-0120-4-C/results/911547917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4922","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-20","10:25:00","MST","2021-01-20 17:25:00",NA,"0.843",843,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547926","UTAHDWQ_WQX-DC210120-4990680-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990680-0120-4-C/results/911547926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4923","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-20","10:25:00","MST","2021-01-20 17:25:00",NA,"0.835",835,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547930","UTAHDWQ_WQX-DC210120-4990680-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990680-0120-4-C/results/911547930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4924","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-20","11:30:00","MST","2021-01-20 18:30:00",NA,"0.204",204,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547939","UTAHDWQ_WQX-DC210120-4990700-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990700-0120-4-C/results/911547939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4925","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-20","11:30:00","MST","2021-01-20 18:30:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547943","UTAHDWQ_WQX-DC210120-4990700-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990700-0120-4-C/results/911547943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4926","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-20","11:00:00","MST","2021-01-20 18:00:00",NA,"3.13",3130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547952","UTAHDWQ_WQX-DC210120-4990987-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990987-0120-4-C/results/911547952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4927","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-20","11:00:00","MST","2021-01-20 18:00:00",NA,"3.17",3170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547956","UTAHDWQ_WQX-DC210120-4990987-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990987-0120-4-C/results/911547956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4928","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","11:40:00","MST","2021-02-23 18:40:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547965","UTAHDWQ_WQX-DC210223-4990360-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990360-0223-4-C/results/911547965/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4929","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","11:40:00","MST","2021-02-23 18:40:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547983","UTAHDWQ_WQX-DC210223-4990360-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990360-0223-4-C/results/911547983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4930","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","09:20:00","MST","2021-02-23 16:20:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911547993","UTAHDWQ_WQX-DC210223-4990373-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990373-0223-4-C/results/911547993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4931","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","09:20:00","MST","2021-02-23 16:20:00",NA,"0.909",909,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548011","UTAHDWQ_WQX-DC210223-4990373-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990373-0223-4-C/results/911548011/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4932","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","11:50:00","MST","2021-02-23 18:50:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548021","UTAHDWQ_WQX-DC210223-4990376-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990376-0223-4-C/results/911548021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4933","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","11:50:00","MST","2021-02-23 18:50:00",NA,"0.258",258,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548039","UTAHDWQ_WQX-DC210223-4990376-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990376-0223-4-C/results/911548039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4934","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","08:45:00","MST","2021-02-23 15:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548049","UTAHDWQ_WQX-DC210223-4990555-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990555-0223-4-C/results/911548049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4935","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","08:45:00","MST","2021-02-23 15:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548067","UTAHDWQ_WQX-DC210223-4990555-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990555-0223-4-C/results/911548067/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4936","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","11:30:00","MST","2021-02-23 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548077","UTAHDWQ_WQX-DC210223-4990620-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990620-0223-4-C/results/911548077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4937","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","11:30:00","MST","2021-02-23 18:30:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548095","UTAHDWQ_WQX-DC210223-4990620-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990620-0223-4-C/results/911548095/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4938","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","09:50:00","MST","2021-02-23 16:50:00",NA,"0.542",542,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548105","UTAHDWQ_WQX-DC210223-4990640-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:35:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990640-0223-4-C/results/911548105/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4939","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","09:50:00","MST","2021-02-23 16:50:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548123","UTAHDWQ_WQX-DC210223-4990640-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990640-0223-4-C/results/911548123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4940","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","11:20:00","MST","2021-02-23 18:20:00",NA,"0.186",186,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548133","UTAHDWQ_WQX-DC210223-4990650-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990650-0223-4-C/results/911548133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4941","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","11:20:00","MST","2021-02-23 18:20:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548151","UTAHDWQ_WQX-DC210223-4990650-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990650-0223-4-C/results/911548151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4942","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","09:30:00","MST","2021-02-23 16:30:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548161","UTAHDWQ_WQX-DC210223-4990680-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990680-0223-4-C/results/911548161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4943","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","09:30:00","MST","2021-02-23 16:30:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548179","UTAHDWQ_WQX-DC210223-4990680-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990680-0223-4-C/results/911548179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4944","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","11:00:00","MST","2021-02-23 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548189","UTAHDWQ_WQX-DC210223-4990700-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990700-0223-4-C/results/911548189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4945","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","11:00:00","MST","2021-02-23 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548207","UTAHDWQ_WQX-DC210223-4990700-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990700-0223-4-C/results/911548207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4946","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","10:10:00","MST","2021-02-23 17:10:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548217","UTAHDWQ_WQX-DC210223-4990987-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990987-0223-4-C/results/911548217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4947","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","10:10:00","MST","2021-02-23 17:10:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548235","UTAHDWQ_WQX-DC210223-4990987-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990987-0223-4-C/results/911548235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4948","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","10:40:00","MST","2021-02-23 17:40:00",NA,"0.146",146,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548245","UTAHDWQ_WQX-DC210223-4990996-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990996-0223-4-C/results/911548245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4949","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","10:40:00","MST","2021-02-23 17:40:00",NA,"0.167",167,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548263","UTAHDWQ_WQX-DC210223-4990996-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990996-0223-4-C/results/911548263/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4950","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","10:45:00","MST","2021-02-23 17:45:00",NA,"0.148",148,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548273","UTAHDWQ_WQX-DC210223-4990997-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990997-0223-4-C/results/911548273/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4951","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","10:45:00","MST","2021-02-23 17:45:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548291","UTAHDWQ_WQX-DC210223-4990997-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990997-0223-4-C/results/911548291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4952","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","11:50:00","MST","2021-03-16 18:50:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548301","UTAHDWQ_WQX-DC210316-4990360-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990360-0316-4-C/results/911548301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4953","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","11:50:00","MST","2021-03-16 18:50:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548305","UTAHDWQ_WQX-DC210316-4990360-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990360-0316-4-C/results/911548305/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4954","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","09:35:00","MST","2021-03-16 16:35:00",NA,"0.636",636,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548314","UTAHDWQ_WQX-DC210316-4990373-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990373-0316-4-C/results/911548314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4955","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","09:35:00","MST","2021-03-16 16:35:00",NA,"0.533",533,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548318","UTAHDWQ_WQX-DC210316-4990373-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990373-0316-4-C/results/911548318/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4956","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","12:00:00","MST","2021-03-16 19:00:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548327","UTAHDWQ_WQX-DC210316-4990376-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990376-0316-4-C/results/911548327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4957","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","12:00:00","MST","2021-03-16 19:00:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548331","UTAHDWQ_WQX-DC210316-4990376-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990376-0316-4-C/results/911548331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4958","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","08:45:00","MST","2021-03-16 15:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548340","UTAHDWQ_WQX-DC210316-4990555-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990555-0316-4-C/results/911548340/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4959","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","08:45:00","MST","2021-03-16 15:45:00",NA,"0.086",86,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548344","UTAHDWQ_WQX-DC210316-4990555-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990555-0316-4-C/results/911548344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4960","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","11:40:00","MST","2021-03-16 18:40:00",NA,"0.107",107,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548353","UTAHDWQ_WQX-DC210316-4990620-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990620-0316-4-C/results/911548353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4961","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","11:40:00","MST","2021-03-16 18:40:00",NA,"0.133",133,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548357","UTAHDWQ_WQX-DC210316-4990620-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990620-0316-4-C/results/911548357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4962","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","10:15:00","MST","2021-03-16 17:15:00",NA,"0.774",774,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548366","UTAHDWQ_WQX-DC210316-4990640-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990640-0316-4-C/results/911548366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4963","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","10:15:00","MST","2021-03-16 17:15:00",NA,"0.734",734,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548370","UTAHDWQ_WQX-DC210316-4990640-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990640-0316-4-C/results/911548370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4964","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","11:30:00","MST","2021-03-16 18:30:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548379","UTAHDWQ_WQX-DC210316-4990650-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990650-0316-4-C/results/911548379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4965","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","11:30:00","MST","2021-03-16 18:30:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548383","UTAHDWQ_WQX-DC210316-4990650-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990650-0316-4-C/results/911548383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4966","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","09:55:00","MST","2021-03-16 16:55:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548392","UTAHDWQ_WQX-DC210316-4990680-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990680-0316-4-C/results/911548392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4967","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","09:55:00","MST","2021-03-16 16:55:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548396","UTAHDWQ_WQX-DC210316-4990680-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990680-0316-4-C/results/911548396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4968","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","11:15:00","MST","2021-03-16 18:15:00",NA,"0.163",163,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548405","UTAHDWQ_WQX-DC210316-4990700-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990700-0316-4-C/results/911548405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4969","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","11:15:00","MST","2021-03-16 18:15:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548409","UTAHDWQ_WQX-DC210316-4990700-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990700-0316-4-C/results/911548409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4970","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","10:40:00","MST","2021-03-16 17:40:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548418","UTAHDWQ_WQX-DC210316-4990987-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990987-0316-4-C/results/911548418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4971","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","10:40:00","MST","2021-03-16 17:40:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548422","UTAHDWQ_WQX-DC210316-4990987-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990987-0316-4-C/results/911548422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4972","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","10:40:00","MST","2021-03-16 17:40:00",NA,"0.179",179,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548431","UTAHDWQ_WQX-DC210316-4990996-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990996-0316-4-C/results/911548431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4973","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","10:40:00","MST","2021-03-16 17:40:00",NA,"0.139",139,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548435","UTAHDWQ_WQX-DC210316-4990996-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990996-0316-4-C/results/911548435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4974","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","10:55:00","MST","2021-03-16 17:55:00",NA,"0.129",129,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548444","UTAHDWQ_WQX-DC210316-4990997-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990997-0316-4-C/results/911548444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4975","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","10:55:00","MST","2021-03-16 17:55:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548448","UTAHDWQ_WQX-DC210316-4990997-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990997-0316-4-C/results/911548448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4976","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","14:51:00","MST","2020-10-05 21:51:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548458","UTAHDWQ_WQX-IDEQBL201005-4900754-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4900754-1005-2-C/results/911548458/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4977","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","14:51:00","MST","2020-10-05 21:51:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548462","UTAHDWQ_WQX-IDEQBL201005-4900754-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4900754-1005-2-C/results/911548462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4978","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","15:00:00","MST","2020-10-05 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548470","UTAHDWQ_WQX-IDEQBL201005-4900755-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4900755-1005-4-C/results/911548470/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4979","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","15:00:00","MST","2020-10-05 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548474","UTAHDWQ_WQX-IDEQBL201005-4900755-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4900755-1005-4-C/results/911548474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4980","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","12:12:00","MST","2020-10-05 19:12:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548562","UTAHDWQ_WQX-IDEQBL201005-4907010-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907010-1005-2-C/results/911548562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4981","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","12:12:00","MST","2020-10-05 19:12:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548566","UTAHDWQ_WQX-IDEQBL201005-4907010-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907010-1005-2-C/results/911548566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4982","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","12:40:00","MST","2020-10-05 19:40:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","38.45",38.45,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548569","UTAHDWQ_WQX-IDEQBL201005-4907010-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907010-1005-29-C/results/911548569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4983","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","12:40:00","MST","2020-10-05 19:40:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","38.45",38.45,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548573","UTAHDWQ_WQX-IDEQBL201005-4907010-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907010-1005-29-C/results/911548573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4984","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","14:04:00","MST","2020-10-05 21:04:00",NA,"0.195",195,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548581","UTAHDWQ_WQX-IDEQBL201005-4907100-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907100-1005-4-C/results/911548581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4985","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","14:04:00","MST","2020-10-05 21:04:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548585","UTAHDWQ_WQX-IDEQBL201005-4907100-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907100-1005-4-C/results/911548585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4986","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","10:55:00","MST","2020-10-06 17:55:00",NA,"0.246",246,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548594","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-2-C/results/911548594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4987","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","10:55:00","MST","2020-10-06 17:55:00",NA,"0.314",314,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548598","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-2-C/results/911548598/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4988","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","11:20:00","MST","2020-10-06 18:20:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","17.47",17.47,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548601","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-23-C/results/911548601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4989","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","11:20:00","MST","2020-10-06 18:20:00",NA,"0.316",316,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","17.47",17.47,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548605","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-23-C/results/911548605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4990","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","11:30:00","MST","2020-10-06 18:30:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","19.43",19.43,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548608","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-27-C/results/911548608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4991","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","11:30:00","MST","2020-10-06 18:30:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","19.43",19.43,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548612","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-27-C/results/911548612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4992","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","11:40:00","MST","2020-10-06 18:40:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","45.77",45.77,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548615","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-29-C/results/911548615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4993","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","11:40:00","MST","2020-10-06 18:40:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","45.77",45.77,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548619","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-29-C/results/911548619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4994","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","13:07:00","MST","2020-10-05 20:07:00",NA,"0.221",221,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548644","UTAHDWQ_WQX-IDEQBL201005-4907200-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907200-1005-4-C/results/911548644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4995","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","13:07:00","MST","2020-10-05 20:07:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548648","UTAHDWQ_WQX-IDEQBL201005-4907200-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907200-1005-4-C/results/911548648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4996","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","10:20:00","MST","2020-10-05 17:20:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548705","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-2-C/results/911548705/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4997","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","10:20:00","MST","2020-10-05 17:20:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548709","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-2-C/results/911548709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4998","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","10:48:00","MST","2020-10-05 17:48:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.27",34.27,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548712","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-29-C/results/911548712/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4999","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","10:48:00","MST","2020-10-05 17:48:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.27",34.27,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548716","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-29-C/results/911548716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5000","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","10:45:00","MST","2020-10-05 17:45:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,"1",1,"Numeric","m","m","16.36",16.36,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"Photic zone integrated water samples taken 1, 4, 7, 10, 13, and 16 m. Licor 1% at 18.3m",NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548725","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-PZ-C/results/911548725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5001","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","10:45:00","MST","2020-10-05 17:45:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,"1",1,"Numeric","m","m","16.36",16.36,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"Photic zone integrated water samples taken 1, 4, 7, 10, 13, and 16 m. Licor 1% at 18.3m",NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548729","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-PZ-C/results/911548729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5002","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-23","10:15:00","MST","2020-11-23 17:15:00",NA,"4.45",4450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548734","UTAHDWQ_WQX-JRBBH201123-4994175-1123-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201123-4994175-1123-4-C/results/911548734/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5003","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-23","10:15:00","MST","2020-11-23 17:15:00",NA,"4.41",4410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548738","UTAHDWQ_WQX-JRBBH201123-4994175-1123-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201123-4994175-1123-4-C/results/911548738/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5004","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-23","09:30:00","MST","2020-11-23 16:30:00",NA,"4.11",4110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548763","UTAHDWQ_WQX-JRBBH201123-4994270-1123-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201123-4994270-1123-4-C/results/911548763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5005","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-23","09:30:00","MST","2020-11-23 16:30:00",NA,"4.09",4090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548767","UTAHDWQ_WQX-JRBBH201123-4994270-1123-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201123-4994270-1123-4-C/results/911548767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5006","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-07","10:45:00","MST","2020-12-07 17:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548793","UTAHDWQ_WQX-JRBBH201207-4990006-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4990006-1207-4-C/results/911548793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5007","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-07","10:45:00","MST","2020-12-07 17:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548797","UTAHDWQ_WQX-JRBBH201207-4990006-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4990006-1207-4-C/results/911548797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5008","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-07","10:30:00","MST","2020-12-07 17:30:00",NA,"4.26",4260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548823","UTAHDWQ_WQX-JRBBH201207-4994175-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994175-1207-4-C/results/911548823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5009","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-07","10:30:00","MST","2020-12-07 17:30:00",NA,"4.58",4580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548827","UTAHDWQ_WQX-JRBBH201207-4994175-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994175-1207-4-C/results/911548827/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5010","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-07","09:50:00","MST","2020-12-07 16:50:00",NA,"4.29",4290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548853","UTAHDWQ_WQX-JRBBH201207-4994270-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994270-1207-4-C/results/911548853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5011","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-07","09:50:00","MST","2020-12-07 16:50:00",NA,"4.46",4460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548857","UTAHDWQ_WQX-JRBBH201207-4994270-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994270-1207-4-C/results/911548857/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5012","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-07","10:00:00","MST","2020-12-07 17:00:00",NA,"4.27",4270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548883","UTAHDWQ_WQX-JRBBH201207-4994271-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994271-1207-4-C/results/911548883/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5013","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-07","10:00:00","MST","2020-12-07 17:00:00",NA,"4.35",4350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548887","UTAHDWQ_WQX-JRBBH201207-4994271-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994271-1207-4-C/results/911548887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5014","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-21","14:30:00","MST","2020-10-21 21:30:00",NA,"2.13",2130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548912","UTAHDWQ_WQX-JRBBH201021-4994175-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201021-4994175-1021-4-C/results/911548912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5015","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-21","14:30:00","MST","2020-10-21 21:30:00",NA,"2.27",2270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548916","UTAHDWQ_WQX-JRBBH201021-4994175-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201021-4994175-1021-4-C/results/911548916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5016","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-21","13:50:00","MST","2020-10-21 20:50:00",NA,"2.11",2110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548941","UTAHDWQ_WQX-JRBBH201021-4994270-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201021-4994270-1021-4-C/results/911548941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5017","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-21","13:50:00","MST","2020-10-21 20:50:00",NA,"2.27",2270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548945","UTAHDWQ_WQX-JRBBH201021-4994270-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201021-4994270-1021-4-C/results/911548945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5018","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-25","11:00:00","MST","2021-01-25 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548971","UTAHDWQ_WQX-JRBBH210125-4990006-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4990006-0125-4-C/results/911548971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5019","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-25","11:00:00","MST","2021-01-25 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911548975","UTAHDWQ_WQX-JRBBH210125-4990006-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4990006-0125-4-C/results/911548975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5020","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-25","10:30:00","MST","2021-01-25 17:30:00",NA,"4.28",4280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549001","UTAHDWQ_WQX-JRBBH210125-4994175-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4994175-0125-4-C/results/911549001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5021","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-25","10:30:00","MST","2021-01-25 17:30:00",NA,"4.31",4310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549005","UTAHDWQ_WQX-JRBBH210125-4994175-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4994175-0125-4-C/results/911549005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5022","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-25","10:15:00","MST","2021-01-25 17:15:00",NA,"4.24",4240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549031","UTAHDWQ_WQX-JRBBH210125-4994270-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4994270-0125-4-C/results/911549031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5023","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-25","10:15:00","MST","2021-01-25 17:15:00",NA,"4.16",4160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549035","UTAHDWQ_WQX-JRBBH210125-4994270-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4994270-0125-4-C/results/911549035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5024","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-24","10:00:00","MST","2021-02-24 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549061","UTAHDWQ_WQX-JRBBH210224-4990006-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4990006-0224-4-C/results/911549061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5025","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-24","10:00:00","MST","2021-02-24 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549065","UTAHDWQ_WQX-JRBBH210224-4990006-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4990006-0224-4-C/results/911549065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5026","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-24","09:45:00","MST","2021-02-24 16:45:00",NA,"4.14",4140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549091","UTAHDWQ_WQX-JRBBH210224-4994175-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994175-0224-4-C/results/911549091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5027","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-24","09:45:00","MST","2021-02-24 16:45:00",NA,"4.14",4140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549095","UTAHDWQ_WQX-JRBBH210224-4994175-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994175-0224-4-C/results/911549095/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5028","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-24","09:10:00","MST","2021-02-24 16:10:00",NA,"4.36",4360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549121","UTAHDWQ_WQX-JRBBH210224-4994270-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994270-0224-4-C/results/911549121/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5029","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-24","09:10:00","MST","2021-02-24 16:10:00",NA,"4.46",4460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549125","UTAHDWQ_WQX-JRBBH210224-4994270-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994270-0224-4-C/results/911549125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5030","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-24","09:20:00","MST","2021-02-24 16:20:00",NA,"4.49",4490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549151","UTAHDWQ_WQX-JRBBH210224-4994271-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994271-0224-4-C/results/911549151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5031","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-24","09:20:00","MST","2021-02-24 16:20:00",NA,"4.26",4260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549155","UTAHDWQ_WQX-JRBBH210224-4994271-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994271-0224-4-C/results/911549155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5032","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-22","10:35:00","MST","2021-03-22 17:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549181","UTAHDWQ_WQX-JRBBH210322-4990006-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4990006-0322-4-C/results/911549181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5033","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-22","10:35:00","MST","2021-03-22 17:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549185","UTAHDWQ_WQX-JRBBH210322-4990006-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4990006-0322-4-C/results/911549185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5034","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-22","10:25:00","MST","2021-03-22 17:25:00",NA,"3.75",3750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549210","UTAHDWQ_WQX-JRBBH210322-4994175-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4994175-0322-4-C/results/911549210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5035","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-22","10:25:00","MST","2021-03-22 17:25:00",NA,"3.8",3800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549214","UTAHDWQ_WQX-JRBBH210322-4994175-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4994175-0322-4-C/results/911549214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5036","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-22","09:40:00","MST","2021-03-22 16:40:00",NA,"3.84",3840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549239","UTAHDWQ_WQX-JRBBH210322-4994270-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4994270-0322-4-C/results/911549239/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5037","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-22","09:40:00","MST","2021-03-22 16:40:00",NA,"3.84",3840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549243","UTAHDWQ_WQX-JRBBH210322-4994270-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4994270-0322-4-C/results/911549243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5038","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-15","08:00:00","MST","2020-10-15 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549270","UTAHDWQ_WQX-LAKES201012-4930007-1015-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4930007-1015-4-C/results/911549270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5039","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-15","08:00:00","MST","2020-10-15 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549274","UTAHDWQ_WQX-LAKES201012-4930007-1015-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4930007-1015-4-C/results/911549274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5040","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-15","08:10:00","MST","2020-10-15 15:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549299","UTAHDWQ_WQX-LAKES201012-4930009-1015-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4930009-1015-4-C/results/911549299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5041","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-15","08:10:00","MST","2020-10-15 15:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549303","UTAHDWQ_WQX-LAKES201012-4930009-1015-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4930009-1015-4-C/results/911549303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5042","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-14","11:20:00","MST","2020-10-14 18:20:00",NA,"0.566",566,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549311","UTAHDWQ_WQX-LAKES201012-4940720-1014-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","UPPER ENTERPRISE RES AB DAM 01","Lake",NA,"37.5188700000",37.51887,"-113.8627500000",-113.86275,"OK","16030006","UTAHDWQ_WQX-4940720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5188700000","-113.8627500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4940720-1014-2-C/results/911549311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5043","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-14","11:20:00","MST","2020-10-14 18:20:00",NA,"0.547",547,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549315","UTAHDWQ_WQX-LAKES201012-4940720-1014-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","UPPER ENTERPRISE RES AB DAM 01","Lake",NA,"37.5188700000",37.51887,"-113.8627500000",-113.86275,"OK","16030006","UTAHDWQ_WQX-4940720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5188700000","-113.8627500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4940720-1014-2-C/results/911549315/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5044","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","13:10:00","MST","2020-10-13 20:10:00",NA,"0.221",221,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549340","UTAHDWQ_WQX-LAKES201012-5941798-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","021","Red Ck bl Red Ck Res","River/Stream",NA,"37.8677200000",37.86772,"-112.6807100000",-112.68071,"OK","16030006","UTAHDWQ_WQX-5941798",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8677200000","-112.6807100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941798-1013-4-C/results/911549340/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5045","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","13:10:00","MST","2020-10-13 20:10:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549344","UTAHDWQ_WQX-LAKES201012-5941798-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","021","Red Ck bl Red Ck Res","River/Stream",NA,"37.8677200000",37.86772,"-112.6807100000",-112.68071,"OK","16030006","UTAHDWQ_WQX-5941798",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8677200000","-112.6807100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941798-1013-4-C/results/911549344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5046","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","14:15:00","MST","2020-10-13 21:15:00",NA,"0.695",695,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549369","UTAHDWQ_WQX-LAKES201012-5941800-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","021","RED CK RES 01 (IRON CO.)","Lake",NA,"37.8660900000",37.86609,"-112.6816100000",-112.68161,"OK","16030006","UTAHDWQ_WQX-5941800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8660900000","-112.6816100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941800-1013-2-C/results/911549369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5047","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","14:15:00","MST","2020-10-13 21:15:00",NA,"0.654",654,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549373","UTAHDWQ_WQX-LAKES201012-5941800-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","021","RED CK RES 01 (IRON CO.)","Lake",NA,"37.8660900000",37.86609,"-112.6816100000",-112.68161,"OK","16030006","UTAHDWQ_WQX-5941800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8660900000","-112.6816100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941800-1013-2-C/results/911549373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5048","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","13:45:00","MST","2020-10-13 20:45:00",NA,"0.47",470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549398","UTAHDWQ_WQX-LAKES201012-5941820-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","021","RED CK AB RED CK RES (IRON CO.)","River/Stream",NA,"37.8588600000",37.85886,"-112.6746600000",-112.67466,"OK","16030006","UTAHDWQ_WQX-5941820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8588600000","-112.6746600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941820-1013-4-C/results/911549398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5049","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","13:45:00","MST","2020-10-13 20:45:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549402","UTAHDWQ_WQX-LAKES201012-5941820-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","021","RED CK AB RED CK RES (IRON CO.)","River/Stream",NA,"37.8588600000",37.85886,"-112.6746600000",-112.67466,"OK","16030006","UTAHDWQ_WQX-5941820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8588600000","-112.6746600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941820-1013-4-C/results/911549402/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5050","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","14:30:00","MST","2020-10-13 21:30:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549422","UTAHDWQ_WQX-LAKES201012-5941900-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","021","YANKEE MEADOWS RES 01","Lake",NA,"37.7530300000",37.75303,"-112.7732800000",-112.77328,"OK","16030006","UTAHDWQ_WQX-5941900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7530300000","-112.7732800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941900-1013-2-C/results/911549422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5051","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","14:30:00","MST","2020-10-13 21:30:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549426","UTAHDWQ_WQX-LAKES201012-5941900-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","021","YANKEE MEADOWS RES 01","Lake",NA,"37.7530300000",37.75303,"-112.7732800000",-112.77328,"OK","16030006","UTAHDWQ_WQX-5941900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7530300000","-112.7732800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941900-1013-2-C/results/911549426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5052","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","15:15:00","MST","2020-10-13 22:15:00",NA,"0.314",314,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549456","UTAHDWQ_WQX-LAKES201012-5941910-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","021","BOWERY CK AB YANKEE MEADOWS RES","River/Stream",NA,"37.7477600000",37.74776,"-112.7713400000",-112.77134,"OK","16030006","UTAHDWQ_WQX-5941910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7477600000","-112.7713400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941910-1013-4-C/results/911549456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5053","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","15:15:00","MST","2020-10-13 22:15:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549460","UTAHDWQ_WQX-LAKES201012-5941910-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","021","BOWERY CK AB YANKEE MEADOWS RES","River/Stream",NA,"37.7477600000",37.74776,"-112.7713400000",-112.77134,"OK","16030006","UTAHDWQ_WQX-5941910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7477600000","-112.7713400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941910-1013-4-C/results/911549460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5054","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-20","16:00:00","MST","2020-10-20 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549485","UTAHDWQ_WQX-LAKES201019-4930007-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4930007-1020-4-C/results/911549485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5055","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-20","16:00:00","MST","2020-10-20 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549489","UTAHDWQ_WQX-LAKES201019-4930007-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4930007-1020-4-C/results/911549489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5056","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-20","16:10:00","MST","2020-10-20 23:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549514","UTAHDWQ_WQX-LAKES201019-4930009-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4930009-1020-4-C/results/911549514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5057","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-20","16:10:00","MST","2020-10-20 23:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549518","UTAHDWQ_WQX-LAKES201019-4930009-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4930009-1020-4-C/results/911549518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5058","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-20","10:05:00","MST","2020-10-20 17:05:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549526","UTAHDWQ_WQX-LAKES201019-4937130-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937130-1020-2-C/results/911549526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5059","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-20","10:05:00","MST","2020-10-20 17:05:00",NA,"0.628",628,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549530","UTAHDWQ_WQX-LAKES201019-4937130-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937130-1020-2-C/results/911549530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5060","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-20","10:50:00","MST","2020-10-20 17:50:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549555","UTAHDWQ_WQX-LAKES201019-4937140-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937140-1020-2-C/results/911549555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5061","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-20","10:50:00","MST","2020-10-20 17:50:00",NA,"0.606",606,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549559","UTAHDWQ_WQX-LAKES201019-4937140-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937140-1020-2-C/results/911549559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5062","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-20","10:15:00","MST","2020-10-20 17:15:00",NA,"0.59",590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549567","UTAHDWQ_WQX-LAKES201019-4937180-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937180-1020-2-C/results/911549567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5063","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-20","10:15:00","MST","2020-10-20 17:15:00",NA,"0.723",723,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549571","UTAHDWQ_WQX-LAKES201019-4937180-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937180-1020-2-C/results/911549571/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5064","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-19","17:10:00","MST","2020-10-20 00:10:00",NA,"0.839",839,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549579","UTAHDWQ_WQX-LAKES201019-5937850-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937850-1019-2-C/results/911549579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5065","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-19","17:10:00","MST","2020-10-20 00:10:00",NA,"0.922",922,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549583","UTAHDWQ_WQX-LAKES201019-5937850-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937850-1019-2-C/results/911549583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5066","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-19","17:25:00","MST","2020-10-20 00:25:00",NA,"0.888",888,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.05",5.05,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549586","UTAHDWQ_WQX-LAKES201019-5937850-1019-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937850-1019-29-C/results/911549586/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5067","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-19","17:25:00","MST","2020-10-20 00:25:00",NA,"0.862",862,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.05",5.05,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549590","UTAHDWQ_WQX-LAKES201019-5937850-1019-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937850-1019-29-C/results/911549590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5068","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-19","16:40:00","MST","2020-10-19 23:40:00",NA,"0.835",835,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549615","UTAHDWQ_WQX-LAKES201019-5937870-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937870-1019-2-C/results/911549615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5069","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-19","16:40:00","MST","2020-10-19 23:40:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549619","UTAHDWQ_WQX-LAKES201019-5937870-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937870-1019-2-C/results/911549619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5070","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-19","16:00:00","MST","2020-10-19 23:00:00",NA,"0.547",547,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549627","UTAHDWQ_WQX-LAKES201019-5937880-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","POT CREEK AB MATT WARNER RES","River/Stream",NA,"40.7688400000",40.76884,"-109.3198600000",-109.31986,"OK","14040106","UTAHDWQ_WQX-5937880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7688400000","-109.3198600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937880-1019-4-C/results/911549627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5071","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-19","16:00:00","MST","2020-10-19 23:00:00",NA,"0.694",694,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549631","UTAHDWQ_WQX-LAKES201019-5937880-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","POT CREEK AB MATT WARNER RES","River/Stream",NA,"40.7688400000",40.76884,"-109.3198600000",-109.31986,"OK","14040106","UTAHDWQ_WQX-5937880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7688400000","-109.3198600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937880-1019-4-C/results/911549631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5072","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","13:00:00","MST","2021-03-31 20:00:00",NA,"0.586",586,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549656","UTAHDWQ_WQX-LAKES210331-4920350-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"41.3505000000",41.3505,"-112.0680000000",-112.068,"OK","16020102","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3505000000","-112.0680000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920350-0331-4-C/results/911549656/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5073","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","13:00:00","MST","2021-03-31 20:00:00",NA,"0.726",726,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549661","UTAHDWQ_WQX-LAKES210331-4920350-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"41.3505000000",41.3505,"-112.0680000000",-112.068,"OK","16020102","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3505000000","-112.0680000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920350-0331-4-C/results/911549661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5074","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","11:10:00","MST","2021-03-31 18:10:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549687","UTAHDWQ_WQX-LAKES210331-4920440-0331-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920440-0331-2-C/results/911549687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5075","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","11:10:00","MST","2021-03-31 18:10:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549692","UTAHDWQ_WQX-LAKES210331-4920440-0331-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920440-0331-2-C/results/911549692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5076","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","11:20:00","MST","2021-03-31 18:20:00",NA,"0.461",461,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.6",3.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549696","UTAHDWQ_WQX-LAKES210331-4920440-0331-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920440-0331-29-C/results/911549696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5077","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","11:20:00","MST","2021-03-31 18:20:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.6",3.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549717","UTAHDWQ_WQX-LAKES210331-4920440-0331-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920440-0331-29-C/results/911549717/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5078","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","10:40:00","MST","2021-03-31 17:40:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549727","UTAHDWQ_WQX-LAKES210331-4920450-0331-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920450-0331-2-C/results/911549727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5079","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","10:40:00","MST","2021-03-31 17:40:00",NA,"0.713",713,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549732","UTAHDWQ_WQX-LAKES210331-4920450-0331-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920450-0331-2-C/results/911549732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5080","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","10:50:00","MST","2021-03-31 17:50:00",NA,"0.363",363,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4.2",4.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549736","UTAHDWQ_WQX-LAKES210331-4920450-0331-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920450-0331-29-C/results/911549736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5081","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","10:50:00","MST","2021-03-31 17:50:00",NA,"0.623",623,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4.2",4.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549741","UTAHDWQ_WQX-LAKES210331-4920450-0331-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920450-0331-29-C/results/911549741/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5082","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","10:00:00","MST","2021-03-31 17:00:00",NA,"0.355",355,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549750","UTAHDWQ_WQX-LAKES210331-4920460-0331-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920460-0331-2-C/results/911549750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5083","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","10:00:00","MST","2021-03-31 17:00:00",NA,"0.639",639,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549755","UTAHDWQ_WQX-LAKES210331-4920460-0331-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920460-0331-2-C/results/911549755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5084","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","10:10:00","MST","2021-03-31 17:10:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.2",5.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549759","UTAHDWQ_WQX-LAKES210331-4920460-0331-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920460-0331-29-C/results/911549759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5085","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","10:10:00","MST","2021-03-31 17:10:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.2",5.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549764","UTAHDWQ_WQX-LAKES210331-4920460-0331-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920460-0331-29-C/results/911549764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5086","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","09:20:00","MST","2021-03-31 16:20:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549773","UTAHDWQ_WQX-LAKES210331-4920470-0331-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920470-0331-2-C/results/911549773/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5087","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","09:20:00","MST","2021-03-31 16:20:00",NA,"0.736",736,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549778","UTAHDWQ_WQX-LAKES210331-4920470-0331-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920470-0331-2-C/results/911549778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5088","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","09:35:00","MST","2021-03-31 16:35:00",NA,"0.333",333,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4.1",4.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549782","UTAHDWQ_WQX-LAKES210331-4920470-0331-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920470-0331-29-C/results/911549782/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5089","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","09:35:00","MST","2021-03-31 16:35:00",NA,"0.348",348,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4.1",4.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549787","UTAHDWQ_WQX-LAKES210331-4920470-0331-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920470-0331-29-C/results/911549787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5090","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","14:30:00","MST","2021-03-31 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549796","UTAHDWQ_WQX-LAKES210331-4930007-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4930007-0331-4-C/results/911549796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5091","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","14:30:00","MST","2021-03-31 21:30:00",NA,"0.16",160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549801","UTAHDWQ_WQX-LAKES210331-4930007-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4930007-0331-4-C/results/911549801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5092","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","14:35:00","MST","2021-03-31 21:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549827","UTAHDWQ_WQX-LAKES210331-4930009-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4930009-0331-4-C/results/911549827/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5093","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","14:35:00","MST","2021-03-31 21:35:00",NA,"0.132",132,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549832","UTAHDWQ_WQX-LAKES210331-4930009-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4930009-0331-4-C/results/911549832/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5094","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-05","17:15:00","MST","2020-11-06 00:15:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549856","UTAHDWQ_WQX-LASAL201105-4958877-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Deer Creek below confluence below Deer Spring","River/Stream",NA,"38.3635400000",38.36354,"-109.2159100000",-109.21591,"OK","14030002","UTAHDWQ_WQX-4958877",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"38.3635400000","-109.2159100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LASAL201105-4958877-1105-4-C/results/911549856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5095","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-05","17:15:00","MST","2020-11-06 00:15:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549860","UTAHDWQ_WQX-LASAL201105-4958877-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Deer Creek below confluence below Deer Spring","River/Stream",NA,"38.3635400000",38.36354,"-109.2159100000",-109.21591,"OK","14030002","UTAHDWQ_WQX-4958877",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"38.3635400000","-109.2159100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LASAL201105-4958877-1105-4-C/results/911549860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5096","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-05","16:30:00","MST","2020-11-05 23:30:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549883","UTAHDWQ_WQX-LASAL201105-4958890-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LASAL CK AB ROAD 073 XING AND AB FISH BARRIER","River/Stream",NA,"38.3851600000",38.38516,"-109.2091100000",-109.20911,"OK","14030002","UTAHDWQ_WQX-4958890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"38.3851600000","-109.2091100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LASAL201105-4958890-1105-4-C/results/911549883/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5097","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-05","16:30:00","MST","2020-11-05 23:30:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549887","UTAHDWQ_WQX-LASAL201105-4958890-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LASAL CK AB ROAD 073 XING AND AB FISH BARRIER","River/Stream",NA,"38.3851600000",38.38516,"-109.2091100000",-109.20911,"OK","14030002","UTAHDWQ_WQX-4958890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"38.3851600000","-109.2091100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LASAL201105-4958890-1105-4-C/results/911549887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5098","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","14:30:00","MST","2020-11-17 21:30:00",NA,"0.374",374,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549892","UTAHDWQ_WQX-LOGANRV201117-4905040-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905040-1117-4-C/results/911549892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5099","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","14:30:00","MST","2020-11-17 21:30:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549895","UTAHDWQ_WQX-LOGANRV201117-4905040-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905040-1117-4-C/results/911549895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5100","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:30:00","MST","2020-11-17 18:30:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549901","UTAHDWQ_WQX-LOGANRV201117-4905140-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905140-1117-4-C/results/911549901/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5101","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:30:00","MST","2020-11-17 18:30:00",NA,"0.375",375,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549905","UTAHDWQ_WQX-LOGANRV201117-4905140-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905140-1117-4-C/results/911549905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5102","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:40:00","MST","2020-11-17 18:40:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549910","UTAHDWQ_WQX-LOGANRV201117-4905142-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905142-1117-4-C/results/911549910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5103","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:40:00","MST","2020-11-17 18:40:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549914","UTAHDWQ_WQX-LOGANRV201117-4905142-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905142-1117-4-C/results/911549914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5104","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","14:00:00","MST","2020-11-17 21:00:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549919","UTAHDWQ_WQX-LOGANRV201117-4905158-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Little Logan River 400 meters ab confluence Logan River","River/Stream",NA,"41.7129900000",41.71299,"-111.8731800000",-111.87318,"OK","16010203","UTAHDWQ_WQX-4905158",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7129900000","-111.8731800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905158-1117-4-C/results/911549919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5105","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","14:00:00","MST","2020-11-17 21:00:00",NA,"0.597",597,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549923","UTAHDWQ_WQX-LOGANRV201117-4905158-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Little Logan River 400 meters ab confluence Logan River","River/Stream",NA,"41.7129900000",41.71299,"-111.8731800000",-111.87318,"OK","16010203","UTAHDWQ_WQX-4905158",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7129900000","-111.8731800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905158-1117-4-C/results/911549923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5106","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:30:00","MST","2020-11-17 17:30:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549928","UTAHDWQ_WQX-LOGANRV201117-4905188-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905188-1117-4-C/results/911549928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5107","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:30:00","MST","2020-11-17 17:30:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549932","UTAHDWQ_WQX-LOGANRV201117-4905188-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905188-1117-4-C/results/911549932/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5108","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","16:15:00","MST","2020-11-17 23:15:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549937","UTAHDWQ_WQX-LOGANRV201117-4905192-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905192-1117-4-C/results/911549937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5109","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","16:15:00","MST","2020-11-17 23:15:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549941","UTAHDWQ_WQX-LOGANRV201117-4905192-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905192-1117-4-C/results/911549941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5110","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:00:00","MST","2020-11-17 17:00:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549946","UTAHDWQ_WQX-LOGANRV201117-4905195-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905195-1117-4-C/results/911549946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5111","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:00:00","MST","2020-11-17 17:00:00",NA,"0.36",360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549950","UTAHDWQ_WQX-LOGANRV201117-4905195-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905195-1117-4-C/results/911549950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5112","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","09:30:00","MST","2020-11-17 16:30:00",NA,"0.407",407,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549955","UTAHDWQ_WQX-LOGANRV201117-4905198-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905198-1117-4-C/results/911549955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5113","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","09:30:00","MST","2020-11-17 16:30:00",NA,"0.373",373,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549959","UTAHDWQ_WQX-LOGANRV201117-4905198-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905198-1117-4-C/results/911549959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5114","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:00:00","MST","2020-11-17 18:00:00",NA,"0.486",486,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549964","UTAHDWQ_WQX-LOGANRV201117-4905400-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905400-1117-4-C/results/911549964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5115","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:00:00","MST","2020-11-17 18:00:00",NA,"0.434",434,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549968","UTAHDWQ_WQX-LOGANRV201117-4905400-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905400-1117-4-C/results/911549968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5116","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-02","12:30:00","MST","2021-02-02 19:30:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549973","UTAHDWQ_WQX-LOGANRV210202-4905040-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905040-0202-4-C/results/911549973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5117","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-02","12:30:00","MST","2021-02-02 19:30:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549977","UTAHDWQ_WQX-LOGANRV210202-4905040-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905040-0202-4-C/results/911549977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5118","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-02","13:00:00","MST","2021-02-02 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549982","UTAHDWQ_WQX-LOGANRV210202-4905135-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905135-0202-4-C/results/911549982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5119","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-02","13:00:00","MST","2021-02-02 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549986","UTAHDWQ_WQX-LOGANRV210202-4905135-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905135-0202-4-C/results/911549986/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5120","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-02","12:45:00","MST","2021-02-02 19:45:00",NA,"0.474",474,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549991","UTAHDWQ_WQX-LOGANRV210202-4905137-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"41.7430900000",41.74309,"-111.9198600000",-111.91986,"OK","16010203","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7430900000","-111.9198600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905137-0202-4-C/results/911549991/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5121","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-02","12:45:00","MST","2021-02-02 19:45:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911549995","UTAHDWQ_WQX-LOGANRV210202-4905137-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"41.7430900000",41.74309,"-111.9198600000",-111.91986,"OK","16010203","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7430900000","-111.9198600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905137-0202-4-C/results/911549995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5122","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-02","11:30:00","MST","2021-02-02 18:30:00",NA,"0.388",388,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550000","UTAHDWQ_WQX-LOGANRV210202-4905140-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905140-0202-4-C/results/911550000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5123","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-02","11:30:00","MST","2021-02-02 18:30:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550004","UTAHDWQ_WQX-LOGANRV210202-4905140-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905140-0202-4-C/results/911550004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5124","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-02","11:35:00","MST","2021-02-02 18:35:00",NA,"0.391",391,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550009","UTAHDWQ_WQX-LOGANRV210202-4905142-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905142-0202-4-C/results/911550009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5125","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-02","11:35:00","MST","2021-02-02 18:35:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550013","UTAHDWQ_WQX-LOGANRV210202-4905142-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905142-0202-4-C/results/911550013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5126","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-02","11:00:00","MST","2021-02-02 18:00:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550018","UTAHDWQ_WQX-LOGANRV210202-4905188-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905188-0202-4-C/results/911550018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5127","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-02","11:00:00","MST","2021-02-02 18:00:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550022","UTAHDWQ_WQX-LOGANRV210202-4905188-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905188-0202-4-C/results/911550022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5128","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-02","10:30:00","MST","2021-02-02 17:30:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550027","UTAHDWQ_WQX-LOGANRV210202-4905192-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905192-0202-4-C/results/911550027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5129","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-02","10:30:00","MST","2021-02-02 17:30:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550031","UTAHDWQ_WQX-LOGANRV210202-4905192-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905192-0202-4-C/results/911550031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5130","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-02","10:00:00","MST","2021-02-02 17:00:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550036","UTAHDWQ_WQX-LOGANRV210202-4905195-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905195-0202-4-C/results/911550036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5131","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-02","10:00:00","MST","2021-02-02 17:00:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550040","UTAHDWQ_WQX-LOGANRV210202-4905195-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905195-0202-4-C/results/911550040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5132","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-02","09:30:00","MST","2021-02-02 16:30:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550045","UTAHDWQ_WQX-LOGANRV210202-4905198-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905198-0202-4-C/results/911550045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5133","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-02","09:30:00","MST","2021-02-02 16:30:00",NA,"0.336",336,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550049","UTAHDWQ_WQX-LOGANRV210202-4905198-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905198-0202-4-C/results/911550049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5134","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-02","11:15:00","MST","2021-02-02 18:15:00",NA,"0.454",454,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550054","UTAHDWQ_WQX-LOGANRV210202-4905400-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905400-0202-4-C/results/911550054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5135","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-02","11:15:00","MST","2021-02-02 18:15:00",NA,"0.477",477,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550058","UTAHDWQ_WQX-LOGANRV210202-4905400-0202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905400-0202-4-C/results/911550058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5136","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","11:15:00","MST","2020-12-08 18:15:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550066","UTAHDWQ_WQX-MAINCK201208-4996880-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996880-1208-4-C/results/911550066/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5137","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","11:15:00","MST","2020-12-08 18:15:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550070","UTAHDWQ_WQX-MAINCK201208-4996880-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996880-1208-4-C/results/911550070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5138","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","13:10:00","MST","2020-12-08 20:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550078","UTAHDWQ_WQX-MAINCK201208-4996903-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996903-1208-4-C/results/911550078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5139","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","13:10:00","MST","2020-12-08 20:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550082","UTAHDWQ_WQX-MAINCK201208-4996903-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996903-1208-4-C/results/911550082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5140","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","10:30:00","MST","2020-12-08 17:30:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550108","UTAHDWQ_WQX-MAINCK201208-4996905-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996905-1208-4-C/results/911550108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5141","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","10:30:00","MST","2020-12-08 17:30:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550112","UTAHDWQ_WQX-MAINCK201208-4996905-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996905-1208-4-C/results/911550112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5142","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","10:35:00","MST","2020-12-08 17:35:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550120","UTAHDWQ_WQX-MAINCK201208-4996906-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996906-1208-4-C/results/911550120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5143","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","10:35:00","MST","2020-12-08 17:35:00",NA,"0.364",364,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550124","UTAHDWQ_WQX-MAINCK201208-4996906-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996906-1208-4-C/results/911550124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5144","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","09:30:00","MST","2020-12-08 16:30:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550132","UTAHDWQ_WQX-MAINCK201208-4996910-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996910-1208-4-C/results/911550132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5145","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","09:30:00","MST","2020-12-08 16:30:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550136","UTAHDWQ_WQX-MAINCK201208-4996910-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996910-1208-4-C/results/911550136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5146","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","10:00:00","MST","2020-12-08 17:00:00",NA,"1.94",1940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550144","UTAHDWQ_WQX-MAINCK201208-5910280-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910280-1208-4-C/results/911550144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5147","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","10:00:00","MST","2020-12-08 17:00:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550148","UTAHDWQ_WQX-MAINCK201208-5910280-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910280-1208-4-C/results/911550148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5148","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","11:55:00","MST","2020-12-08 18:55:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550156","UTAHDWQ_WQX-MAINCK201208-5910290-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910290-1208-4-C/results/911550156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5149","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","11:55:00","MST","2020-12-08 18:55:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550160","UTAHDWQ_WQX-MAINCK201208-5910290-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910290-1208-4-C/results/911550160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5150","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","12:50:00","MST","2020-12-08 19:50:00",NA,"0.843",843,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550168","UTAHDWQ_WQX-MAINCK201208-5910619-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910619-1208-4-C/results/911550168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5151","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","12:50:00","MST","2020-12-08 19:50:00",NA,"0.78",780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550172","UTAHDWQ_WQX-MAINCK201208-5910619-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910619-1208-4-C/results/911550172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5152","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","11:30:00","MST","2020-12-08 18:30:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550198","UTAHDWQ_WQX-MAINCK201208-5910620-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910620-1208-4-C/results/911550198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5153","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","11:30:00","MST","2020-12-08 18:30:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550202","UTAHDWQ_WQX-MAINCK201208-5910620-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910620-1208-4-C/results/911550202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5154","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","12:30:00","MST","2020-12-08 19:30:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550210","UTAHDWQ_WQX-MAINCK201208-5910626-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek 125m upstream of confluence with Main Creek","River/Stream",NA,"40.4039100000",40.40391,"-111.4570200000",-111.45702,"OK","16020203","UTAHDWQ_WQX-5910626",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4039100000","-111.4570200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910626-1208-4-C/results/911550210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5155","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","12:30:00","MST","2020-12-08 19:30:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550214","UTAHDWQ_WQX-MAINCK201208-5910626-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek 125m upstream of confluence with Main Creek","River/Stream",NA,"40.4039100000",40.40391,"-111.4570200000",-111.45702,"OK","16020203","UTAHDWQ_WQX-5910626",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4039100000","-111.4570200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910626-1208-4-C/results/911550214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5156","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-25","11:25:00","MST","2021-02-25 18:25:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550222","UTAHDWQ_WQX-MAINCK210225-4996880-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996880-0225-4-C/results/911550222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5157","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-25","11:25:00","MST","2021-02-25 18:25:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550226","UTAHDWQ_WQX-MAINCK210225-4996880-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996880-0225-4-C/results/911550226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5158","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-25","13:43:00","MST","2021-02-25 20:43:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550234","UTAHDWQ_WQX-MAINCK210225-4996903-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996903-0225-4-C/results/911550234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5159","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-25","13:43:00","MST","2021-02-25 20:43:00",NA,"0.173",173,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550238","UTAHDWQ_WQX-MAINCK210225-4996903-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996903-0225-4-C/results/911550238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5160","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-25","11:00:00","MST","2021-02-25 18:00:00",NA,"0.181",181,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550264","UTAHDWQ_WQX-MAINCK210225-4996905-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996905-0225-4-C/results/911550264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5161","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-25","11:00:00","MST","2021-02-25 18:00:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550268","UTAHDWQ_WQX-MAINCK210225-4996905-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996905-0225-4-C/results/911550268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5162","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-25","11:03:00","MST","2021-02-25 18:03:00",NA,"0.177",177,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550276","UTAHDWQ_WQX-MAINCK210225-4996906-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996906-0225-4-C/results/911550276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5163","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-25","11:03:00","MST","2021-02-25 18:03:00",NA,"0.171",171,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550280","UTAHDWQ_WQX-MAINCK210225-4996906-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996906-0225-4-C/results/911550280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5164","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-25","10:10:00","MST","2021-02-25 17:10:00",NA,"0.152",152,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550288","UTAHDWQ_WQX-MAINCK210225-4996910-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996910-0225-4-C/results/911550288/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5165","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-25","10:10:00","MST","2021-02-25 17:10:00",NA,"0.124",124,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550292","UTAHDWQ_WQX-MAINCK210225-4996910-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996910-0225-4-C/results/911550292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5166","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-25","10:24:00","MST","2021-02-25 17:24:00",NA,"1.84",1840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550300","UTAHDWQ_WQX-MAINCK210225-5910280-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910280-0225-4-C/results/911550300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5167","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-25","10:24:00","MST","2021-02-25 17:24:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550304","UTAHDWQ_WQX-MAINCK210225-5910280-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910280-0225-4-C/results/911550304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5168","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-25","12:56:00","MST","2021-02-25 19:56:00",NA,"0.874",874,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550312","UTAHDWQ_WQX-MAINCK210225-5910290-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910290-0225-4-C/results/911550312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5169","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-25","12:56:00","MST","2021-02-25 19:56:00",NA,"0.841",841,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550316","UTAHDWQ_WQX-MAINCK210225-5910290-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910290-0225-4-C/results/911550316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5170","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-25","13:40:00","MST","2021-02-25 20:40:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550324","UTAHDWQ_WQX-MAINCK210225-5910619-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910619-0225-4-C/results/911550324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5171","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-25","13:40:00","MST","2021-02-25 20:40:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550328","UTAHDWQ_WQX-MAINCK210225-5910619-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910619-0225-4-C/results/911550328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5172","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-25","13:17:00","MST","2021-02-25 20:17:00",NA,"0.221",221,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550354","UTAHDWQ_WQX-MAINCK210225-5910620-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910620-0225-4-C/results/911550354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5173","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-25","13:17:00","MST","2021-02-25 20:17:00",NA,"0.189",189,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550358","UTAHDWQ_WQX-MAINCK210225-5910620-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910620-0225-4-C/results/911550358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5174","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-25","12:27:00","MST","2021-02-25 19:27:00",NA,"0.93",930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550366","UTAHDWQ_WQX-MAINCK210225-5910626-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek 125m upstream of confluence with Main Creek","River/Stream",NA,"40.4039100000",40.40391,"-111.4570200000",-111.45702,"OK","16020203","UTAHDWQ_WQX-5910626",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4039100000","-111.4570200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910626-0225-4-C/results/911550366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5175","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-25","12:27:00","MST","2021-02-25 19:27:00",NA,"0.888",888,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550370","UTAHDWQ_WQX-MAINCK210225-5910626-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek 125m upstream of confluence with Main Creek","River/Stream",NA,"40.4039100000",40.40391,"-111.4570200000",-111.45702,"OK","16020203","UTAHDWQ_WQX-5910626",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4039100000","-111.4570200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910626-0225-4-C/results/911550370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5176","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","11:00:00","MST","2020-11-30 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550377","UTAHDWQ_WQX-NFSDIXIE201130-5949855-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:19",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201130-5949855-1130-4-C/results/911550377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5177","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-21","10:10:00","MST","2020-12-21 17:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550386","UTAHDWQ_WQX-NFSDIXIE201221-5949855-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:19",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201221-5949855-1221-4-C/results/911550386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5178","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-21","10:30:00","MST","2020-12-21 17:30:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550412","UTAHDWQ_WQX-NFSDIXIE201221-5949890-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:19",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201221-5949890-1221-4-C/results/911550412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5179","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-21","10:45:00","MST","2020-12-21 17:45:00",NA,"0.379",379,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550438","UTAHDWQ_WQX-NFSDIXIE201221-5949892-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:19",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201221-5949892-1221-4-C/results/911550438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5180","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-21","11:15:00","MST","2020-12-21 18:15:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550464","UTAHDWQ_WQX-NFSDIXIE201221-5949920-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:19",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201221-5949920-1221-4-C/results/911550464/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5181","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-21","09:30:00","MST","2020-12-21 16:30:00",NA,"0.318",318,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550490","UTAHDWQ_WQX-NFSDIXIE201221-5949930-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201221-5949930-1221-4-C/results/911550490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5182","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-01","09:45:00","MST","2021-02-01 16:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550516","UTAHDWQ_WQX-NFSDIXIE210201-5949855-0201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210201-5949855-0201-4-C/results/911550516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5183","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-01","10:17:00","MST","2021-02-01 17:17:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550525","UTAHDWQ_WQX-NFSDIXIE210201-5949890-0201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210201-5949890-0201-4-C/results/911550525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5184","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-01","10:35:00","MST","2021-02-01 17:35:00",NA,"0.39",390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550534","UTAHDWQ_WQX-NFSDIXIE210201-5949892-0201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210201-5949892-0201-4-C/results/911550534/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5185","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-01","09:30:00","MST","2021-02-01 16:30:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550543","UTAHDWQ_WQX-NFSDIXIE210201-5949920-0201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210201-5949920-0201-4-C/results/911550543/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5186","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-01","10:55:00","MST","2021-02-01 17:55:00",NA,"0.335",335,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550552","UTAHDWQ_WQX-NFSDIXIE210201-5949930-0201-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210201-5949930-0201-4-C/results/911550552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5187","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","10:40:00","MST","2021-02-22 17:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550561","UTAHDWQ_WQX-NFSDIXIE210222-5949855-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210222-5949855-0222-4-C/results/911550561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5188","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","11:00:00","MST","2021-02-22 18:00:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550570","UTAHDWQ_WQX-NFSDIXIE210222-5949890-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210222-5949890-0222-4-C/results/911550570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5189","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","11:15:00","MST","2021-02-22 18:15:00",NA,"0.216",216,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550579","UTAHDWQ_WQX-NFSDIXIE210222-5949892-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210222-5949892-0222-4-C/results/911550579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5190","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","10:20:00","MST","2021-02-22 17:20:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550588","UTAHDWQ_WQX-NFSDIXIE210222-5949920-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210222-5949920-0222-4-C/results/911550588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5191","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","11:40:00","MST","2021-02-22 18:40:00",NA,"0.152",152,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550597","UTAHDWQ_WQX-NFSDIXIE210222-5949930-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210222-5949930-0222-4-C/results/911550597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5192","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-19","11:35:00","MST","2020-10-19 18:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550606","UTAHDWQ_WQX-NFSDIXIE201019-5949855-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201019-5949855-1019-4-C/results/911550606/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5193","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-19","10:15:00","MST","2020-10-19 17:15:00",NA,"0.203",203,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550615","UTAHDWQ_WQX-NFSDIXIE201019-5949890-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201019-5949890-1019-4-C/results/911550615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5194","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-19","10:30:00","MST","2020-10-19 17:30:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550624","UTAHDWQ_WQX-NFSDIXIE201019-5949892-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201019-5949892-1019-4-C/results/911550624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5195","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-19","11:10:00","MST","2020-10-19 18:10:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550633","UTAHDWQ_WQX-NFSDIXIE201019-5949920-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201019-5949920-1019-4-C/results/911550633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5196","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-19","09:30:00","MST","2020-10-19 16:30:00",NA,"0.221",221,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550642","UTAHDWQ_WQX-NFSDIXIE201019-5949930-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201019-5949930-1019-4-C/results/911550642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5197","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","10:00:00","MST","2020-11-30 17:00:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550651","UTAHDWQ_WQX-NFSDIXIE201130-5949890-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201130-5949890-1130-4-C/results/911550651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5198","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","10:20:00","MST","2020-11-30 17:20:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550660","UTAHDWQ_WQX-NFSDIXIE201130-5949892-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201130-5949892-1130-4-C/results/911550660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5199","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","10:45:00","MST","2020-11-30 17:45:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550669","UTAHDWQ_WQX-NFSDIXIE201130-5949920-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201130-5949920-1130-4-C/results/911550669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5200","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-30","09:30:00","MST","2020-11-30 16:30:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550678","UTAHDWQ_WQX-NFSDIXIE201130-5949930-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201130-5949930-1130-4-C/results/911550678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5201","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-10","13:30:00","MST","2020-10-10 20:30:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550689","UTAHDWQ_WQX-NPSCANR201009-4930010-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4930010-1010-4-C/results/911550689/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5202","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-10","13:30:00","MST","2020-10-10 20:30:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550693","UTAHDWQ_WQX-NPSCANR201009-4930010-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4930010-1010-4-C/results/911550693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5203","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-09","14:25:00","MST","2020-10-09 21:25:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550722","UTAHDWQ_WQX-NPSCANR201009-4930150-1009-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4930150-1009-4-C/results/911550722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5204","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-09","14:25:00","MST","2020-10-09 21:25:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550726","UTAHDWQ_WQX-NPSCANR201009-4930150-1009-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4930150-1009-4-C/results/911550726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5205","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-10","12:16:00","MST","2020-10-10 19:16:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550755","UTAHDWQ_WQX-NPSCANR201009-4952380-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4952380-1010-4-C/results/911550755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5206","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-10","12:16:00","MST","2020-10-10 19:16:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550759","UTAHDWQ_WQX-NPSCANR201009-4952380-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4952380-1010-4-C/results/911550759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5207","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-10","13:35:00","MST","2020-10-10 20:35:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550788","UTAHDWQ_WQX-NPSCANR201009-4952400-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4952400-1010-4-C/results/911550788/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5208","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-10","13:35:00","MST","2020-10-10 20:35:00",NA,"0.403",403,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550792","UTAHDWQ_WQX-NPSCANR201009-4952400-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4952400-1010-4-C/results/911550792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5209","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-10","16:09:00","MST","2020-10-10 23:09:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550821","UTAHDWQ_WQX-NPSCANR201009-4956290-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4956290-1010-4-C/results/911550821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5210","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-10","16:09:00","MST","2020-10-10 23:09:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550825","UTAHDWQ_WQX-NPSCANR201009-4956290-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4956290-1010-4-C/results/911550825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5211","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-13","12:30:00","MST","2020-11-13 19:30:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550874","UTAHDWQ_WQX-NPSCANR201111-4930010-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4930010-1113-4-C/results/911550874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5212","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-13","12:30:00","MST","2020-11-13 19:30:00",NA,"0.209",209,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550878","UTAHDWQ_WQX-NPSCANR201111-4930010-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4930010-1113-4-C/results/911550878/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5213","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-11","15:32:00","MST","2020-11-11 22:32:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550907","UTAHDWQ_WQX-NPSCANR201111-4930150-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4930150-1111-4-C/results/911550907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5214","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-11","15:32:00","MST","2020-11-11 22:32:00",NA,"0.178",178,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550911","UTAHDWQ_WQX-NPSCANR201111-4930150-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4930150-1111-4-C/results/911550911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5215","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-13","13:30:00","MST","2020-11-13 20:30:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550920","UTAHDWQ_WQX-NPSCANR201111-4952380-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4952380-1113-4-C/results/911550920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5216","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-13","13:30:00","MST","2020-11-13 20:30:00",NA,"0.594",594,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550924","UTAHDWQ_WQX-NPSCANR201111-4952380-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4952380-1113-4-C/results/911550924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5217","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-13","13:00:00","MST","2020-11-13 20:00:00",NA,"0.741",741,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550953","UTAHDWQ_WQX-NPSCANR201111-4952400-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4952400-1113-4-C/results/911550953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5218","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-13","13:00:00","MST","2020-11-13 20:00:00",NA,"0.8",800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550957","UTAHDWQ_WQX-NPSCANR201111-4952400-1113-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4952400-1113-4-C/results/911550957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5219","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-11","12:30:00","MST","2020-11-11 19:30:00",NA,"0.664",664,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550986","UTAHDWQ_WQX-NPSCANR201111-4956290-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4956290-1111-4-C/results/911550986/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5220","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-11","12:30:00","MST","2020-11-11 19:30:00",NA,"0.676",676,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911550990","UTAHDWQ_WQX-NPSCANR201111-4956290-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4956290-1111-4-C/results/911550990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5221","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-11","12:30:00","MST","2020-11-11 19:30:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551019","UTAHDWQ_WQX-NPSCANR201111-4956291-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4956291-1111-4-C/results/911551019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5222","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-11","12:30:00","MST","2020-11-11 19:30:00",NA,"0.704",704,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551023","UTAHDWQ_WQX-NPSCANR201111-4956291-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4956291-1111-4-C/results/911551023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5223","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-15","11:40:00","MST","2020-11-15 18:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551046","UTAHDWQ_WQX-NPSCANR201111-5995202-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-5995202-1115-4-C/results/911551046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5224","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-15","11:40:00","MST","2020-11-15 18:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551050","UTAHDWQ_WQX-NPSCANR201111-5995202-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-5995202-1115-4-C/results/911551050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5225","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","12:23:00","MST","2021-02-23 19:23:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551079","UTAHDWQ_WQX-NPSCANR210222-4930010-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4930010-0223-4-C/results/911551079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5226","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","12:23:00","MST","2021-02-23 19:23:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551083","UTAHDWQ_WQX-NPSCANR210222-4930010-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4930010-0223-4-C/results/911551083/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5227","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-22","12:41:00","MST","2021-02-22 19:41:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551112","UTAHDWQ_WQX-NPSCANR210222-4930150-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4930150-0222-4-C/results/911551112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5228","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-22","12:41:00","MST","2021-02-22 19:41:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551116","UTAHDWQ_WQX-NPSCANR210222-4930150-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4930150-0222-4-C/results/911551116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5229","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","11:17:00","MST","2021-02-23 18:17:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551145","UTAHDWQ_WQX-NPSCANR210222-4952380-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4952380-0223-4-C/results/911551145/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5230","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","11:17:00","MST","2021-02-23 18:17:00",NA,"0.752",752,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551149","UTAHDWQ_WQX-NPSCANR210222-4952380-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4952380-0223-4-C/results/911551149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5231","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","12:31:00","MST","2021-02-23 19:31:00",NA,"0.586",586,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551178","UTAHDWQ_WQX-NPSCANR210222-4952400-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4952400-0223-4-C/results/911551178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5232","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","12:31:00","MST","2021-02-23 19:31:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551182","UTAHDWQ_WQX-NPSCANR210222-4952400-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4952400-0223-4-C/results/911551182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5233","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","14:49:00","MST","2021-02-23 21:49:00",NA,"0.477",477,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551211","UTAHDWQ_WQX-NPSCANR210222-4956290-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4956290-0223-4-C/results/911551211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5234","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","14:49:00","MST","2021-02-23 21:49:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551215","UTAHDWQ_WQX-NPSCANR210222-4956290-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4956290-0223-4-C/results/911551215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5235","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","14:49:00","MST","2021-02-23 21:49:00",NA,"0.512",512,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551244","UTAHDWQ_WQX-NPSCANR210222-4956291-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4956291-0223-4-C/results/911551244/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5236","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","14:49:00","MST","2021-02-23 21:49:00",NA,"0.51",510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551248","UTAHDWQ_WQX-NPSCANR210222-4956291-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4956291-0223-4-C/results/911551248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5237","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-23","17:21:00","MST","2021-02-24 00:21:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551277","UTAHDWQ_WQX-NPSCANR210222-5995202-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-5995202-0223-4-C/results/911551277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5238","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-23","17:21:00","MST","2021-02-24 00:21:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551281","UTAHDWQ_WQX-NPSCANR210222-5995202-0223-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-5995202-0223-4-C/results/911551281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5239","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","14:16:00","MST","2021-03-31 21:16:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551310","UTAHDWQ_WQX-NPSCANR210329-4930010-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4930010-0331-4-C/results/911551310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5240","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","14:16:00","MST","2021-03-31 21:16:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551314","UTAHDWQ_WQX-NPSCANR210329-4930010-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4930010-0331-4-C/results/911551314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5241","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-29","12:55:00","MST","2021-03-29 19:55:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551343","UTAHDWQ_WQX-NPSCANR210329-4930150-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4930150-0329-4-C/results/911551343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5242","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-29","12:55:00","MST","2021-03-29 19:55:00",NA,"0.387",387,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551347","UTAHDWQ_WQX-NPSCANR210329-4930150-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4930150-0329-4-C/results/911551347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5243","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","13:00:00","MST","2021-03-31 20:00:00",NA,"0.422",422,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551376","UTAHDWQ_WQX-NPSCANR210329-4952380-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4952380-0331-4-C/results/911551376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5244","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","13:00:00","MST","2021-03-31 20:00:00",NA,"0.584",584,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551380","UTAHDWQ_WQX-NPSCANR210329-4952380-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4952380-0331-4-C/results/911551380/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5245","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","14:33:00","MST","2021-03-31 21:33:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551409","UTAHDWQ_WQX-NPSCANR210329-4952400-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4952400-0331-4-C/results/911551409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5246","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","14:33:00","MST","2021-03-31 21:33:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551413","UTAHDWQ_WQX-NPSCANR210329-4952400-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4952400-0331-4-C/results/911551413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5247","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-31","16:51:00","MST","2021-03-31 23:51:00",NA,"0.549",549,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551442","UTAHDWQ_WQX-NPSCANR210329-4956290-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4956290-0331-4-C/results/911551442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5248","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","16:51:00","MST","2021-03-31 23:51:00",NA,"0.609",609,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551446","UTAHDWQ_WQX-NPSCANR210329-4956290-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4956290-0331-4-C/results/911551446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5249","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-07","12:00:00","MST","2020-10-07 19:00:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551475","UTAHDWQ_WQX-NPSETAL201002-4950800-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4950800-1007-4-C/results/911551475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5250","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-07","12:00:00","MST","2020-10-07 19:00:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551479","UTAHDWQ_WQX-NPSETAL201002-4950800-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4950800-1007-4-C/results/911551479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5251","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-08","10:30:00","MST","2020-10-08 17:30:00",NA,"0.64",640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551507","UTAHDWQ_WQX-NPSETAL201002-4950920-1008-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4950920-1008-4-C/results/911551507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5252","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-08","10:30:00","MST","2020-10-08 17:30:00",NA,"0.671",671,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551511","UTAHDWQ_WQX-NPSETAL201002-4950920-1008-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4950920-1008-4-C/results/911551511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5253","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","11:00:00","MST","2020-10-06 18:00:00",NA,"0.102",102,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551540","UTAHDWQ_WQX-NPSETAL201002-4951265-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951265-1006-4-C/results/911551540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5254","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","11:00:00","MST","2020-10-06 18:00:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551544","UTAHDWQ_WQX-NPSETAL201002-4951265-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951265-1006-4-C/results/911551544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5255","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-02","13:45:00","MST","2020-10-02 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551573","UTAHDWQ_WQX-NPSETAL201002-4951855-1002-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951855-1002-4-C/results/911551573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5256","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-02","13:45:00","MST","2020-10-02 20:45:00",NA,"0.096",96,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551577","UTAHDWQ_WQX-NPSETAL201002-4951855-1002-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951855-1002-4-C/results/911551577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5257","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-02","11:15:00","MST","2020-10-02 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551605","UTAHDWQ_WQX-NPSETAL201002-4951857-1002-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951857-1002-4-C/results/911551605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5258","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-02","11:15:00","MST","2020-10-02 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551609","UTAHDWQ_WQX-NPSETAL201002-4951857-1002-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951857-1002-4-C/results/911551609/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5259","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-03","14:30:00","MST","2020-10-03 21:30:00",NA,"0.167",167,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551637","UTAHDWQ_WQX-NPSETAL201002-4954770-1003-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954770-1003-4-C/results/911551637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5260","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-03","14:30:00","MST","2020-10-03 21:30:00",NA,"0.195",195,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551641","UTAHDWQ_WQX-NPSETAL201002-4954770-1003-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954770-1003-4-C/results/911551641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5261","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-03","12:30:00","MST","2020-10-03 19:30:00",NA,"0.163",163,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551670","UTAHDWQ_WQX-NPSETAL201002-4954775-1003-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954775-1003-4-C/results/911551670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5262","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-03","12:30:00","MST","2020-10-03 19:30:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551674","UTAHDWQ_WQX-NPSETAL201002-4954775-1003-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954775-1003-4-C/results/911551674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5263","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","12:30:00","MST","2020-10-13 19:30:00",NA,"0.152",152,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551703","UTAHDWQ_WQX-NPSETAL201002-4954780-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954780-1013-4-C/results/911551703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5264","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","12:30:00","MST","2020-10-13 19:30:00",NA,"0.111",111,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551707","UTAHDWQ_WQX-NPSETAL201002-4954780-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954780-1013-4-C/results/911551707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5265","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","16:00:00","MST","2020-10-13 23:00:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551736","UTAHDWQ_WQX-NPSETAL201002-4954795-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954795-1013-4-C/results/911551736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5266","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","16:00:00","MST","2020-10-13 23:00:00",NA,"0.333",333,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551740","UTAHDWQ_WQX-NPSETAL201002-4954795-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954795-1013-4-C/results/911551740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5267","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","17:30:00","MST","2020-10-14 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551769","UTAHDWQ_WQX-NPSETAL201002-5995202-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-5995202-1013-4-C/results/911551769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5268","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","17:30:00","MST","2020-10-14 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551773","UTAHDWQ_WQX-NPSETAL201002-5995202-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-5995202-1013-4-C/results/911551773/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5269","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-14","11:30:00","MST","2020-10-14 18:30:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551802","UTAHDWQ_WQX-NPSETAL201002-5995700-1014-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-5995700-1014-4-C/results/911551802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5270","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-14","11:30:00","MST","2020-10-14 18:30:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551806","UTAHDWQ_WQX-NPSETAL201002-5995700-1014-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-5995700-1014-4-C/results/911551806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5271","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","13:15:00","MST","2020-11-10 20:15:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551835","UTAHDWQ_WQX-NPSETAL201109-4950800-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4950800-1110-4-C/results/911551835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5272","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","13:15:00","MST","2020-11-10 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551839","UTAHDWQ_WQX-NPSETAL201109-4950800-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4950800-1110-4-C/results/911551839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5273","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-09","16:00:00","MST","2020-11-09 23:00:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551852","UTAHDWQ_WQX-NPSETAL201109-4950920-1109-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4950920-1109-4-C/results/911551852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5274","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-09","16:00:00","MST","2020-11-09 23:00:00",NA,"0.547",547,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551856","UTAHDWQ_WQX-NPSETAL201109-4950920-1109-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4950920-1109-4-C/results/911551856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5275","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-22","12:30:00","MST","2020-11-22 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551869","UTAHDWQ_WQX-NPSETAL201109-4951265-1122-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951265-1122-4-C/results/911551869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5276","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-22","12:30:00","MST","2020-11-22 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551873","UTAHDWQ_WQX-NPSETAL201109-4951265-1122-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951265-1122-4-C/results/911551873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5277","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-22","12:35:00","MST","2020-11-22 19:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551886","UTAHDWQ_WQX-NPSETAL201109-4951266-1122-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951266-1122-4-C/results/911551886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5278","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-22","12:35:00","MST","2020-11-22 19:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551890","UTAHDWQ_WQX-NPSETAL201109-4951266-1122-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951266-1122-4-C/results/911551890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5279","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-11","12:00:00","MST","2020-11-11 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551903","UTAHDWQ_WQX-NPSETAL201109-4951855-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951855-1111-4-C/results/911551903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5280","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-11","12:00:00","MST","2020-11-11 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551907","UTAHDWQ_WQX-NPSETAL201109-4951855-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951855-1111-4-C/results/911551907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5281","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-20","11:00:00","MST","2020-11-20 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551920","UTAHDWQ_WQX-NPSETAL201109-4951857-1120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951857-1120-4-C/results/911551920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5282","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-20","11:00:00","MST","2020-11-20 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551924","UTAHDWQ_WQX-NPSETAL201109-4951857-1120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951857-1120-4-C/results/911551924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5283","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","14:30:00","MST","2020-11-16 21:30:00",NA,"0.131",131,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551937","UTAHDWQ_WQX-NPSETAL201109-4954770-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954770-1116-4-C/results/911551937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5284","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","14:30:00","MST","2020-11-16 21:30:00",NA,"0.143",143,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551941","UTAHDWQ_WQX-NPSETAL201109-4954770-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954770-1116-4-C/results/911551941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5285","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","11:30:00","MST","2020-11-16 18:30:00",NA,"0.134",134,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551954","UTAHDWQ_WQX-NPSETAL201109-4954775-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954775-1116-4-C/results/911551954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5286","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","11:30:00","MST","2020-11-16 18:30:00",NA,"0.123",123,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551958","UTAHDWQ_WQX-NPSETAL201109-4954775-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954775-1116-4-C/results/911551958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5287","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","11:30:00","MST","2020-11-18 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551971","UTAHDWQ_WQX-NPSETAL201109-4954780-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954780-1118-4-C/results/911551971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5288","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","11:30:00","MST","2020-11-18 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551975","UTAHDWQ_WQX-NPSETAL201109-4954780-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954780-1118-4-C/results/911551975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5289","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","15:15:00","MST","2020-11-18 22:15:00",NA,"0.09",90,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551988","UTAHDWQ_WQX-NPSETAL201109-4954795-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954795-1118-4-C/results/911551988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5290","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","15:15:00","MST","2020-11-18 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911551992","UTAHDWQ_WQX-NPSETAL201109-4954795-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954795-1118-4-C/results/911551992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5291","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:30:00","MST","2020-11-17 18:30:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552005","UTAHDWQ_WQX-NPSETAL201109-5995700-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-5995700-1117-4-C/results/911552005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5292","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:30:00","MST","2020-11-17 18:30:00",NA,"0.088",88,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552009","UTAHDWQ_WQX-NPSETAL201109-5995700-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-5995700-1117-4-C/results/911552009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5293","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-09","12:00:00","MST","2020-12-09 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552022","UTAHDWQ_WQX-NPSETAL201208-4950800-1209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4950800-1209-4-C/results/911552022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5294","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-09","12:00:00","MST","2020-12-09 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552026","UTAHDWQ_WQX-NPSETAL201208-4950800-1209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4950800-1209-4-C/results/911552026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5295","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-10","10:00:00","MST","2020-12-10 17:00:00",NA,"0.776",776,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552055","UTAHDWQ_WQX-NPSETAL201208-4950920-1210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4950920-1210-4-C/results/911552055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5296","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-10","10:00:00","MST","2020-12-10 17:00:00",NA,"0.717",717,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552059","UTAHDWQ_WQX-NPSETAL201208-4950920-1210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4950920-1210-4-C/results/911552059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5297","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","13:30:00","MST","2020-12-08 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552088","UTAHDWQ_WQX-NPSETAL201208-4951265-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951265-1208-4-C/results/911552088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5298","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","13:30:00","MST","2020-12-08 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552092","UTAHDWQ_WQX-NPSETAL201208-4951265-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951265-1208-4-C/results/911552092/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5299","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","11:30:00","MST","2020-12-16 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552121","UTAHDWQ_WQX-NPSETAL201208-4951855-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951855-1216-4-C/results/911552121/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5300","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","11:30:00","MST","2020-12-16 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552125","UTAHDWQ_WQX-NPSETAL201208-4951855-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951855-1216-4-C/results/911552125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5301","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","14:00:00","MST","2020-12-16 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552153","UTAHDWQ_WQX-NPSETAL201208-4951857-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:34",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951857-1216-4-C/results/911552153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5302","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","14:00:00","MST","2020-12-16 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552157","UTAHDWQ_WQX-NPSETAL201208-4951857-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:34",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951857-1216-4-C/results/911552157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5303","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","10:45:00","MST","2020-12-14 17:45:00",NA,"0.316",316,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552185","UTAHDWQ_WQX-NPSETAL201208-4954770-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:34",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954770-1214-4-C/results/911552185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5304","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","10:45:00","MST","2020-12-14 17:45:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552189","UTAHDWQ_WQX-NPSETAL201208-4954770-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:34",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954770-1214-4-C/results/911552189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5305","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","15:00:00","MST","2020-12-14 22:00:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552218","UTAHDWQ_WQX-NPSETAL201208-4954775-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:34",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954775-1214-4-C/results/911552218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5306","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","15:00:00","MST","2020-12-14 22:00:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552222","UTAHDWQ_WQX-NPSETAL201208-4954775-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:34",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954775-1214-4-C/results/911552222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5307","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-14","12:00:00","MST","2020-12-14 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552251","UTAHDWQ_WQX-NPSETAL201208-4954780-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954780-1214-4-C/results/911552251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5308","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-14","12:00:00","MST","2020-12-14 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552255","UTAHDWQ_WQX-NPSETAL201208-4954780-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954780-1214-4-C/results/911552255/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5309","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-17","11:00:00","MST","2020-12-17 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552284","UTAHDWQ_WQX-NPSETAL201208-4954795-1217-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954795-1217-4-C/results/911552284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5310","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-17","11:00:00","MST","2020-12-17 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552288","UTAHDWQ_WQX-NPSETAL201208-4954795-1217-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954795-1217-4-C/results/911552288/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5311","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-16","17:30:00","MST","2020-12-17 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552317","UTAHDWQ_WQX-NPSETAL201208-5995202-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-5995202-1216-4-C/results/911552317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5312","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-16","17:30:00","MST","2020-12-17 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552321","UTAHDWQ_WQX-NPSETAL201208-5995202-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-5995202-1216-4-C/results/911552321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5313","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-15","12:15:00","MST","2020-12-15 19:15:00",NA,"0.218",218,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552350","UTAHDWQ_WQX-NPSETAL201208-5995700-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-5995700-1215-4-C/results/911552350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5314","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-15","12:15:00","MST","2020-12-15 19:15:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552354","UTAHDWQ_WQX-NPSETAL201208-5995700-1215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-5995700-1215-4-C/results/911552354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5315","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-09","12:30:00","MST","2021-03-09 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552383","UTAHDWQ_WQX-NPSETAL210302-4950800-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4950800-0309-4-C/results/911552383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5316","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-09","12:30:00","MST","2021-03-09 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552387","UTAHDWQ_WQX-NPSETAL210302-4950800-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4950800-0309-4-C/results/911552387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5317","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-08","15:30:00","MST","2021-03-08 22:30:00",NA,"0.538",538,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552400","UTAHDWQ_WQX-NPSETAL210302-4950920-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4950920-0308-4-C/results/911552400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5318","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-08","15:30:00","MST","2021-03-08 22:30:00",NA,"0.539",539,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552404","UTAHDWQ_WQX-NPSETAL210302-4950920-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4950920-0308-4-C/results/911552404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5319","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-03","12:00:00","MST","2021-03-03 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552417","UTAHDWQ_WQX-NPSETAL210302-4951855-0303-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4951855-0303-4-C/results/911552417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5320","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-03","12:00:00","MST","2021-03-03 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552421","UTAHDWQ_WQX-NPSETAL210302-4951855-0303-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4951855-0303-4-C/results/911552421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5321","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-03","14:45:00","MST","2021-03-03 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552434","UTAHDWQ_WQX-NPSETAL210302-4951857-0303-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4951857-0303-4-C/results/911552434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5322","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-03","14:45:00","MST","2021-03-03 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552438","UTAHDWQ_WQX-NPSETAL210302-4951857-0303-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4951857-0303-4-C/results/911552438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5323","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-02","11:30:00","MST","2021-03-02 18:30:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552451","UTAHDWQ_WQX-NPSETAL210302-4954770-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954770-0302-4-C/results/911552451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5324","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-02","11:30:00","MST","2021-03-02 18:30:00",NA,"0.155",155,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552455","UTAHDWQ_WQX-NPSETAL210302-4954770-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954770-0302-4-C/results/911552455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2055","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-02","14:30:00","MST","2021-03-02 21:30:00",NA,"0.236",236,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552468","UTAHDWQ_WQX-NPSETAL210302-4954775-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954775-0302-4-C/results/911552468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5326","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-02","14:30:00","MST","2021-03-02 21:30:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552472","UTAHDWQ_WQX-NPSETAL210302-4954775-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954775-0302-4-C/results/911552472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2057","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-19","13:45:00","MST","2021-03-19 20:45:00",NA,"0.17",170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552485","UTAHDWQ_WQX-NPSETAL210302-4954780-0319-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954780-0319-4-C/results/911552485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2058","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-19","13:45:00","MST","2021-03-19 20:45:00",NA,"0.177",177,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552489","UTAHDWQ_WQX-NPSETAL210302-4954780-0319-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954780-0319-4-C/results/911552489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5329","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-07","13:15:00","MST","2021-03-07 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552502","UTAHDWQ_WQX-NPSETAL210302-4954795-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954795-0307-4-C/results/911552502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2060","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-07","13:15:00","MST","2021-03-07 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552506","UTAHDWQ_WQX-NPSETAL210302-4954795-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954795-0307-4-C/results/911552506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2061","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","11:00:00","MST","2021-03-18 18:00:00",NA,"0.115",115,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552519","UTAHDWQ_WQX-NPSETAL210302-5995700-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-5995700-0318-4-C/results/911552519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2062","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","11:00:00","MST","2021-03-18 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552523","UTAHDWQ_WQX-NPSETAL210302-5995700-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-5995700-0318-4-C/results/911552523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2063","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","12:10:00","MST","2020-10-27 19:10:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552536","UTAHDWQ_WQX-NPSETALTIMP201027-4994970-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201027-4994970-1027-4-C/results/911552536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2064","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:10:00","MST","2020-10-27 19:10:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552540","UTAHDWQ_WQX-NPSETALTIMP201027-4994970-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201027-4994970-1027-4-C/results/911552540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2065","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:59:00","MST","2020-11-17 18:59:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552572","UTAHDWQ_WQX-NPSETALTIMP201117-4994970-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201117-4994970-1117-4-C/results/911552572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2066","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:59:00","MST","2020-11-17 18:59:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552576","UTAHDWQ_WQX-NPSETALTIMP201117-4994970-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201117-4994970-1117-4-C/results/911552576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2067","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-31","12:37:00","MST","2020-12-31 19:37:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552585","UTAHDWQ_WQX-NPSETALTIMP201231-4994970-1231-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201231-4994970-1231-4-C/results/911552585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2068","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-31","12:37:00","MST","2020-12-31 19:37:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552589","UTAHDWQ_WQX-NPSETALTIMP201231-4994970-1231-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201231-4994970-1231-4-C/results/911552589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2069","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","17:00:00","MST","2021-02-11 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552611","UTAHDWQ_WQX-SANPITCHNPS210210-4946000-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","San Pitch River NPS QAQC Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946000-0210-4-C/results/911552611/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2070","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","17:00:00","MST","2021-02-11 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552615","UTAHDWQ_WQX-SANPITCHNPS210210-4946000-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","San Pitch River NPS QAQC Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946000-0210-4-C/results/911552615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2071","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","16:50:00","MST","2021-02-10 23:50:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552622","UTAHDWQ_WQX-SANPITCHNPS210210-4946450-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"39.2787100000",39.27871,"-111.6782500000",-111.67825,"OK","16030004","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.2787100000","-111.6782500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946450-0210-4-C/results/911552622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2072","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","16:50:00","MST","2021-02-10 23:50:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552626","UTAHDWQ_WQX-SANPITCHNPS210210-4946450-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"39.2787100000",39.27871,"-111.6782500000",-111.67825,"OK","16030004","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.2787100000","-111.6782500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946450-0210-4-C/results/911552626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2073","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","15:50:00","MST","2021-02-10 22:50:00",NA,"1.77",1770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552633","UTAHDWQ_WQX-SANPITCHNPS210210-4946650-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"39.4756600000",39.47566,"-111.5991100000",-111.59911,"OK","16030004","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4756600000","-111.5991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946650-0210-4-C/results/911552633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2074","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","15:50:00","MST","2021-02-10 22:50:00",NA,"1.76",1760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552637","UTAHDWQ_WQX-SANPITCHNPS210210-4946650-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"39.4756600000",39.47566,"-111.5991100000",-111.59911,"OK","16030004","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4756600000","-111.5991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946650-0210-4-C/results/911552637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2075","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","15:40:00","MST","2021-02-10 22:40:00",NA,"2.25",2250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552644","UTAHDWQ_WQX-SANPITCHNPS210210-4946670-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","Silver Ck Ab Cnfl/ San Pitch @ U117 Xing","River/Stream",NA,"39.4758000000",39.4758,"-111.5994100000",-111.59941,"OK","16030004","UTAHDWQ_WQX-4946670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4758000000","-111.5994100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946670-0210-4-C/results/911552644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2076","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","15:40:00","MST","2021-02-10 22:40:00",NA,"1.96",1960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552648","UTAHDWQ_WQX-SANPITCHNPS210210-4946670-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","Silver Ck Ab Cnfl/ San Pitch @ U117 Xing","River/Stream",NA,"39.4758000000",39.4758,"-111.5994100000",-111.59941,"OK","16030004","UTAHDWQ_WQX-4946670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4758000000","-111.5994100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946670-0210-4-C/results/911552648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2077","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","14:00:00","MST","2021-02-10 21:00:00",NA,"0.803",803,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552655","UTAHDWQ_WQX-SANPITCHNPS210210-4946750-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946750-0210-4-C/results/911552655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2078","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","14:00:00","MST","2021-02-10 21:00:00",NA,"0.793",793,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552659","UTAHDWQ_WQX-SANPITCHNPS210210-4946750-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946750-0210-4-C/results/911552659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2079","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","14:22:00","MST","2021-02-10 21:22:00",NA,"0.804",804,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552666","UTAHDWQ_WQX-SANPITCHNPS210210-4946751-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946751-0210-4-C/results/911552666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2080","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","14:22:00","MST","2021-02-10 21:22:00",NA,"0.778",778,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552670","UTAHDWQ_WQX-SANPITCHNPS210210-4946751-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946751-0210-4-C/results/911552670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2081","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","13:45:00","MST","2021-02-10 20:45:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552677","UTAHDWQ_WQX-SANPITCHNPS210210-4946756-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R Bl Fairview WWTP","River/Stream",NA,"39.5747900000",39.57479,"-111.4703900000",-111.47039,"OK","16030004","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5747900000","-111.4703900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946756-0210-4-C/results/911552677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5352","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","13:45:00","MST","2021-02-10 20:45:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552681","UTAHDWQ_WQX-SANPITCHNPS210210-4946756-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R Bl Fairview WWTP","River/Stream",NA,"39.5747900000",39.57479,"-111.4703900000",-111.47039,"OK","16030004","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5747900000","-111.4703900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946756-0210-4-C/results/911552681/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2083","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","11:20:00","MST","2021-02-10 18:20:00",NA,"0.762",762,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552688","UTAHDWQ_WQX-SANPITCHNPS210210-4946790-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R @ US 89 XING N OF FAIRVIEW","River/Stream",NA,"39.6382900000",39.63829,"-111.4465800000",-111.44658,"OK","16030004","UTAHDWQ_WQX-4946790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6382900000","-111.4465800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946790-0210-4-C/results/911552688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2084","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","11:20:00","MST","2021-02-10 18:20:00",NA,"0.757",757,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552692","UTAHDWQ_WQX-SANPITCHNPS210210-4946790-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R @ US 89 XING N OF FAIRVIEW","River/Stream",NA,"39.6382900000",39.63829,"-111.4465800000",-111.44658,"OK","16030004","UTAHDWQ_WQX-4946790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6382900000","-111.4465800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946790-0210-4-C/results/911552692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5355","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","12:20:00","MST","2021-02-10 19:20:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552699","UTAHDWQ_WQX-SANPITCHNPS210210-4946840-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"39.6086000000",39.6086,"-111.4483200000",-111.44832,"OK","16030004","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6086000000","-111.4483200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946840-0210-4-C/results/911552699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2086","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","12:20:00","MST","2021-02-10 19:20:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552703","UTAHDWQ_WQX-SANPITCHNPS210210-4946840-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"39.6086000000",39.6086,"-111.4483200000",-111.44832,"OK","16030004","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6086000000","-111.4483200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946840-0210-4-C/results/911552703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2087","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","15:00:00","MST","2021-02-10 22:00:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552710","UTAHDWQ_WQX-SANPITCHNPS210210-4946960-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AB MORONI WWTP","River/Stream",NA,"39.5147000000",39.5147,"-111.5862800000",-111.58628,"OK","16030004","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5147000000","-111.5862800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946960-0210-4-C/results/911552710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2088","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","15:00:00","MST","2021-02-10 22:00:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552714","UTAHDWQ_WQX-SANPITCHNPS210210-4946960-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AB MORONI WWTP","River/Stream",NA,"39.5147000000",39.5147,"-111.5862800000",-111.58628,"OK","16030004","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5147000000","-111.5862800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946960-0210-4-C/results/911552714/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2089","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-10","15:25:00","MST","2021-02-10 22:25:00",NA,"2.37",2370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552721","UTAHDWQ_WQX-SANPITCHNPS210210-4946980-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"39.5010700000",39.50107,"-111.5854800000",-111.58548,"OK","16030004","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5010700000","-111.5854800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946980-0210-4-C/results/911552721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2090","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-10","15:25:00","MST","2021-02-10 22:25:00",NA,"2.15",2150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552725","UTAHDWQ_WQX-SANPITCHNPS210210-4946980-0210-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"39.5010700000",39.50107,"-111.5854800000",-111.58548,"OK","16030004","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5010700000","-111.5854800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946980-0210-4-C/results/911552725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2091","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","08:00:00","MST","2020-11-10 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552730","UTAHDWQ_WQX-SBCI201109-4940151-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank Sevier-Beaver-Cedar Watershed (Crew 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4940151",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4940151-1110-4-C/results/911552730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2092","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","08:00:00","MST","2020-11-10 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552734","UTAHDWQ_WQX-SBCI201109-4940151-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank Sevier-Beaver-Cedar Watershed (Crew 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4940151",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4940151-1110-4-C/results/911552734/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2093","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-11","08:00:00","MST","2020-11-11 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552756","UTAHDWQ_WQX-SBCI201109-4940151-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank Sevier-Beaver-Cedar Watershed (Crew 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4940151",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4940151-1111-4-C/results/911552756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2094","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-11","08:00:00","MST","2020-11-11 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552760","UTAHDWQ_WQX-SBCI201109-4940151-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank Sevier-Beaver-Cedar Watershed (Crew 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4940151",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4940151-1111-4-C/results/911552760/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2095","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","14:55:00","MST","2020-11-10 21:55:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552782","UTAHDWQ_WQX-SBCI201109-4948721-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Middle Exclosure 0.2 Miles Below Upstream Fenceline","River/Stream",NA,"38.3242700000",38.32427,"-111.9537200000",-111.95372,"OK","16030002","UTAHDWQ_WQX-4948721",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3242700000","-111.9537200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948721-1110-4-C/results/911552782/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2096","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","14:55:00","MST","2020-11-10 21:55:00",NA,"0.669",669,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552786","UTAHDWQ_WQX-SBCI201109-4948721-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Middle Exclosure 0.2 Miles Below Upstream Fenceline","River/Stream",NA,"38.3242700000",38.32427,"-111.9537200000",-111.95372,"OK","16030002","UTAHDWQ_WQX-4948721",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3242700000","-111.9537200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948721-1110-4-C/results/911552786/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2097","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","14:35:00","MST","2020-11-10 21:35:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552808","UTAHDWQ_WQX-SBCI201109-4948722-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Middle Exclosure at Upstream Fenceline","River/Stream",NA,"38.3252000000",38.3252,"-111.9520400000",-111.95204,"OK","16030002","UTAHDWQ_WQX-4948722",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3252000000","-111.9520400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948722-1110-4-C/results/911552808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2098","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","14:35:00","MST","2020-11-10 21:35:00",NA,"0.665",665,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552812","UTAHDWQ_WQX-SBCI201109-4948722-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Middle Exclosure at Upstream Fenceline","River/Stream",NA,"38.3252000000",38.3252,"-111.9520400000",-111.95204,"OK","16030002","UTAHDWQ_WQX-4948722",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3252000000","-111.9520400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948722-1110-4-C/results/911552812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2099","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","14:25:00","MST","2020-11-10 21:25:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552834","UTAHDWQ_WQX-SBCI201109-4948724-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Upper Exclosure at Downstream Fenceline","River/Stream",NA,"38.3255500000",38.32555,"-111.9508600000",-111.95086,"OK","16030002","UTAHDWQ_WQX-4948724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3255500000","-111.9508600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948724-1110-4-C/results/911552834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2100","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","14:25:00","MST","2020-11-10 21:25:00",NA,"0.505",505,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552838","UTAHDWQ_WQX-SBCI201109-4948724-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Upper Exclosure at Downstream Fenceline","River/Stream",NA,"38.3255500000",38.32555,"-111.9508600000",-111.95086,"OK","16030002","UTAHDWQ_WQX-4948724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3255500000","-111.9508600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948724-1110-4-C/results/911552838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2101","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","14:10:00","MST","2020-11-10 21:10:00",NA,"0.597",597,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552860","UTAHDWQ_WQX-SBCI201109-4948726-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Upper Exclosure 0.2 Miles Below Upstream Fenceline","River/Stream",NA,"38.3324400000",38.33244,"-111.9472900000",-111.94729,"OK","16030002","UTAHDWQ_WQX-4948726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3324400000","-111.9472900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948726-1110-4-C/results/911552860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2102","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","14:10:00","MST","2020-11-10 21:10:00",NA,"0.531",531,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552864","UTAHDWQ_WQX-SBCI201109-4948726-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Upper Exclosure 0.2 Miles Below Upstream Fenceline","River/Stream",NA,"38.3324400000",38.33244,"-111.9472900000",-111.94729,"OK","16030002","UTAHDWQ_WQX-4948726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3324400000","-111.9472900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948726-1110-4-C/results/911552864/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2103","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","13:30:00","MST","2020-11-10 20:30:00",NA,"0.555",555,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552886","UTAHDWQ_WQX-SBCI201109-4948727-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek 1 Mile Above BLM Upper Exclosure Upstream Fenceline","River/Stream",NA,"38.3432200000",38.34322,"-111.9467000000",-111.9467,"OK","16030002","UTAHDWQ_WQX-4948727",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3432200000","-111.9467000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948727-1110-4-C/results/911552886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2104","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","13:30:00","MST","2020-11-10 20:30:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552890","UTAHDWQ_WQX-SBCI201109-4948727-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek 1 Mile Above BLM Upper Exclosure Upstream Fenceline","River/Stream",NA,"38.3432200000",38.34322,"-111.9467000000",-111.9467,"OK","16030002","UTAHDWQ_WQX-4948727",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3432200000","-111.9467000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948727-1110-4-C/results/911552890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2105","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","13:55:00","MST","2020-11-10 20:55:00",NA,"0.528",528,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552912","UTAHDWQ_WQX-SBCI201109-4948728-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Upper Exclosure at Upstream Fenceline","River/Stream",NA,"38.3345400000",38.33454,"-111.9467600000",-111.94676,"OK","16030002","UTAHDWQ_WQX-4948728",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3345400000","-111.9467600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948728-1110-4-C/results/911552912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2106","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","13:55:00","MST","2020-11-10 20:55:00",NA,"0.538",538,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552916","UTAHDWQ_WQX-SBCI201109-4948728-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Upper Exclosure at Upstream Fenceline","River/Stream",NA,"38.3345400000",38.33454,"-111.9467600000",-111.94676,"OK","16030002","UTAHDWQ_WQX-4948728",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3345400000","-111.9467600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948728-1110-4-C/results/911552916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2107","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-11","10:45:00","MST","2020-11-11 17:45:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552938","UTAHDWQ_WQX-SBCI201109-4948870-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948870-1111-4-C/results/911552938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2108","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-11","10:45:00","MST","2020-11-11 17:45:00",NA,"0.581",581,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552942","UTAHDWQ_WQX-SBCI201109-4948870-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948870-1111-4-C/results/911552942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2109","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","15:30:00","MST","2020-11-10 22:30:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552964","UTAHDWQ_WQX-SBCI201109-4948878-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Lower Exclosure near downstream Fenceline and above bridge","River/Stream",NA,"38.2957400000",38.29574,"-111.9519900000",-111.95199,"OK","16030002","UTAHDWQ_WQX-4948878",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2957400000","-111.9519900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948878-1110-4-C/results/911552964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2110","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","15:30:00","MST","2020-11-10 22:30:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552968","UTAHDWQ_WQX-SBCI201109-4948878-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Lower Exclosure near downstream Fenceline and above bridge","River/Stream",NA,"38.2957400000",38.29574,"-111.9519900000",-111.95199,"OK","16030002","UTAHDWQ_WQX-4948878",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2957400000","-111.9519900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948878-1110-4-C/results/911552968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2111","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","15:10:00","MST","2020-11-10 22:10:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552990","UTAHDWQ_WQX-SBCI201109-4948885-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Lower Exclosure at Upstream Fenceline","River/Stream",NA,"38.3110100000",38.31101,"-111.9528400000",-111.95284,"OK","16030002","UTAHDWQ_WQX-4948885",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3110100000","-111.9528400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948885-1110-4-C/results/911552990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2112","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","15:10:00","MST","2020-11-10 22:10:00",NA,"0.5",500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911552994","UTAHDWQ_WQX-SBCI201109-4948885-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","Otter Creek at BLM Lower Exclosure at Upstream Fenceline","River/Stream",NA,"38.3110100000",38.31101,"-111.9528400000",-111.95284,"OK","16030002","UTAHDWQ_WQX-4948885",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3110100000","-111.9528400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948885-1110-4-C/results/911552994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2113","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-10","13:15:00","MST","2020-11-10 20:15:00",NA,"0.513",513,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553016","UTAHDWQ_WQX-SBCI201109-4948940-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","OTTER CREEK AT THE NARROWS","River/Stream",NA,"38.3520900000",38.35209,"-111.9464200000",-111.94642,"OK","16030002","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3520900000","-111.9464200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948940-1110-4-C/results/911553016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2114","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-10","13:15:00","MST","2020-11-10 20:15:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553020","UTAHDWQ_WQX-SBCI201109-4948940-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","OTTER CREEK AT THE NARROWS","River/Stream",NA,"38.3520900000",38.35209,"-111.9464200000",-111.94642,"OK","16030002","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3520900000","-111.9464200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948940-1110-4-C/results/911553020/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2115","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-11","11:25:00","MST","2020-11-11 18:25:00",NA,"0.521",521,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553042","UTAHDWQ_WQX-SBCI201109-4949540-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","017","ANTIMONY CK AT U-22 XING AB CNFL/ E FK SEVIER R","River/Stream",NA,"38.0908100000",38.09081,"-111.9815800000",-111.98158,"OK","16030002","UTAHDWQ_WQX-4949540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.0908100000","-111.9815800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4949540-1111-4-C/results/911553042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5386","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-11","11:25:00","MST","2020-11-11 18:25:00",NA,"0.518",518,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553046","UTAHDWQ_WQX-SBCI201109-4949540-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","017","ANTIMONY CK AT U-22 XING AB CNFL/ E FK SEVIER R","River/Stream",NA,"38.0908100000",38.09081,"-111.9815800000",-111.98158,"OK","16030002","UTAHDWQ_WQX-4949540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.0908100000","-111.9815800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4949540-1111-4-C/results/911553046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2117","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-11","10:55:00","MST","2020-11-11 17:55:00",NA,"0.388",388,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553068","UTAHDWQ_WQX-SBCI201109-4949950-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870","River/Stream","Replicate of 4948870","38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4949950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4949950-1111-4-C/results/911553068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2118","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-11","10:55:00","MST","2020-11-11 17:55:00",NA,"0.507",507,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553072","UTAHDWQ_WQX-SBCI201109-4949950-1111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870","River/Stream","Replicate of 4948870","38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4949950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4949950-1111-4-C/results/911553072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2119","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-15","14:24:00","MST","2021-01-15 21:24:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553094","UTAHDWQ_WQX-SPANISHFKR210115-4995578-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-4995578-0115-4-C/results/911553094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2120","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-15","14:24:00","MST","2021-01-15 21:24:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553099","UTAHDWQ_WQX-SPANISHFKR210115-4995578-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-4995578-0115-4-C/results/911553099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2121","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-15","14:10:00","MST","2021-01-15 21:10:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553104","UTAHDWQ_WQX-SPANISHFKR210115-4995580-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-4995580-0115-4-C/results/911553104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2122","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-15","14:10:00","MST","2021-01-15 21:10:00",NA,"0.429",429,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553109","UTAHDWQ_WQX-SPANISHFKR210115-4995580-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-4995580-0115-4-C/results/911553109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2123","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-15","11:40:00","MST","2021-01-15 18:40:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553114","UTAHDWQ_WQX-SPANISHFKR210115-5919920-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919920-0115-4-C/results/911553114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2124","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-15","11:40:00","MST","2021-01-15 18:40:00",NA,"0.407",407,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553119","UTAHDWQ_WQX-SPANISHFKR210115-5919920-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919920-0115-4-C/results/911553119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2125","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-15","14:30:00","MST","2021-01-15 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553124","UTAHDWQ_WQX-SPANISHFKR210115-5919942-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919942-0115-4-C/results/911553124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2126","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-15","14:30:00","MST","2021-01-15 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553129","UTAHDWQ_WQX-SPANISHFKR210115-5919942-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919942-0115-4-C/results/911553129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2127","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-15","13:00:00","MST","2021-01-15 20:00:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553134","UTAHDWQ_WQX-SPANISHFKR210115-5919970-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919970-0115-4-C/results/911553134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2128","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-15","13:00:00","MST","2021-01-15 20:00:00",NA,"0.473",473,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553139","UTAHDWQ_WQX-SPANISHFKR210115-5919970-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919970-0115-4-C/results/911553139/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2129","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-15","13:22:00","MST","2021-01-15 20:22:00",NA,"0.439",439,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553144","UTAHDWQ_WQX-SPANISHFKR210115-5919971-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919971-0115-4-C/results/911553144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2130","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-15","13:22:00","MST","2021-01-15 20:22:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553149","UTAHDWQ_WQX-SPANISHFKR210115-5919971-0115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919971-0115-4-C/results/911553149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2131","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-24","12:17:00","MST","2021-02-24 19:17:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553154","UTAHDWQ_WQX-SPANISHFKR210224-4995578-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-4995578-0224-4-C/results/911553154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2132","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-24","12:17:00","MST","2021-02-24 19:17:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553159","UTAHDWQ_WQX-SPANISHFKR210224-4995578-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-4995578-0224-4-C/results/911553159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2133","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-24","11:46:00","MST","2021-02-24 18:46:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553164","UTAHDWQ_WQX-SPANISHFKR210224-4995580-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-4995580-0224-4-C/results/911553164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2134","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-24","11:46:00","MST","2021-02-24 18:46:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553169","UTAHDWQ_WQX-SPANISHFKR210224-4995580-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-4995580-0224-4-C/results/911553169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2135","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-24","09:27:00","MST","2021-02-24 16:27:00",NA,"0.284",284,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553174","UTAHDWQ_WQX-SPANISHFKR210224-5919920-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919920-0224-4-C/results/911553174/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2136","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-24","09:27:00","MST","2021-02-24 16:27:00",NA,"0.277",277,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553179","UTAHDWQ_WQX-SPANISHFKR210224-5919920-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919920-0224-4-C/results/911553179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2137","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-24","12:34:00","MST","2021-02-24 19:34:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553184","UTAHDWQ_WQX-SPANISHFKR210224-5919942-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919942-0224-4-C/results/911553184/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2138","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-24","12:34:00","MST","2021-02-24 19:34:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553189","UTAHDWQ_WQX-SPANISHFKR210224-5919942-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919942-0224-4-C/results/911553189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2139","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-24","10:52:00","MST","2021-02-24 17:52:00",NA,"0.391",391,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553194","UTAHDWQ_WQX-SPANISHFKR210224-5919970-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919970-0224-4-C/results/911553194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2140","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-24","10:52:00","MST","2021-02-24 17:52:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553199","UTAHDWQ_WQX-SPANISHFKR210224-5919970-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919970-0224-4-C/results/911553199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2141","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-24","11:24:00","MST","2021-02-24 18:24:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553204","UTAHDWQ_WQX-SPANISHFKR210224-5919971-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919971-0224-4-C/results/911553204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2142","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-24","11:24:00","MST","2021-02-24 18:24:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553209","UTAHDWQ_WQX-SPANISHFKR210224-5919971-0224-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919971-0224-4-C/results/911553209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2143","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","13:12:00","MST","2021-03-18 20:12:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553214","UTAHDWQ_WQX-SPANISHFKR210318-4995578-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-4995578-0318-4-C/results/911553214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2144","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","13:12:00","MST","2021-03-18 20:12:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553219","UTAHDWQ_WQX-SPANISHFKR210318-4995578-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-4995578-0318-4-C/results/911553219/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2145","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","12:24:00","MST","2021-03-18 19:24:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553224","UTAHDWQ_WQX-SPANISHFKR210318-4995580-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-4995580-0318-4-C/results/911553224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2146","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","12:24:00","MST","2021-03-18 19:24:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553229","UTAHDWQ_WQX-SPANISHFKR210318-4995580-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-4995580-0318-4-C/results/911553229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2147","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","10:32:00","MST","2021-03-18 17:32:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553234","UTAHDWQ_WQX-SPANISHFKR210318-5919920-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919920-0318-4-C/results/911553234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2148","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","10:32:00","MST","2021-03-18 17:32:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553239","UTAHDWQ_WQX-SPANISHFKR210318-5919920-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919920-0318-4-C/results/911553239/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2149","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","13:36:00","MST","2021-03-18 20:36:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553244","UTAHDWQ_WQX-SPANISHFKR210318-5919942-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919942-0318-4-C/results/911553244/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2150","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","13:36:00","MST","2021-03-18 20:36:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553249","UTAHDWQ_WQX-SPANISHFKR210318-5919942-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919942-0318-4-C/results/911553249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2151","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","11:38:00","MST","2021-03-18 18:38:00",NA,"0.316",316,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553254","UTAHDWQ_WQX-SPANISHFKR210318-5919970-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919970-0318-4-C/results/911553254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2152","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","11:38:00","MST","2021-03-18 18:38:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553259","UTAHDWQ_WQX-SPANISHFKR210318-5919970-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919970-0318-4-C/results/911553259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2153","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","11:41:00","MST","2021-03-18 18:41:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553264","UTAHDWQ_WQX-SPANISHFKR210318-5919971-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919971-0318-4-C/results/911553264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2154","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","11:41:00","MST","2021-03-18 18:41:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553269","UTAHDWQ_WQX-SPANISHFKR210318-5919971-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919971-0318-4-C/results/911553269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2155","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-01","09:00:00","MST","2020-10-01 16:00:00",NA,"0.146",146,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553276","UTAHDWQ_WQX-UCASE2020-4933302-1001-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","013","Upper Water Hollow Canyon 1.0 mile above Minnie Maud Road crossing","River/Stream",NA,"39.8249500000",39.82495,"-110.6100600000",-110.61006,"OK","14060005","UTAHDWQ_WQX-4933302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.8249500000","-110.6100600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4933302-1001-4-C/results/911553276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2156","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-01","09:00:00","MST","2020-10-01 16:00:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553280","UTAHDWQ_WQX-UCASE2020-4933302-1001-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","013","Upper Water Hollow Canyon 1.0 mile above Minnie Maud Road crossing","River/Stream",NA,"39.8249500000",39.82495,"-110.6100600000",-110.61006,"OK","14060005","UTAHDWQ_WQX-4933302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.8249500000","-110.6100600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4933302-1001-4-C/results/911553280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2157","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553301","UTAHDWQ_WQX-UCASE2020-4944202-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","041","Willow Creek 0.75 miles above confluence with Mill Creek","River/Stream",NA,"39.0097000000",39.0097,"-111.6916300000",-111.69163,"OK","16030003","UTAHDWQ_WQX-4944202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.0097000000","-111.6916300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4944202-1027-4-C/results/911553301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2158","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:00:00","MST","2020-10-27 17:00:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553309","UTAHDWQ_WQX-UCASE2020-4944202-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","041","Willow Creek 0.75 miles above confluence with Mill Creek","River/Stream",NA,"39.0097000000",39.0097,"-111.6916300000",-111.69163,"OK","16030003","UTAHDWQ_WQX-4944202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.0097000000","-111.6916300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4944202-1027-4-C/results/911553309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2159","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553330","UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","TWELVEMILE CK AB DIVERSION (UT09ST-736)","River/Stream",NA,"39.1437700000",39.14377,"-111.7319800000",-111.73198,"OK","16030004","UTAHDWQ_WQX-4946140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.1437700000","-111.7319800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C/results/911553330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2160","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553338","UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","TWELVEMILE CK AB DIVERSION (UT09ST-736)","River/Stream",NA,"39.1437700000",39.14377,"-111.7319800000",-111.73198,"OK","16030004","UTAHDWQ_WQX-4946140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.1437700000","-111.7319800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C/results/911553338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2161","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-26","12:00:00","MST","2020-10-26 19:00:00",NA,"0.395",395,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553341","UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","TWELVEMILE CK AB DIVERSION (UT09ST-736)","River/Stream",NA,"39.1437700000",39.14377,"-111.7319800000",-111.73198,"OK","16030004","UTAHDWQ_WQX-4946140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.1437700000","-111.7319800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C/results/911553341/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2162","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-15","09:25:00","MST","2020-10-15 16:25:00",NA,"0.333",333,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553364","UTAHDWQ_WQX-UCASE2020-4955052-1015-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","019","Bear Creek 100 meters above confluence with Beaver Creek","River/Stream",NA,"38.5727300000",38.57273,"-109.1786600000",-109.17866,"OK","14030004","UTAHDWQ_WQX-4955052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5727300000","-109.1786600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955052-1015-4-C/results/911553364/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2163","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-15","09:25:00","MST","2020-10-15 16:25:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553368","UTAHDWQ_WQX-UCASE2020-4955052-1015-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","019","Bear Creek 100 meters above confluence with Beaver Creek","River/Stream",NA,"38.5727300000",38.57273,"-109.1786600000",-109.17866,"OK","14030004","UTAHDWQ_WQX-4955052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5727300000","-109.1786600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955052-1015-4-C/results/911553368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2164","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-20","09:30:00","MST","2020-10-20 16:30:00",NA,"0.191",191,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553393","UTAHDWQ_WQX-UCASE2020-4955102-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Deer Creek 1.25 miles below Burr Trail road crossing","River/Stream",NA,"37.8387000000",37.8387,"-111.3617200000",-111.36172,"OK","14070005","UTAHDWQ_WQX-4955102",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8387000000","-111.3617200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955102-1020-4-C/results/911553393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2165","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-21","09:30:00","MST","2020-10-21 16:30:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553419","UTAHDWQ_WQX-UCASE2020-4955152-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Dirty Devil River 1.25 stream miles ab North Hatch Canyon Road crossing","River/Stream",NA,"38.1005000000",38.1005,"-110.3939200000",-110.39392,"OK","14070004","UTAHDWQ_WQX-4955152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.1005000000","-110.3939200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955152-1021-4-C/results/911553419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2166","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-21","09:30:00","MST","2020-10-21 16:30:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553423","UTAHDWQ_WQX-UCASE2020-4955152-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Dirty Devil River 1.25 stream miles ab North Hatch Canyon Road crossing","River/Stream",NA,"38.1005000000",38.1005,"-110.3939200000",-110.39392,"OK","14070004","UTAHDWQ_WQX-4955152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.1005000000","-110.3939200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955152-1021-4-C/results/911553423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2167","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-22","09:30:00","MST","2020-10-22 16:30:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553448","UTAHDWQ_WQX-UCASE2020-4955202-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","055","Dirty Devil River 225 meters below confluence with Robbers Roost Canyon","River/Stream",NA,"38.3186000000",38.3186,"-110.5366700000",-110.53667,"OK","14070004","UTAHDWQ_WQX-4955202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3186000000","-110.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955202-1022-4-C/results/911553448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2168","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-22","09:30:00","MST","2020-10-22 16:30:00",NA,"0.303",303,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553452","UTAHDWQ_WQX-UCASE2020-4955202-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","055","Dirty Devil River 225 meters below confluence with Robbers Roost Canyon","River/Stream",NA,"38.3186000000",38.3186,"-110.5366700000",-110.53667,"OK","14070004","UTAHDWQ_WQX-4955202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3186000000","-110.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955202-1022-4-C/results/911553452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2169","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-15","13:35:00","MST","2020-10-15 20:35:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553477","UTAHDWQ_WQX-UCASE2020-4958032-1015-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","019","Castle Valley CK 1/4 mi ab U-128 x-ing","River/Stream",NA,"38.6710800000",38.67108,"-109.4499300000",-109.44993,"OK","14030005","UTAHDWQ_WQX-4958032",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.6710800000","-109.4499300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958032-1015-4-C/results/911553477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2170","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-15","13:35:00","MST","2020-10-15 20:35:00",NA,"0.325",325,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553481","UTAHDWQ_WQX-UCASE2020-4958032-1015-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","019","Castle Valley CK 1/4 mi ab U-128 x-ing","River/Stream",NA,"38.6710800000",38.67108,"-109.4499300000",-109.44993,"OK","14030005","UTAHDWQ_WQX-4958032",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.6710800000","-109.4499300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958032-1015-4-C/results/911553481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5441","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","16:45:00","MST","2020-10-13 23:45:00",NA,"0.204",204,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553506","UTAHDWQ_WQX-UCASE2020-4958877-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","037","Deer Creek below confluence below Deer Spring","River/Stream",NA,"38.3635400000",38.36354,"-109.2159100000",-109.21591,"OK","14030002","UTAHDWQ_WQX-4958877",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3635400000","-109.2159100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958877-1013-4-C/results/911553506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2172","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","16:45:00","MST","2020-10-13 23:45:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553510","UTAHDWQ_WQX-UCASE2020-4958877-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","037","Deer Creek below confluence below Deer Spring","River/Stream",NA,"38.3635400000",38.36354,"-109.2159100000",-109.21591,"OK","14030002","UTAHDWQ_WQX-4958877",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3635400000","-109.2159100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958877-1013-4-C/results/911553510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2173","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","14:30:00","MST","2020-10-13 21:30:00",NA,"0.161",161,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553535","UTAHDWQ_WQX-UCASE2020-4958883-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","037","BEAVER CREEK ABOVE CHICKEN CR DIVERSION DITCH","River/Stream",NA,"38.3896700000",38.38967,"-109.1694300000",-109.16943,"OK","14030002","UTAHDWQ_WQX-4958883",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3896700000","-109.1694300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958883-1013-4-C/results/911553535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5444","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","14:30:00","MST","2020-10-13 21:30:00",NA,"0.16",160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553539","UTAHDWQ_WQX-UCASE2020-4958883-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","037","BEAVER CREEK ABOVE CHICKEN CR DIVERSION DITCH","River/Stream",NA,"38.3896700000",38.38967,"-109.1694300000",-109.16943,"OK","14030002","UTAHDWQ_WQX-4958883",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3896700000","-109.1694300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958883-1013-4-C/results/911553539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2175","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-13","15:45:00","MST","2020-10-13 22:45:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553564","UTAHDWQ_WQX-UCASE2020-4958890-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","037","LASAL CK AB ROAD 073 XING AND AB FISH BARRIER","River/Stream",NA,"38.3851600000",38.38516,"-109.2091100000",-109.20911,"OK","14030002","UTAHDWQ_WQX-4958890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3851600000","-109.2091100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958890-1013-4-C/results/911553564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2176","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-13","15:45:00","MST","2020-10-13 22:45:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553568","UTAHDWQ_WQX-UCASE2020-4958890-1013-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","037","LASAL CK AB ROAD 073 XING AND AB FISH BARRIER","River/Stream",NA,"38.3851600000",38.38516,"-109.2091100000",-109.20911,"OK","14030002","UTAHDWQ_WQX-4958890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3851600000","-109.2091100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958890-1013-4-C/results/911553568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2177","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-01","14:30:00","MST","2020-10-01 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553593","UTAHDWQ_WQX-UCASE2020-5989995-1001-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1001-4-C/results/911553593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2178","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-01","14:30:00","MST","2020-10-01 21:30:00",NA,"0.139",139,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553597","UTAHDWQ_WQX-UCASE2020-5989995-1001-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1001-4-C/results/911553597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2179","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-16","12:00:00","MST","2020-10-16 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553622","UTAHDWQ_WQX-UCASE2020-5989995-1016-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1016-4-C/results/911553622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2180","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-16","12:00:00","MST","2020-10-16 19:00:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553626","UTAHDWQ_WQX-UCASE2020-5989995-1016-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1016-4-C/results/911553626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5451","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-23","09:00:00","MST","2020-10-23 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553651","UTAHDWQ_WQX-UCASE2020-5989995-1023-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1023-4-C/results/911553651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2182","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-23","09:00:00","MST","2020-10-23 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553655","UTAHDWQ_WQX-UCASE2020-5989995-1023-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1023-4-C/results/911553655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2183","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:30:00","MST","2020-10-28 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553680","UTAHDWQ_WQX-UCASE2020-5989995-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","19","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1028-4-C/results/911553680/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5454","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:30:00","MST","2020-10-28 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 N C ~ Persufate Method for Total Nitrogen",NA,"4500-N-C","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553683","UTAHDWQ_WQX-UCASE2020-5989995-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","19","Duplicate","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1028-4-C/results/911553683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2185","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","16:15:00","MST","2020-10-05 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553711","UTAHDWQ_WQX-UTLK201005-4910009-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1005-4-C/results/911553711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2186","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","16:15:00","MST","2020-10-05 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553716","UTAHDWQ_WQX-UTLK201005-4910009-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1005-4-C/results/911553716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5457","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","16:50:00","MST","2020-10-06 23:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553749","UTAHDWQ_WQX-UTLK201005-4910009-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1006-4-C/results/911553749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2188","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","16:50:00","MST","2020-10-06 23:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553754","UTAHDWQ_WQX-UTLK201005-4910009-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1006-4-C/results/911553754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2189","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-07","15:45:00","MST","2020-10-07 22:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553769","UTAHDWQ_WQX-UTLK201005-4910009-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1007-4-C/results/911553769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2190","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-07","15:45:00","MST","2020-10-07 22:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553774","UTAHDWQ_WQX-UTLK201005-4910009-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1007-4-C/results/911553774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2191","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","11:00:00","MST","2020-10-05 18:00:00",NA,"0.845",845,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553788","UTAHDWQ_WQX-UTLK201005-4917310-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917310-1005-2-C/results/911553788/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2192","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","11:00:00","MST","2020-10-05 18:00:00",NA,"0.776",776,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553793","UTAHDWQ_WQX-UTLK201005-4917310-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917310-1005-2-C/results/911553793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2193","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","11:05:00","MST","2020-10-05 18:05:00",NA,"0.74",740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.55",0.55,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553806","UTAHDWQ_WQX-UTLK201005-4917310-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917310-1005-29-C/results/911553806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2194","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","11:05:00","MST","2020-10-05 18:05:00",NA,"0.923",923,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.55",0.55,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553811","UTAHDWQ_WQX-UTLK201005-4917310-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917310-1005-29-C/results/911553811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2195","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","11:10:00","MST","2020-10-05 18:10:00",NA,"0.801",801,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553844","UTAHDWQ_WQX-UTLK201005-4917320-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917320-1005-2-C/results/911553844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2196","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","11:10:00","MST","2020-10-05 18:10:00",NA,"0.822",822,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553849","UTAHDWQ_WQX-UTLK201005-4917320-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917320-1005-2-C/results/911553849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2197","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","11:15:00","MST","2020-10-05 18:15:00",NA,"0.715",715,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.57",0.57,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553862","UTAHDWQ_WQX-UTLK201005-4917320-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917320-1005-29-C/results/911553862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5468","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","11:15:00","MST","2020-10-05 18:15:00",NA,"0.775",775,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.57",0.57,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553867","UTAHDWQ_WQX-UTLK201005-4917320-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917320-1005-29-C/results/911553867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2199","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","11:40:00","MST","2020-10-05 18:40:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553900","UTAHDWQ_WQX-UTLK201005-4917365-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917365-1005-2-C/results/911553900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2200","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","11:40:00","MST","2020-10-05 18:40:00",NA,"0.727",727,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553905","UTAHDWQ_WQX-UTLK201005-4917365-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917365-1005-2-C/results/911553905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2201","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","11:45:00","MST","2020-10-05 18:45:00",NA,"0.64",640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.72",0.72,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553918","UTAHDWQ_WQX-UTLK201005-4917365-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917365-1005-29-C/results/911553918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2202","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","11:45:00","MST","2020-10-05 18:45:00",NA,"0.861",861,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.72",0.72,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553923","UTAHDWQ_WQX-UTLK201005-4917365-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917365-1005-29-C/results/911553923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2203","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","15:30:00","MST","2020-10-05 22:30:00",NA,"0.592",592,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553956","UTAHDWQ_WQX-UTLK201005-4917370-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917370-1005-2-C/results/911553956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2204","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","15:30:00","MST","2020-10-05 22:30:00",NA,"0.592",592,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553961","UTAHDWQ_WQX-UTLK201005-4917370-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917370-1005-2-C/results/911553961/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2205","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","15:35:00","MST","2020-10-05 22:35:00",NA,"0.569",569,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.69",0.69,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553974","UTAHDWQ_WQX-UTLK201005-4917370-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917370-1005-29-C/results/911553974/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2206","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","15:35:00","MST","2020-10-05 22:35:00",NA,"0.619",619,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.69",0.69,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911553979","UTAHDWQ_WQX-UTLK201005-4917370-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917370-1005-29-C/results/911553979/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2207","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","12:55:00","MST","2020-10-05 19:55:00",NA,"0.618",618,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554012","UTAHDWQ_WQX-UTLK201005-4917390-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917390-1005-2-C/results/911554012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2208","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","12:55:00","MST","2020-10-05 19:55:00",NA,"0.836",836,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554017","UTAHDWQ_WQX-UTLK201005-4917390-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917390-1005-2-C/results/911554017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2209","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","13:00:00","MST","2020-10-05 20:00:00",NA,"0.619",619,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.79",0.79,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554030","UTAHDWQ_WQX-UTLK201005-4917390-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917390-1005-29-C/results/911554030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2210","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","13:00:00","MST","2020-10-05 20:00:00",NA,"0.639",639,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.79",0.79,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554035","UTAHDWQ_WQX-UTLK201005-4917390-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917390-1005-29-C/results/911554035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2211","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-07","14:15:00","MST","2020-10-07 21:15:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554069","UTAHDWQ_WQX-UTLK201005-4917450-1007-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917450-1007-2-C/results/911554069/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2212","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-07","14:15:00","MST","2020-10-07 21:15:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554074","UTAHDWQ_WQX-UTLK201005-4917450-1007-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917450-1007-2-C/results/911554074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2213","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","14:45:00","MST","2020-10-05 21:45:00",NA,"0.577",577,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554088","UTAHDWQ_WQX-UTLK201005-4917500-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917500-1005-2-C/results/911554088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2214","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","14:45:00","MST","2020-10-05 21:45:00",NA,"0.675",675,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554093","UTAHDWQ_WQX-UTLK201005-4917500-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917500-1005-2-C/results/911554093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2215","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","14:50:00","MST","2020-10-05 21:50:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.7",0.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554106","UTAHDWQ_WQX-UTLK201005-4917500-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917500-1005-29-C/results/911554106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2216","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","14:50:00","MST","2020-10-05 21:50:00",NA,"0.646",646,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.7",0.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554111","UTAHDWQ_WQX-UTLK201005-4917500-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917500-1005-29-C/results/911554111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2217","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","10:00:00","MST","2020-10-05 17:00:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554144","UTAHDWQ_WQX-UTLK201005-4917520-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917520-1005-2-C/results/911554144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2218","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","10:00:00","MST","2020-10-05 17:00:00",NA,"0.581",581,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554149","UTAHDWQ_WQX-UTLK201005-4917520-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917520-1005-2-C/results/911554149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2219","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","10:05:00","MST","2020-10-05 17:05:00",NA,"0.555",555,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.57",0.57,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554162","UTAHDWQ_WQX-UTLK201005-4917520-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917520-1005-29-C/results/911554162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2220","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","10:05:00","MST","2020-10-05 17:05:00",NA,"0.611",611,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.57",0.57,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554167","UTAHDWQ_WQX-UTLK201005-4917520-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917520-1005-29-C/results/911554167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2221","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-07","12:15:00","MST","2020-10-07 19:15:00",NA,"0.665",665,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554201","UTAHDWQ_WQX-UTLK201005-4917600-1007-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917600-1007-2-C/results/911554201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2222","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-07","12:15:00","MST","2020-10-07 19:15:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554206","UTAHDWQ_WQX-UTLK201005-4917600-1007-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917600-1007-2-C/results/911554206/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2223","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","14:00:00","MST","2020-10-05 21:00:00",NA,"0.591",591,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554220","UTAHDWQ_WQX-UTLK201005-4917710-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917710-1005-2-C/results/911554220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2224","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","14:00:00","MST","2020-10-05 21:00:00",NA,"0.741",741,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554225","UTAHDWQ_WQX-UTLK201005-4917710-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917710-1005-2-C/results/911554225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2225","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","14:05:00","MST","2020-10-05 21:05:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.76",0.76,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554238","UTAHDWQ_WQX-UTLK201005-4917710-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917710-1005-29-C/results/911554238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2226","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","14:05:00","MST","2020-10-05 21:05:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.76",0.76,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554243","UTAHDWQ_WQX-UTLK201005-4917710-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917710-1005-29-C/results/911554243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2227","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","13:45:00","MST","2020-10-05 20:45:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554276","UTAHDWQ_WQX-UTLK201005-4917715-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917715-1005-2-C/results/911554276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2228","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","13:45:00","MST","2020-10-05 20:45:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554281","UTAHDWQ_WQX-UTLK201005-4917715-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917715-1005-2-C/results/911554281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5499","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","13:50:00","MST","2020-10-05 20:50:00",NA,"0.574",574,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.81",0.81,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554294","UTAHDWQ_WQX-UTLK201005-4917715-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917715-1005-29-C/results/911554294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2230","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","13:50:00","MST","2020-10-05 20:50:00",NA,"0.583",583,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.81",0.81,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554299","UTAHDWQ_WQX-UTLK201005-4917715-1005-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917715-1005-29-C/results/911554299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2231","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-05","13:20:00","MST","2020-10-05 20:20:00",NA,"0.574",574,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554332","UTAHDWQ_WQX-UTLK201005-4917770-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917770-1005-2-C/results/911554332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2232","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-05","13:20:00","MST","2020-10-05 20:20:00",NA,"0.65",650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554337","UTAHDWQ_WQX-UTLK201005-4917770-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917770-1005-2-C/results/911554337/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2233","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","16:10:00","MST","2020-10-06 23:10:00",NA,"0.647",647,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554351","UTAHDWQ_WQX-UTLK201005-4994790-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994790-1006-4-C/results/911554351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2234","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","16:10:00","MST","2020-10-06 23:10:00",NA,"0.739",739,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554356","UTAHDWQ_WQX-UTLK201005-4994790-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994790-1006-4-C/results/911554356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2235","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","16:35:00","MST","2020-10-06 23:35:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554370","UTAHDWQ_WQX-UTLK201005-4994792-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994792-1006-4-C/results/911554370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2236","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","16:35:00","MST","2020-10-06 23:35:00",NA,"0.477",477,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554375","UTAHDWQ_WQX-UTLK201005-4994792-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994792-1006-4-C/results/911554375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2237","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","15:50:00","MST","2020-10-06 22:50:00",NA,"2.1",2100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554389","UTAHDWQ_WQX-UTLK201005-4994950-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994950-1006-4-C/results/911554389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2238","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","15:50:00","MST","2020-10-06 22:50:00",NA,"2.04",2040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554394","UTAHDWQ_WQX-UTLK201005-4994950-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994950-1006-4-C/results/911554394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2239","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","15:30:00","MST","2020-10-06 22:30:00",NA,"7.27",7270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554409","UTAHDWQ_WQX-UTLK201005-4995038-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995038-1006-4-C/results/911554409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2240","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","15:30:00","MST","2020-10-06 22:30:00",NA,"6.92",6920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554414","UTAHDWQ_WQX-UTLK201005-4995038-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995038-1006-4-C/results/911554414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2241","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","15:10:00","MST","2020-10-06 22:10:00",NA,"2.47",2470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554428","UTAHDWQ_WQX-UTLK201005-4995120-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995120-1006-4-C/results/911554428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2242","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","15:10:00","MST","2020-10-06 22:10:00",NA,"2.47",2470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554433","UTAHDWQ_WQX-UTLK201005-4995120-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995120-1006-4-C/results/911554433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2243","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","12:20:00","MST","2020-10-06 19:20:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554468","UTAHDWQ_WQX-UTLK201005-4995465-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995465-1006-4-C/results/911554468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5514","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","12:20:00","MST","2020-10-06 19:20:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554473","UTAHDWQ_WQX-UTLK201005-4995465-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995465-1006-4-C/results/911554473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2245","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","13:05:00","MST","2020-10-06 20:05:00",NA,"0.848",848,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554487","UTAHDWQ_WQX-UTLK201005-4995578-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995578-1006-4-C/results/911554487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2246","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","13:05:00","MST","2020-10-06 20:05:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554492","UTAHDWQ_WQX-UTLK201005-4995578-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995578-1006-4-C/results/911554492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5517","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-07","13:35:00","MST","2020-10-07 20:35:00",NA,"7.63",7630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554508","UTAHDWQ_WQX-UTLK201005-4996040-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996040-1007-4-C/results/911554508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2248","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-07","13:35:00","MST","2020-10-07 20:35:00",NA,"7.13",7130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554513","UTAHDWQ_WQX-UTLK201005-4996040-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996040-1007-4-C/results/911554513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2249","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","13:30:00","MST","2020-10-06 20:30:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554527","UTAHDWQ_WQX-UTLK201005-4996044-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996044-1006-4-C/results/911554527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2250","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","13:30:00","MST","2020-10-06 20:30:00",NA,"1.95",1950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554532","UTAHDWQ_WQX-UTLK201005-4996044-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996044-1006-4-C/results/911554532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2251","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","13:45:00","MST","2020-10-06 20:45:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554546","UTAHDWQ_WQX-UTLK201005-4996100-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996100-1006-4-C/results/911554546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2252","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","13:45:00","MST","2020-10-06 20:45:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554551","UTAHDWQ_WQX-UTLK201005-4996100-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996100-1006-4-C/results/911554551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2253","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","14:00:00","MST","2020-10-06 21:00:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554565","UTAHDWQ_WQX-UTLK201005-4996275-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996275-1006-4-C/results/911554565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2254","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","14:00:00","MST","2020-10-06 21:00:00",NA,"10.5",10500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554570","UTAHDWQ_WQX-UTLK201005-4996275-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996275-1006-4-C/results/911554570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2255","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","14:25:00","MST","2020-10-06 21:25:00",NA,"13.2",13200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554585","UTAHDWQ_WQX-UTLK201005-4996540-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996540-1006-4-C/results/911554585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2256","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","14:25:00","MST","2020-10-06 21:25:00",NA,"13.2",13200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554590","UTAHDWQ_WQX-UTLK201005-4996540-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996540-1006-4-C/results/911554590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2257","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","14:10:00","MST","2020-10-06 21:10:00",NA,"7.9",7900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554605","UTAHDWQ_WQX-UTLK201005-4996566-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996566-1006-4-C/results/911554605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2258","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","14:10:00","MST","2020-10-06 21:10:00",NA,"7.81",7810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554610","UTAHDWQ_WQX-UTLK201005-4996566-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996566-1006-4-C/results/911554610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2259","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","14:45:00","MST","2020-10-06 21:45:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554624","UTAHDWQ_WQX-UTLK201005-4996680-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996680-1006-4-C/results/911554624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2260","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","14:45:00","MST","2020-10-06 21:45:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554629","UTAHDWQ_WQX-UTLK201005-4996680-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996680-1006-4-C/results/911554629/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2261","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-06","12:45:00","MST","2020-10-06 19:45:00",NA,"3.55",3550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554643","UTAHDWQ_WQX-UTLK201005-5919910-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-5919910-1006-4-C/results/911554643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2262","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-06","12:45:00","MST","2020-10-06 19:45:00",NA,"3.39",3390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554648","UTAHDWQ_WQX-UTLK201005-5919910-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-5919910-1006-4-C/results/911554648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2263","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:00:00","MST","2020-11-17 18:00:00",NA,"0.808",808,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.9",2.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554661","UTAHDWQ_WQX-UTLK201116-4917390-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917390-1117-29-C/results/911554661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2264","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:00:00","MST","2020-11-17 18:00:00",NA,"0.826",826,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.9",2.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554666","UTAHDWQ_WQX-UTLK201116-4917390-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917390-1117-29-C/results/911554666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2265","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","16:30:00","MST","2020-11-16 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554699","UTAHDWQ_WQX-UTLK201116-4910009-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1116-4-C/results/911554699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2266","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","16:30:00","MST","2020-11-16 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554704","UTAHDWQ_WQX-UTLK201116-4910009-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1116-4-C/results/911554704/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2267","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","16:00:00","MST","2020-11-17 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554718","UTAHDWQ_WQX-UTLK201116-4910009-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1117-4-C/results/911554718/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2268","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","16:00:00","MST","2020-11-17 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554723","UTAHDWQ_WQX-UTLK201116-4910009-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1117-4-C/results/911554723/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2269","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","20:00:00","MST","2020-11-19 03:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554756","UTAHDWQ_WQX-UTLK201116-4910009-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1118-4-C/results/911554756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2270","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","20:00:00","MST","2020-11-19 03:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554761","UTAHDWQ_WQX-UTLK201116-4910009-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1118-4-C/results/911554761/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2271","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","09:55:00","MST","2020-11-17 16:55:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554775","UTAHDWQ_WQX-UTLK201116-4917310-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917310-1117-2-C/results/911554775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2272","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","09:55:00","MST","2020-11-17 16:55:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554780","UTAHDWQ_WQX-UTLK201116-4917310-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917310-1117-2-C/results/911554780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2273","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","09:55:00","MST","2020-11-17 16:55:00",NA,"0.89",890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.77",1.77,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554793","UTAHDWQ_WQX-UTLK201116-4917310-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917310-1117-29-C/results/911554793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2274","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","09:55:00","MST","2020-11-17 16:55:00",NA,"0.866",866,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.77",1.77,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554798","UTAHDWQ_WQX-UTLK201116-4917310-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917310-1117-29-C/results/911554798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2275","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:15:00","MST","2020-11-17 17:15:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554831","UTAHDWQ_WQX-UTLK201116-4917320-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917320-1117-2-C/results/911554831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2276","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:15:00","MST","2020-11-17 17:15:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554836","UTAHDWQ_WQX-UTLK201116-4917320-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917320-1117-2-C/results/911554836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2277","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:15:00","MST","2020-11-17 17:15:00",NA,"0.813",813,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.7",1.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554849","UTAHDWQ_WQX-UTLK201116-4917320-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917320-1117-29-C/results/911554849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2278","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:15:00","MST","2020-11-17 17:15:00",NA,"0.915",915,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.7",1.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554854","UTAHDWQ_WQX-UTLK201116-4917320-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917320-1117-29-C/results/911554854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2279","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:30:00","MST","2020-11-17 17:30:00",NA,"0.797",797,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554887","UTAHDWQ_WQX-UTLK201116-4917365-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917365-1117-2-C/results/911554887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2280","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:30:00","MST","2020-11-17 17:30:00",NA,"0.927",927,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554892","UTAHDWQ_WQX-UTLK201116-4917365-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917365-1117-2-C/results/911554892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2281","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","10:30:00","MST","2020-11-17 17:30:00",NA,"0.796",796,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.45",2.45,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554905","UTAHDWQ_WQX-UTLK201116-4917365-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917365-1117-29-C/results/911554905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5552","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:30:00","MST","2020-11-17 17:30:00",NA,"0.829",829,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.45",2.45,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554910","UTAHDWQ_WQX-UTLK201116-4917365-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917365-1117-29-C/results/911554910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2283","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","12:50:00","MST","2020-11-17 19:50:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554943","UTAHDWQ_WQX-UTLK201116-4917370-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917370-1117-2-C/results/911554943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2284","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","12:50:00","MST","2020-11-17 19:50:00",NA,"0.898",898,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554948","UTAHDWQ_WQX-UTLK201116-4917370-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917370-1117-2-C/results/911554948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5555","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","12:50:00","MST","2020-11-17 19:50:00",NA,"0.816",816,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.23",2.23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554961","UTAHDWQ_WQX-UTLK201116-4917370-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917370-1117-29-C/results/911554961/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2286","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","12:50:00","MST","2020-11-17 19:50:00",NA,"0.83",830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.23",2.23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554966","UTAHDWQ_WQX-UTLK201116-4917370-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917370-1117-29-C/results/911554966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2287","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:00:00","MST","2020-11-17 18:00:00",NA,"0.806",806,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911554999","UTAHDWQ_WQX-UTLK201116-4917390-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917390-1117-2-C/results/911554999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2288","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:00:00","MST","2020-11-17 18:00:00",NA,"0.898",898,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555004","UTAHDWQ_WQX-UTLK201116-4917390-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917390-1117-2-C/results/911555004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2289","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","12:40:00","MST","2020-11-16 19:40:00",NA,"0.978",978,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555018","UTAHDWQ_WQX-UTLK201116-4917450-1116-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917450-1116-2-C/results/911555018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2290","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","12:40:00","MST","2020-11-16 19:40:00",NA,"0.634",634,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555023","UTAHDWQ_WQX-UTLK201116-4917450-1116-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917450-1116-2-C/results/911555023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2291","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","12:10:00","MST","2020-11-17 19:10:00",NA,"0.835",835,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555037","UTAHDWQ_WQX-UTLK201116-4917500-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917500-1117-2-C/results/911555037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2292","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","12:10:00","MST","2020-11-17 19:10:00",NA,"0.908",908,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555042","UTAHDWQ_WQX-UTLK201116-4917500-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917500-1117-2-C/results/911555042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2293","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","12:10:00","MST","2020-11-17 19:10:00",NA,"0.83",830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.4",2.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555055","UTAHDWQ_WQX-UTLK201116-4917500-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917500-1117-29-C/results/911555055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2294","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","12:10:00","MST","2020-11-17 19:10:00",NA,"0.84",840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.4",2.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555060","UTAHDWQ_WQX-UTLK201116-4917500-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917500-1117-29-C/results/911555060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2295","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","13:20:00","MST","2020-11-17 20:20:00",NA,"0.828",828,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555093","UTAHDWQ_WQX-UTLK201116-4917520-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917520-1117-2-C/results/911555093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2296","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","13:20:00","MST","2020-11-17 20:20:00",NA,"0.913",913,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555098","UTAHDWQ_WQX-UTLK201116-4917520-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917520-1117-2-C/results/911555098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2297","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","13:20:00","MST","2020-11-17 20:20:00",NA,"0.848",848,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.74",1.74,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555111","UTAHDWQ_WQX-UTLK201116-4917520-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917520-1117-29-C/results/911555111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5568","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","13:20:00","MST","2020-11-17 20:20:00",NA,"0.87",870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.74",1.74,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555116","UTAHDWQ_WQX-UTLK201116-4917520-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917520-1117-29-C/results/911555116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2299","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","10:30:00","MST","2020-11-16 17:30:00",NA,"0.777",777,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555149","UTAHDWQ_WQX-UTLK201116-4917600-1116-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917600-1116-2-C/results/911555149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2300","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","10:30:00","MST","2020-11-16 17:30:00",NA,"0.752",752,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555154","UTAHDWQ_WQX-UTLK201116-4917600-1116-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917600-1116-2-C/results/911555154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5571","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:45:00","MST","2020-11-17 18:45:00",NA,"0.78",780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555168","UTAHDWQ_WQX-UTLK201116-4917710-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917710-1117-2-C/results/911555168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2302","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:45:00","MST","2020-11-17 18:45:00",NA,"0.889",889,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555173","UTAHDWQ_WQX-UTLK201116-4917710-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917710-1117-2-C/results/911555173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2303","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:45:00","MST","2020-11-17 18:45:00",NA,"0.836",836,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.57",2.57,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555186","UTAHDWQ_WQX-UTLK201116-4917710-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917710-1117-29-C/results/911555186/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2304","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:45:00","MST","2020-11-17 18:45:00",NA,"0.839",839,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.57",2.57,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555191","UTAHDWQ_WQX-UTLK201116-4917710-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917710-1117-29-C/results/911555191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2305","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:30:00","MST","2020-11-17 18:30:00",NA,"0.823",823,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555224","UTAHDWQ_WQX-UTLK201116-4917715-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917715-1117-2-C/results/911555224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2306","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:30:00","MST","2020-11-17 18:30:00",NA,"0.936",936,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555229","UTAHDWQ_WQX-UTLK201116-4917715-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917715-1117-2-C/results/911555229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2307","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-17","11:30:00","MST","2020-11-17 18:30:00",NA,"0.852",852,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.82",2.82,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555242","UTAHDWQ_WQX-UTLK201116-4917715-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917715-1117-29-C/results/911555242/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2308","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","11:30:00","MST","2020-11-17 18:30:00",NA,"0.881",881,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.82",2.82,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555247","UTAHDWQ_WQX-UTLK201116-4917715-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917715-1117-29-C/results/911555247/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2309","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","13:15:00","MST","2020-11-16 20:15:00",NA,"0.771",771,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555280","UTAHDWQ_WQX-UTLK201116-4917770-1116-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917770-1116-2-C/results/911555280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2310","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","13:15:00","MST","2020-11-16 20:15:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555285","UTAHDWQ_WQX-UTLK201116-4917770-1116-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917770-1116-2-C/results/911555285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2311","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","17:00:00","MST","2020-11-19 00:00:00",NA,"3.24",3240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555299","UTAHDWQ_WQX-UTLK201116-4994950-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4994950-1118-4-C/results/911555299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2312","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","17:00:00","MST","2020-11-19 00:00:00",NA,"3.37",3370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555304","UTAHDWQ_WQX-UTLK201116-4994950-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4994950-1118-4-C/results/911555304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2313","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","16:10:00","MST","2020-11-18 23:10:00",NA,"9.98",9980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555320","UTAHDWQ_WQX-UTLK201116-4995038-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995038-1118-4-C/results/911555320/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2314","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","16:10:00","MST","2020-11-18 23:10:00",NA,"8.96",8960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555325","UTAHDWQ_WQX-UTLK201116-4995038-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995038-1118-4-C/results/911555325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2315","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","15:20:00","MST","2020-11-18 22:20:00",NA,"3.48",3480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555339","UTAHDWQ_WQX-UTLK201116-4995120-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995120-1118-4-C/results/911555339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2316","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","15:20:00","MST","2020-11-18 22:20:00",NA,"3.4",3400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555344","UTAHDWQ_WQX-UTLK201116-4995120-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995120-1118-4-C/results/911555344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2317","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","14:00:00","MST","2020-11-16 21:00:00",NA,"0.653",653,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555360","UTAHDWQ_WQX-UTLK201116-4995230-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA South Outfall to Utah Lake","River/Stream",NA,"40.2635300000",40.26353,"-111.7404600000",-111.74046,"OK","16020201","UTAHDWQ_WQX-4995230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2635300000","-111.7404600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995230-1116-4-C/results/911555360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2318","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","14:00:00","MST","2020-11-16 21:00:00",NA,"0.64",640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555365","UTAHDWQ_WQX-UTLK201116-4995230-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA South Outfall to Utah Lake","River/Stream",NA,"40.2635300000",40.26353,"-111.7404600000",-111.74046,"OK","16020201","UTAHDWQ_WQX-4995230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2635300000","-111.7404600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995230-1116-4-C/results/911555365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2319","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","14:10:00","MST","2020-11-16 21:10:00",NA,"9.96",9960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555381","UTAHDWQ_WQX-UTLK201116-4995250-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995250-1116-4-C/results/911555381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5590","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","14:10:00","MST","2020-11-16 21:10:00",NA,"9.95",9950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555386","UTAHDWQ_WQX-UTLK201116-4995250-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995250-1116-4-C/results/911555386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2321","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","09:30:00","MST","2020-11-18 16:30:00",NA,"0.842",842,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555400","UTAHDWQ_WQX-UTLK201116-4995310-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995310-1118-4-C/results/911555400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2322","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","09:30:00","MST","2020-11-18 16:30:00",NA,"0.735",735,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555405","UTAHDWQ_WQX-UTLK201116-4995310-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995310-1118-4-C/results/911555405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5593","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","10:45:00","MST","2020-11-18 17:45:00",NA,"5.02",5020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555421","UTAHDWQ_WQX-UTLK201116-4995465-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995465-1118-4-C/results/911555421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2324","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","10:45:00","MST","2020-11-18 17:45:00",NA,"4.96",4960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555426","UTAHDWQ_WQX-UTLK201116-4995465-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995465-1118-4-C/results/911555426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2325","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","12:10:00","MST","2020-11-18 19:10:00",NA,"0.584",584,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555440","UTAHDWQ_WQX-UTLK201116-4995578-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995578-1118-4-C/results/911555440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2326","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","12:10:00","MST","2020-11-18 19:10:00",NA,"0.724",724,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555445","UTAHDWQ_WQX-UTLK201116-4995578-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995578-1118-4-C/results/911555445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2327","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-16","11:45:00","MST","2020-11-16 18:45:00",NA,"7.63",7630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555461","UTAHDWQ_WQX-UTLK201116-4996040-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996040-1116-4-C/results/911555461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2328","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-16","11:45:00","MST","2020-11-16 18:45:00",NA,"8.31",8310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555466","UTAHDWQ_WQX-UTLK201116-4996040-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996040-1116-4-C/results/911555466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2329","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","12:40:00","MST","2020-11-18 19:40:00",NA,"2.43",2430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555480","UTAHDWQ_WQX-UTLK201116-4996044-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996044-1118-4-C/results/911555480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2330","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","12:40:00","MST","2020-11-18 19:40:00",NA,"2.4",2400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555485","UTAHDWQ_WQX-UTLK201116-4996044-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996044-1118-4-C/results/911555485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2331","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","12:55:00","MST","2020-11-18 19:55:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555499","UTAHDWQ_WQX-UTLK201116-4996100-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996100-1118-4-C/results/911555499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2332","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","12:55:00","MST","2020-11-18 19:55:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555504","UTAHDWQ_WQX-UTLK201116-4996100-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996100-1118-4-C/results/911555504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2333","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","13:10:00","MST","2020-11-18 20:10:00",NA,"8.74",8740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555518","UTAHDWQ_WQX-UTLK201116-4996275-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996275-1118-4-C/results/911555518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2334","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","13:10:00","MST","2020-11-18 20:10:00",NA,"8.61",8610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555523","UTAHDWQ_WQX-UTLK201116-4996275-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996275-1118-4-C/results/911555523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2335","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","14:15:00","MST","2020-11-18 21:15:00",NA,"11.6",11600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555539","UTAHDWQ_WQX-UTLK201116-4996540-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996540-1118-4-C/results/911555539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5606","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","14:15:00","MST","2020-11-18 21:15:00",NA,"11.6",11600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555544","UTAHDWQ_WQX-UTLK201116-4996540-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996540-1118-4-C/results/911555544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2337","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","13:50:00","MST","2020-11-18 20:50:00",NA,"11.3",11300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555560","UTAHDWQ_WQX-UTLK201116-4996566-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996566-1118-4-C/results/911555560/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2338","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","13:50:00","MST","2020-11-18 20:50:00",NA,"11.4",11400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555565","UTAHDWQ_WQX-UTLK201116-4996566-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996566-1118-4-C/results/911555565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5609","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","14:50:00","MST","2020-11-18 21:50:00",NA,"0.511",511,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555579","UTAHDWQ_WQX-UTLK201116-4996680-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996680-1118-4-C/results/911555579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2340","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","14:50:00","MST","2020-11-18 21:50:00",NA,"0.454",454,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555584","UTAHDWQ_WQX-UTLK201116-4996680-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996680-1118-4-C/results/911555584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2341","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-11-18","11:35:00","MST","2020-11-18 18:35:00",NA,"4.99",4990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555598","UTAHDWQ_WQX-UTLK201116-5919910-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-5919910-1118-4-C/results/911555598/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2342","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","11:35:00","MST","2020-11-18 18:35:00",NA,"4.96",4960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555603","UTAHDWQ_WQX-UTLK201116-5919910-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-5919910-1118-4-C/results/911555603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2343","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","18:00:00","MST","2020-12-09 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555617","UTAHDWQ_WQX-UTLK201207-4910009-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4910009-1208-4-C/results/911555617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2344","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","18:00:00","MST","2020-12-09 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555622","UTAHDWQ_WQX-UTLK201207-4910009-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4910009-1208-4-C/results/911555622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2345","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","14:50:00","MST","2020-12-08 21:50:00",NA,"3.65",3650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555636","UTAHDWQ_WQX-UTLK201207-4994950-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4994950-1208-4-C/results/911555636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2346","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","14:50:00","MST","2020-12-08 21:50:00",NA,"3.62",3620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555641","UTAHDWQ_WQX-UTLK201207-4994950-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4994950-1208-4-C/results/911555641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2347","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","14:20:00","MST","2020-12-08 21:20:00",NA,"9.28",9280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555657","UTAHDWQ_WQX-UTLK201207-4995038-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995038-1208-4-C/results/911555657/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2348","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","14:20:00","MST","2020-12-08 21:20:00",NA,"9.19",9190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555662","UTAHDWQ_WQX-UTLK201207-4995038-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995038-1208-4-C/results/911555662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2349","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","14:15:00","MST","2020-12-08 21:15:00",NA,"2.59",2590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555678","UTAHDWQ_WQX-UTLK201207-4995041-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995041-1208-4-C/results/911555678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2350","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","14:15:00","MST","2020-12-08 21:15:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555683","UTAHDWQ_WQX-UTLK201207-4995041-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995041-1208-4-C/results/911555683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2351","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","13:50:00","MST","2020-12-08 20:50:00",NA,"3.62",3620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555697","UTAHDWQ_WQX-UTLK201207-4995120-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995120-1208-4-C/results/911555697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2352","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","13:50:00","MST","2020-12-08 20:50:00",NA,"3.59",3590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555702","UTAHDWQ_WQX-UTLK201207-4995120-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995120-1208-4-C/results/911555702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2353","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","09:20:00","MST","2020-12-08 16:20:00",NA,"0.771",771,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555716","UTAHDWQ_WQX-UTLK201207-4995310-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995310-1208-4-C/results/911555716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2354","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","09:20:00","MST","2020-12-08 16:20:00",NA,"0.702",702,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555721","UTAHDWQ_WQX-UTLK201207-4995310-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995310-1208-4-C/results/911555721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2355","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","10:10:00","MST","2020-12-08 17:10:00",NA,"4.57",4570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555737","UTAHDWQ_WQX-UTLK201207-4995465-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995465-1208-4-C/results/911555737/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2356","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","10:10:00","MST","2020-12-08 17:10:00",NA,"4.71",4710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555742","UTAHDWQ_WQX-UTLK201207-4995465-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995465-1208-4-C/results/911555742/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2357","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","10:50:00","MST","2020-12-08 17:50:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555756","UTAHDWQ_WQX-UTLK201207-4995578-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995578-1208-4-C/results/911555756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5628","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","10:50:00","MST","2020-12-08 17:50:00",NA,"0.527",527,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555761","UTAHDWQ_WQX-UTLK201207-4995578-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995578-1208-4-C/results/911555761/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2359","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","12:30:00","MST","2020-12-08 19:30:00",NA,"2.43",2430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555775","UTAHDWQ_WQX-UTLK201207-4996044-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996044-1208-4-C/results/911555775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2360","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","12:30:00","MST","2020-12-08 19:30:00",NA,"2.43",2430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555780","UTAHDWQ_WQX-UTLK201207-4996044-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996044-1208-4-C/results/911555780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5631","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","12:35:00","MST","2020-12-08 19:35:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555794","UTAHDWQ_WQX-UTLK201207-4996100-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996100-1208-4-C/results/911555794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2362","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","12:35:00","MST","2020-12-08 19:35:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555799","UTAHDWQ_WQX-UTLK201207-4996100-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996100-1208-4-C/results/911555799/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","12:45:00","MST","2020-12-08 19:45:00",NA,"7.74",7740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555813","UTAHDWQ_WQX-UTLK201207-4996275-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996275-1208-4-C/results/911555813/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2364","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","12:45:00","MST","2020-12-08 19:45:00",NA,"7.93",7930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555818","UTAHDWQ_WQX-UTLK201207-4996275-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996275-1208-4-C/results/911555818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2365","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","13:05:00","MST","2020-12-08 20:05:00",NA,"12.7",12700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555834","UTAHDWQ_WQX-UTLK201207-4996540-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996540-1208-4-C/results/911555834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5636","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","13:05:00","MST","2020-12-08 20:05:00",NA,"13",13000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555839","UTAHDWQ_WQX-UTLK201207-4996540-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996540-1208-4-C/results/911555839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2367","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","12:50:00","MST","2020-12-08 19:50:00",NA,"13.1",13100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555855","UTAHDWQ_WQX-UTLK201207-4996566-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996566-1208-4-C/results/911555855/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2368","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","12:50:00","MST","2020-12-08 19:50:00",NA,"13.1",13100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555860","UTAHDWQ_WQX-UTLK201207-4996566-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996566-1208-4-C/results/911555860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5639","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","13:25:00","MST","2020-12-08 20:25:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555874","UTAHDWQ_WQX-UTLK201207-4996680-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996680-1208-4-C/results/911555874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2370","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","13:25:00","MST","2020-12-08 20:25:00",NA,"0.39",390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555879","UTAHDWQ_WQX-UTLK201207-4996680-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996680-1208-4-C/results/911555879/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2371","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-12-08","10:30:00","MST","2020-12-08 17:30:00",NA,"5.46",5460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555893","UTAHDWQ_WQX-UTLK201207-5919910-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-5919910-1208-4-C/results/911555893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2372","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-12-08","10:30:00","MST","2020-12-08 17:30:00",NA,"5.98",5980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555898","UTAHDWQ_WQX-UTLK201207-5919910-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-5919910-1208-4-C/results/911555898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2373","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","16:30:00","MST","2021-01-19 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555912","UTAHDWQ_WQX-UTLK210119-4910009-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4910009-0119-4-C/results/911555912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2374","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","16:30:00","MST","2021-01-19 23:30:00",NA,"0.191",191,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555917","UTAHDWQ_WQX-UTLK210119-4910009-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4910009-0119-4-C/results/911555917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2375","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","14:30:00","MST","2021-01-19 21:30:00",NA,"3.61",3610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555931","UTAHDWQ_WQX-UTLK210119-4994950-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4994950-0119-4-C/results/911555931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2376","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","14:30:00","MST","2021-01-19 21:30:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555936","UTAHDWQ_WQX-UTLK210119-4994950-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4994950-0119-4-C/results/911555936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2377","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","14:10:00","MST","2021-01-19 21:10:00",NA,"9.3",9300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555952","UTAHDWQ_WQX-UTLK210119-4995038-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995038-0119-4-C/results/911555952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2378","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","14:10:00","MST","2021-01-19 21:10:00",NA,"9.21",9210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555957","UTAHDWQ_WQX-UTLK210119-4995038-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995038-0119-4-C/results/911555957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2379","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","14:00:00","MST","2021-01-19 21:00:00",NA,"3.89",3890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555973","UTAHDWQ_WQX-UTLK210119-4995041-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995041-0119-4-C/results/911555973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2380","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","14:00:00","MST","2021-01-19 21:00:00",NA,"3.84",3840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555978","UTAHDWQ_WQX-UTLK210119-4995041-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995041-0119-4-C/results/911555978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2381","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","13:40:00","MST","2021-01-19 20:40:00",NA,"3.26",3260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555992","UTAHDWQ_WQX-UTLK210119-4995120-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995120-0119-4-C/results/911555992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2382","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","13:40:00","MST","2021-01-19 20:40:00",NA,"3.38",3380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911555997","UTAHDWQ_WQX-UTLK210119-4995120-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995120-0119-4-C/results/911555997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2383","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","11:20:00","MST","2021-01-19 18:20:00",NA,"6.1",6100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556012","UTAHDWQ_WQX-UTLK210119-4995465-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995465-0119-4-C/results/911556012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2384","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","11:20:00","MST","2021-01-19 18:20:00",NA,"5.51",5510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556017","UTAHDWQ_WQX-UTLK210119-4995465-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995465-0119-4-C/results/911556017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2385","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","12:00:00","MST","2021-01-19 19:00:00",NA,"0.577",577,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556030","UTAHDWQ_WQX-UTLK210119-4995578-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995578-0119-4-C/results/911556030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2386","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","12:00:00","MST","2021-01-19 19:00:00",NA,"0.738",738,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556035","UTAHDWQ_WQX-UTLK210119-4995578-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995578-0119-4-C/results/911556035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2387","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","12:20:00","MST","2021-01-19 19:20:00",NA,"2.25",2250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556048","UTAHDWQ_WQX-UTLK210119-4996044-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996044-0119-4-C/results/911556048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2388","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","12:20:00","MST","2021-01-19 19:20:00",NA,"2.36",2360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556053","UTAHDWQ_WQX-UTLK210119-4996044-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996044-0119-4-C/results/911556053/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2389","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","12:40:00","MST","2021-01-19 19:40:00",NA,"0.949",949,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556066","UTAHDWQ_WQX-UTLK210119-4996100-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996100-0119-4-C/results/911556066/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2390","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","12:40:00","MST","2021-01-19 19:40:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556071","UTAHDWQ_WQX-UTLK210119-4996100-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996100-0119-4-C/results/911556071/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2391","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","12:50:00","MST","2021-01-19 19:50:00",NA,"10.3",10300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556084","UTAHDWQ_WQX-UTLK210119-4996275-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996275-0119-4-C/results/911556084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2392","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","12:50:00","MST","2021-01-19 19:50:00",NA,"10.5",10500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556089","UTAHDWQ_WQX-UTLK210119-4996275-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996275-0119-4-C/results/911556089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2393","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","13:10:00","MST","2021-01-19 20:10:00",NA,"9.69",9690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556104","UTAHDWQ_WQX-UTLK210119-4996540-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996540-0119-4-C/results/911556104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2394","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","13:10:00","MST","2021-01-19 20:10:00",NA,"9.42",9420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556109","UTAHDWQ_WQX-UTLK210119-4996540-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996540-0119-4-C/results/911556109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2395","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","13:00:00","MST","2021-01-19 20:00:00",NA,"9.95",9950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556124","UTAHDWQ_WQX-UTLK210119-4996566-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996566-0119-4-C/results/911556124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2396","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","13:00:00","MST","2021-01-19 20:00:00",NA,"10.3",10300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556129","UTAHDWQ_WQX-UTLK210119-4996566-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996566-0119-4-C/results/911556129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2397","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","13:20:00","MST","2021-01-19 20:20:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556142","UTAHDWQ_WQX-UTLK210119-4996680-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996680-0119-4-C/results/911556142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2398","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","13:20:00","MST","2021-01-19 20:20:00",NA,"0.672",672,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556147","UTAHDWQ_WQX-UTLK210119-4996680-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996680-0119-4-C/results/911556147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2399","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-01-19","12:00:00","MST","2021-01-19 19:00:00",NA,"6.1",6100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556160","UTAHDWQ_WQX-UTLK210119-5919910-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-5919910-0119-4-C/results/911556160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2400","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-19","12:00:00","MST","2021-01-19 19:00:00",NA,"5.5",5500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556165","UTAHDWQ_WQX-UTLK210119-5919910-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-5919910-0119-4-C/results/911556165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2401","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","16:00:00","MST","2021-03-15 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556179","UTAHDWQ_WQX-UTLK210315-4910009-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0315-4-C/results/911556179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2402","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","16:00:00","MST","2021-03-15 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556184","UTAHDWQ_WQX-UTLK210315-4910009-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0315-4-C/results/911556184/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2403","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","18:00:00","MST","2021-03-17 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556218","UTAHDWQ_WQX-UTLK210315-4910009-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0316-4-C/results/911556218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5674","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","18:00:00","MST","2021-03-17 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556223","UTAHDWQ_WQX-UTLK210315-4910009-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0316-4-C/results/911556223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2405","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-17","14:00:00","MST","2021-03-17 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556257","UTAHDWQ_WQX-UTLK210315-4910009-0317-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0317-4-C/results/911556257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2406","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-17","14:00:00","MST","2021-03-17 21:00:00",NA,"0.13",130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556262","UTAHDWQ_WQX-UTLK210315-4910009-0317-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0317-4-C/results/911556262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5677","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","16:30:00","MST","2021-03-18 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556276","UTAHDWQ_WQX-UTLK210315-4910009-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0318-4-C/results/911556276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2408","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","16:30:00","MST","2021-03-18 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556281","UTAHDWQ_WQX-UTLK210315-4910009-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0318-4-C/results/911556281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2409","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","11:00:00","MST","2021-03-15 18:00:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556287","UTAHDWQ_WQX-UTLK210315-4917305-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917305-0315-2-C/results/911556287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2410","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","11:00:00","MST","2021-03-15 18:00:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556292","UTAHDWQ_WQX-UTLK210315-4917305-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917305-0315-2-C/results/911556292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2411","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","11:45:00","MST","2021-03-15 18:45:00",NA,"0.685",685,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556343","UTAHDWQ_WQX-UTLK210315-4917310-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917310-0315-2-C/results/911556343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2412","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","11:45:00","MST","2021-03-15 18:45:00",NA,"0.597",597,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556348","UTAHDWQ_WQX-UTLK210315-4917310-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917310-0315-2-C/results/911556348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2413","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","12:00:00","MST","2021-03-15 19:00:00",NA,"0.686",686,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556399","UTAHDWQ_WQX-UTLK210315-4917320-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917320-0315-2-C/results/911556399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2414","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","12:00:00","MST","2021-03-15 19:00:00",NA,"0.596",596,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556404","UTAHDWQ_WQX-UTLK210315-4917320-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917320-0315-2-C/results/911556404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2415","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","11:30:00","MST","2021-03-15 18:30:00",NA,"0.917",917,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556455","UTAHDWQ_WQX-UTLK210315-4917335-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917335-0315-2-C/results/911556455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2416","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","11:30:00","MST","2021-03-15 18:30:00",NA,"0.579",579,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556460","UTAHDWQ_WQX-UTLK210315-4917335-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917335-0315-2-C/results/911556460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2417","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","12:15:00","MST","2021-03-15 19:15:00",NA,"0.735",735,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556514","UTAHDWQ_WQX-UTLK210315-4917365-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917365-0315-2-C/results/911556514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2418","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","12:15:00","MST","2021-03-15 19:15:00",NA,"0.713",713,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556519","UTAHDWQ_WQX-UTLK210315-4917365-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917365-0315-2-C/results/911556519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2419","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","13:20:00","MST","2021-03-16 20:20:00",NA,"0.648",648,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556570","UTAHDWQ_WQX-UTLK210315-4917370-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917370-0316-2-C/results/911556570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2420","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","13:20:00","MST","2021-03-16 20:20:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556575","UTAHDWQ_WQX-UTLK210315-4917370-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917370-0316-2-C/results/911556575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2421","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","13:00:00","MST","2021-03-15 20:00:00",NA,"0.63",630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556626","UTAHDWQ_WQX-UTLK210315-4917390-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917390-0315-2-C/results/911556626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2422","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","13:00:00","MST","2021-03-15 20:00:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556631","UTAHDWQ_WQX-UTLK210315-4917390-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917390-0315-2-C/results/911556631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2423","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","13:40:00","MST","2021-03-16 20:40:00",NA,"0.862",862,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556682","UTAHDWQ_WQX-UTLK210315-4917414-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917414-0316-2-C/results/911556682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2424","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","13:40:00","MST","2021-03-16 20:40:00",NA,"0.899",899,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556687","UTAHDWQ_WQX-UTLK210315-4917414-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917414-0316-2-C/results/911556687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2425","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","12:30:00","MST","2021-03-15 19:30:00",NA,"0.849",849,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556738","UTAHDWQ_WQX-UTLK210315-4917433-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917433-0315-2-C/results/911556738/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2426","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","12:30:00","MST","2021-03-15 19:30:00",NA,"0.708",708,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556743","UTAHDWQ_WQX-UTLK210315-4917433-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917433-0315-2-C/results/911556743/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2427","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","13:30:00","MST","2021-03-15 20:30:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556797","UTAHDWQ_WQX-UTLK210315-4917450-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917450-0315-2-C/results/911556797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2428","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","13:30:00","MST","2021-03-15 20:30:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556802","UTAHDWQ_WQX-UTLK210315-4917450-0315-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917450-0315-2-C/results/911556802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2429","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","12:30:00","MST","2021-03-16 19:30:00",NA,"0.653",653,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556853","UTAHDWQ_WQX-UTLK210315-4917500-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917500-0316-2-C/results/911556853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2430","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","12:30:00","MST","2021-03-16 19:30:00",NA,"0.662",662,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556858","UTAHDWQ_WQX-UTLK210315-4917500-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917500-0316-2-C/results/911556858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2431","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","14:00:00","MST","2021-03-16 21:00:00",NA,"0.617",617,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556909","UTAHDWQ_WQX-UTLK210315-4917520-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917520-0316-2-C/results/911556909/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2432","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","14:00:00","MST","2021-03-16 21:00:00",NA,"0.67",670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556914","UTAHDWQ_WQX-UTLK210315-4917520-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917520-0316-2-C/results/911556914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2433","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","11:40:00","MST","2021-03-16 18:40:00",NA,"0.679",679,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556965","UTAHDWQ_WQX-UTLK210315-4917600-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917600-0316-2-C/results/911556965/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2434","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","11:40:00","MST","2021-03-16 18:40:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911556970","UTAHDWQ_WQX-UTLK210315-4917600-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917600-0316-2-C/results/911556970/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2435","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","11:15:00","MST","2021-03-16 18:15:00",NA,"0.692",692,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557021","UTAHDWQ_WQX-UTLK210315-4917708-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917708-0316-2-C/results/911557021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2436","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","11:15:00","MST","2021-03-16 18:15:00",NA,"0.765",765,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557026","UTAHDWQ_WQX-UTLK210315-4917708-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917708-0316-2-C/results/911557026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2437","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","10:50:00","MST","2021-03-16 17:50:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557079","UTAHDWQ_WQX-UTLK210315-4917710-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917710-0316-2-C/results/911557079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2438","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","10:50:00","MST","2021-03-16 17:50:00",NA,"0.594",594,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557084","UTAHDWQ_WQX-UTLK210315-4917710-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917710-0316-2-C/results/911557084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2439","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","10:30:00","MST","2021-03-16 17:30:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557135","UTAHDWQ_WQX-UTLK210315-4917715-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917715-0316-2-C/results/911557135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2440","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","10:30:00","MST","2021-03-16 17:30:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557140","UTAHDWQ_WQX-UTLK210315-4917715-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917715-0316-2-C/results/911557140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2441","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","10:00:00","MST","2021-03-16 17:00:00",NA,"0.672",672,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557191","UTAHDWQ_WQX-UTLK210315-4917770-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917770-0316-2-C/results/911557191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2442","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","10:00:00","MST","2021-03-16 17:00:00",NA,"0.67",670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557196","UTAHDWQ_WQX-UTLK210315-4917770-0316-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917770-0316-2-C/results/911557196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2443","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","15:40:00","MST","2021-03-18 22:40:00",NA,"2.48",2480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557247","UTAHDWQ_WQX-UTLK210315-4994950-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4994950-0318-4-C/results/911557247/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2444","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","15:40:00","MST","2021-03-18 22:40:00",NA,"2.48",2480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557252","UTAHDWQ_WQX-UTLK210315-4994950-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4994950-0318-4-C/results/911557252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2445","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","15:30:00","MST","2021-03-18 22:30:00",NA,"8.53",8530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557268","UTAHDWQ_WQX-UTLK210315-4995038-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995038-0318-4-C/results/911557268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2446","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","15:30:00","MST","2021-03-18 22:30:00",NA,"8.76",8760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557273","UTAHDWQ_WQX-UTLK210315-4995038-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995038-0318-4-C/results/911557273/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2447","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","15:15:00","MST","2021-03-18 22:15:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557289","UTAHDWQ_WQX-UTLK210315-4995041-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995041-0318-4-C/results/911557289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2448","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","15:15:00","MST","2021-03-18 22:15:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557294","UTAHDWQ_WQX-UTLK210315-4995041-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995041-0318-4-C/results/911557294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2449","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","15:00:00","MST","2021-03-18 22:00:00",NA,"3.13",3130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557308","UTAHDWQ_WQX-UTLK210315-4995120-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995120-0318-4-C/results/911557308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2450","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","15:00:00","MST","2021-03-18 22:00:00",NA,"2.97",2970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557313","UTAHDWQ_WQX-UTLK210315-4995120-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995120-0318-4-C/results/911557313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2451","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-17","12:20:00","MST","2021-03-17 19:20:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557329","UTAHDWQ_WQX-UTLK210315-4995230-0317-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA South Outfall to Utah Lake","River/Stream",NA,"40.2635300000",40.26353,"-111.7404600000",-111.74046,"OK","16020201","UTAHDWQ_WQX-4995230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2635300000","-111.7404600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995230-0317-4-C/results/911557329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2452","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-17","12:20:00","MST","2021-03-17 19:20:00",NA,"0.36",360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557334","UTAHDWQ_WQX-UTLK210315-4995230-0317-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA South Outfall to Utah Lake","River/Stream",NA,"40.2635300000",40.26353,"-111.7404600000",-111.74046,"OK","16020201","UTAHDWQ_WQX-4995230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2635300000","-111.7404600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995230-0317-4-C/results/911557334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2453","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","10:00:00","MST","2021-03-18 17:00:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557369","UTAHDWQ_WQX-UTLK210315-4995310-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995310-0318-4-C/results/911557369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2454","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","10:00:00","MST","2021-03-18 17:00:00",NA,"0.853",853,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557374","UTAHDWQ_WQX-UTLK210315-4995310-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995310-0318-4-C/results/911557374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2455","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","11:00:00","MST","2021-03-18 18:00:00",NA,"3.45",3450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557390","UTAHDWQ_WQX-UTLK210315-4995465-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995465-0318-4-C/results/911557390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2456","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","11:00:00","MST","2021-03-18 18:00:00",NA,"3.51",3510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557395","UTAHDWQ_WQX-UTLK210315-4995465-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995465-0318-4-C/results/911557395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2457","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","12:15:00","MST","2021-03-18 19:15:00",NA,"0.498",498,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557409","UTAHDWQ_WQX-UTLK210315-4995578-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995578-0318-4-C/results/911557409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2458","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","12:15:00","MST","2021-03-18 19:15:00",NA,"0.551",551,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557414","UTAHDWQ_WQX-UTLK210315-4995578-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995578-0318-4-C/results/911557414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2459","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-17","10:20:00","MST","2021-03-17 17:20:00",NA,"6.36",6360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557430","UTAHDWQ_WQX-UTLK210315-4996040-0317-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996040-0317-4-C/results/911557430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2460","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-17","10:20:00","MST","2021-03-17 17:20:00",NA,"6.94",6940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557435","UTAHDWQ_WQX-UTLK210315-4996040-0317-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996040-0317-4-C/results/911557435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2461","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","12:40:00","MST","2021-03-18 19:40:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557449","UTAHDWQ_WQX-UTLK210315-4996044-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996044-0318-4-C/results/911557449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2462","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","12:40:00","MST","2021-03-18 19:40:00",NA,"1.87",1870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557454","UTAHDWQ_WQX-UTLK210315-4996044-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996044-0318-4-C/results/911557454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5733","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","13:15:00","MST","2021-03-18 20:15:00",NA,"0.753",753,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557468","UTAHDWQ_WQX-UTLK210315-4996100-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996100-0318-4-C/results/911557468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2464","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","13:15:00","MST","2021-03-18 20:15:00",NA,"0.8",800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557473","UTAHDWQ_WQX-UTLK210315-4996100-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996100-0318-4-C/results/911557473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2465","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","13:30:00","MST","2021-03-18 20:30:00",NA,"4.92",4920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557487","UTAHDWQ_WQX-UTLK210315-4996275-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996275-0318-4-C/results/911557487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5736","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","13:30:00","MST","2021-03-18 20:30:00",NA,"4.93",4930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557492","UTAHDWQ_WQX-UTLK210315-4996275-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996275-0318-4-C/results/911557492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2467","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","14:00:00","MST","2021-03-18 21:00:00",NA,"9.89",9890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557508","UTAHDWQ_WQX-UTLK210315-4996540-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996540-0318-4-C/results/911557508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2468","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","14:00:00","MST","2021-03-18 21:00:00",NA,"9.66",9660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557513","UTAHDWQ_WQX-UTLK210315-4996540-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996540-0318-4-C/results/911557513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5739","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","13:40:00","MST","2021-03-18 20:40:00",NA,"12.5",12500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557529","UTAHDWQ_WQX-UTLK210315-4996566-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996566-0318-4-C/results/911557529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2470","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","13:40:00","MST","2021-03-18 20:40:00",NA,"12.4",12400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557534","UTAHDWQ_WQX-UTLK210315-4996566-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996566-0318-4-C/results/911557534/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2471","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","14:30:00","MST","2021-03-18 21:30:00",NA,"0.497",497,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557548","UTAHDWQ_WQX-UTLK210315-4996680-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996680-0318-4-C/results/911557548/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5742","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","14:30:00","MST","2021-03-18 21:30:00",NA,"0.537",537,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557553","UTAHDWQ_WQX-UTLK210315-4996680-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996680-0318-4-C/results/911557553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2473","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-18","11:50:00","MST","2021-03-18 18:50:00",NA,"3.83",3830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557567","UTAHDWQ_WQX-UTLK210315-5919910-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-5919910-0318-4-C/results/911557567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2474","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-18","11:50:00","MST","2021-03-18 18:50:00",NA,"3.81",3810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557572","UTAHDWQ_WQX-UTLK210315-5919910-0318-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-5919910-0318-4-C/results/911557572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2475","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","17:00:00","MST","2021-02-17 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557586","UTAHDWQ_WQX-UTLK210216-4910009-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4910009-0216-4-C/results/911557586/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2476","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","17:00:00","MST","2021-02-17 00:00:00",NA,"0.171",171,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","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,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557591","UTAHDWQ_WQX-UTLK210216-4910009-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4910009-0216-4-C/results/911557591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2477","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","14:20:00","MST","2021-02-16 21:20:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557605","UTAHDWQ_WQX-UTLK210216-4994950-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4994950-0216-4-C/results/911557605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2478","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","14:20:00","MST","2021-02-16 21:20:00",NA,"2.66",2660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557610","UTAHDWQ_WQX-UTLK210216-4994950-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4994950-0216-4-C/results/911557610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2479","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","14:00:00","MST","2021-02-16 21:00:00",NA,"9.57",9570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557626","UTAHDWQ_WQX-UTLK210216-4995038-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995038-0216-4-C/results/911557626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2480","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","14:00:00","MST","2021-02-16 21:00:00",NA,"9.43",9430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557631","UTAHDWQ_WQX-UTLK210216-4995038-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995038-0216-4-C/results/911557631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2481","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","13:50:00","MST","2021-02-16 20:50:00",NA,"3.12",3120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557647","UTAHDWQ_WQX-UTLK210216-4995041-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995041-0216-4-C/results/911557647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2482","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","13:50:00","MST","2021-02-16 20:50:00",NA,"3.06",3060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557652","UTAHDWQ_WQX-UTLK210216-4995041-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995041-0216-4-C/results/911557652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2483","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","13:30:00","MST","2021-02-16 20:30:00",NA,"2.94",2940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557666","UTAHDWQ_WQX-UTLK210216-4995120-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995120-0216-4-C/results/911557666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2484","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","13:30:00","MST","2021-02-16 20:30:00",NA,"3.01",3010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557671","UTAHDWQ_WQX-UTLK210216-4995120-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995120-0216-4-C/results/911557671/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2485","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","09:50:00","MST","2021-02-16 16:50:00",NA,"0.379",379,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557685","UTAHDWQ_WQX-UTLK210216-4995310-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995310-0216-4-C/results/911557685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2486","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","09:50:00","MST","2021-02-16 16:50:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557690","UTAHDWQ_WQX-UTLK210216-4995310-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995310-0216-4-C/results/911557690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2487","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","10:40:00","MST","2021-02-16 17:40:00",NA,"5.07",5070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557706","UTAHDWQ_WQX-UTLK210216-4995465-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995465-0216-4-C/results/911557706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2488","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","10:40:00","MST","2021-02-16 17:40:00",NA,"4.74",4740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557711","UTAHDWQ_WQX-UTLK210216-4995465-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995465-0216-4-C/results/911557711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2489","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","11:15:00","MST","2021-02-16 18:15:00",NA,"0.524",524,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557725","UTAHDWQ_WQX-UTLK210216-4995578-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995578-0216-4-C/results/911557725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2490","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","11:15:00","MST","2021-02-16 18:15:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557730","UTAHDWQ_WQX-UTLK210216-4995578-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995578-0216-4-C/results/911557730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2491","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","11:30:00","MST","2021-02-16 18:30:00",NA,"2.68",2680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557744","UTAHDWQ_WQX-UTLK210216-4996044-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996044-0216-4-C/results/911557744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2492","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","11:30:00","MST","2021-02-16 18:30:00",NA,"2.8",2800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557749","UTAHDWQ_WQX-UTLK210216-4996044-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996044-0216-4-C/results/911557749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2493","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","12:20:00","MST","2021-02-16 19:20:00",NA,"0.845",845,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557763","UTAHDWQ_WQX-UTLK210216-4996100-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996100-0216-4-C/results/911557763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2494","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","12:20:00","MST","2021-02-16 19:20:00",NA,"0.899",899,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557768","UTAHDWQ_WQX-UTLK210216-4996100-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996100-0216-4-C/results/911557768/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2495","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","12:30:00","MST","2021-02-16 19:30:00",NA,"8.28",8280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557782","UTAHDWQ_WQX-UTLK210216-4996275-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996275-0216-4-C/results/911557782/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2496","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","12:30:00","MST","2021-02-16 19:30:00",NA,"7.79",7790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557787","UTAHDWQ_WQX-UTLK210216-4996275-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996275-0216-4-C/results/911557787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2497","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","13:00:00","MST","2021-02-16 20:00:00",NA,"9.9",9900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557803","UTAHDWQ_WQX-UTLK210216-4996540-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996540-0216-4-C/results/911557803/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2498","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","13:00:00","MST","2021-02-16 20:00:00",NA,"9.68",9680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557808","UTAHDWQ_WQX-UTLK210216-4996540-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996540-0216-4-C/results/911557808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2499","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","12:40:00","MST","2021-02-16 19:40:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557824","UTAHDWQ_WQX-UTLK210216-4996566-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996566-0216-4-C/results/911557824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2500","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","12:40:00","MST","2021-02-16 19:40:00",NA,"10.8",10800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557829","UTAHDWQ_WQX-UTLK210216-4996566-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996566-0216-4-C/results/911557829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2501","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","13:15:00","MST","2021-02-16 20:15:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557843","UTAHDWQ_WQX-UTLK210216-4996680-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996680-0216-4-C/results/911557843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2502","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","13:15:00","MST","2021-02-16 20:15:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557848","UTAHDWQ_WQX-UTLK210216-4996680-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996680-0216-4-C/results/911557848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2503","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-02-16","11:00:00","MST","2021-02-16 18:00:00",NA,"7.49",7490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557862","UTAHDWQ_WQX-UTLK210216-5919910-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-5919910-0216-4-C/results/911557862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2504","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-02-16","11:00:00","MST","2021-02-16 18:00:00",NA,"7.73",7730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911557867","UTAHDWQ_WQX-UTLK210216-5919910-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-01T12:37:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-5919910-0216-4-C/results/911557867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2505","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-26","12:00:00","MST","2021-03-26 19:00:00",NA,"0.533",533,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.97",0.97,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"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,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911738892","UTAHDWQ_WQX-BORLP210323-5952917-0326-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"37.8050000000",37.805,"-110.4710000000",-110.471,"OK","14070001","UTAHDWQ_WQX-5952917",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8050000000","-110.4710000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952917-0326-2-C/results/911738892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2506","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-26","12:00:00","MST","2021-03-26 19:00:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.97",0.97,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"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,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-911738897","UTAHDWQ_WQX-BORLP210323-5952917-0326-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"37.8050000000",37.805,"-110.4710000000",-110.471,"OK","14070001","UTAHDWQ_WQX-5952917",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8050000000","-110.4710000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952917-0326-2-C/results/911738897/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2507","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-08","10:09:00","MST","2020-10-08 17:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742246","UTAHDWQ_WQX-CUWSR201008-4936050-1008-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:32",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-2-C/results/911742246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2508","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-08","10:10:00","MST","2020-10-08 17:10:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742264","UTAHDWQ_WQX-CUWSR201008-4936050-1008-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:33",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-23-C/results/911742264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5779","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-08","10:11:00","MST","2020-10-08 17:11:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742282","UTAHDWQ_WQX-CUWSR201008-4936050-1008-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:33",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-24-C/results/911742282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2510","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-08","10:14:00","MST","2020-10-08 17:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742300","UTAHDWQ_WQX-CUWSR201008-4936050-1008-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:33",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-26-C/results/911742300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2511","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-08","10:15:00","MST","2020-10-08 17:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","21",21,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742318","UTAHDWQ_WQX-CUWSR201008-4936050-1008-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:34",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-27-C/results/911742318/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5782","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-08","10:19:00","MST","2020-10-08 17:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","28.4",28.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742336","UTAHDWQ_WQX-CUWSR201008-4936050-1008-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:34",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-29-C/results/911742336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2513","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-08","13:34:00","MST","2020-10-08 20:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742354","UTAHDWQ_WQX-CUWRF201008-5937650-1008-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:34",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201008-5937650-1008-2-C/results/911742354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2514","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-08","13:38:00","MST","2020-10-08 20:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742372","UTAHDWQ_WQX-CUWRF201008-5937650-1008-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:34",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201008-5937650-1008-25-C/results/911742372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2515","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-08","13:46:00","MST","2020-10-08 20:46:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","19.5",19.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742390","UTAHDWQ_WQX-CUWRF201008-5937650-1008-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:34",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201008-5937650-1008-29-C/results/911742390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2516","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-15","10:51:00","MST","2020-10-15 17:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742408","UTAHDWQ_WQX-CUWSTR201015-4936420-1015-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:35",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201015-4936420-1015-2-C/results/911742408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2517","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-15","10:55:00","MST","2020-10-15 17:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742420","UTAHDWQ_WQX-CUWSTR201015-4936420-1015-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:35",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201015-4936420-1015-25-C/results/911742420/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2518","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-15","11:08:00","MST","2020-10-15 18:08:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","20.2",20.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742431","UTAHDWQ_WQX-CUWSTR201015-4936420-1015-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:35",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201015-4936420-1015-29-C/results/911742431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2519","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:14:00","MST","2020-10-27 17:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742442","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:35",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-2-C/results/911742442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2520","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:25:00","MST","2020-10-27 17:25:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742454","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:35",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-22-C/results/911742454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2521","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:30:00","MST","2020-10-27 17:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742466","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:35",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-23-C/results/911742466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2522","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:32:00","MST","2020-10-27 17:32:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742478","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:35",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-24-C/results/911742478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2523","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:37:00","MST","2020-10-27 17:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742490","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:35",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-26-C/results/911742490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2524","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:40:00","MST","2020-10-27 17:40:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","24",24,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742502","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:36",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-27-C/results/911742502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2525","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","10:51:00","MST","2020-10-27 17:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","31",31,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742514","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:36",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-28-C/results/911742514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2526","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:02:00","MST","2020-10-27 18:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","64",64,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742526","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:36",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-29-C/results/911742526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2527","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:35:00","MST","2020-10-27 18:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742557","UTAHDWQ_WQX-CUWJPRESJR201027-5914040-1027-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:36",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914040-1027-2-C/results/911742557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2528","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","11:49:00","MST","2020-10-27 18:49:00",NA,"1.2",1200,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","35.6",35.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742569","UTAHDWQ_WQX-CUWJPRESJR201027-5914040-1027-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:36",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914040-1027-29-C/results/911742569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2529","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:04:00","MST","2020-10-27 19:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742580","UTAHDWQ_WQX-CUWJPRESJR201027-5914030-1027-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:37",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914030-1027-2-C/results/911742580/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2530","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-27","12:18:00","MST","2020-10-27 19:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","37.8",37.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742592","UTAHDWQ_WQX-CUWJPRESJR201027-5914030-1027-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:37",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914030-1027-29-C/results/911742592/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2531","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:14:00","MST","2020-10-28 17:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742603","UTAHDWQ_WQX-CUWJP201028-4998400-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:37",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4998400-1028-4-C/results/911742603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2532","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:38:00","MST","2020-10-28 17:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742617","UTAHDWQ_WQX-CUWJP201028-4998130-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:37",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4998130-1028-4-C/results/911742617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2533","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","10:57:00","MST","2020-10-28 17:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742648","UTAHDWQ_WQX-CUWJP201028-4997330-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:37",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4997330-1028-4-C/results/911742648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2534","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:18:00","MST","2020-10-28 18:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742679","UTAHDWQ_WQX-CUWJP201028-4997675-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:38",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4997675-1028-4-C/results/911742679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2535","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:28:00","MST","2020-10-28 18:28:00",NA,"2.2",2200,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742710","UTAHDWQ_WQX-CUWJP201028-4997670-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:38",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4997670-1028-4-C/results/911742710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2536","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:44:00","MST","2020-10-28 18:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742741","UTAHDWQ_WQX-CUWJP201028-4997300-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:38",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4997300-1028-4-C/results/911742741/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5807","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","11:54:00","MST","2020-10-28 18:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742753","UTAHDWQ_WQX-CUWJP201028-5910302-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:38",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5910302-1028-4-C/results/911742753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2538","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:03:00","MST","2020-10-28 19:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742765","UTAHDWQ_WQX-CUWJP201028-5910273-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:38",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5910273-1028-4-C/results/911742765/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2539","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:16:00","MST","2020-10-28 19:16:00",NA,"1.9",1900,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742777","UTAHDWQ_WQX-CUWJP201028-4997250-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:39",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4997250-1028-4-C/results/911742777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5810","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","12:25:00","MST","2020-10-28 19:25:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742789","UTAHDWQ_WQX-CUWJP201028-5910250-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:39",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5910250-1028-4-C/results/911742789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2541","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:15:00","MST","2020-10-28 20:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742801","UTAHDWQ_WQX-CUWJP201028-5910160-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:39",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5910160-1028-4-C/results/911742801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2542","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:33:00","MST","2020-10-28 20:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742816","UTAHDWQ_WQX-CUWJP201028-5913630-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"40.4841200000",40.48412,"-111.4651800000",-111.46518,"OK","16020203","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:39",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4841200000","-111.4651800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5913630-1028-4-C/results/911742816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2543","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","13:55:00","MST","2020-10-28 20:55:00",NA,"3.4",3400,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742847","UTAHDWQ_WQX-CUWJP201028-5910020-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"40.4613500000",40.46135,"-111.4715700000",-111.47157,"OK","16020203","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:39",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4613500000","-111.4715700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5910020-1028-4-C/results/911742847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2544","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:09:00","MST","2020-10-28 21:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742859","UTAHDWQ_WQX-CUWJP201028-5913460-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:39",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5913460-1028-4-C/results/911742859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2545","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:38:00","MST","2020-10-28 21:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742871","UTAHDWQ_WQX-CUWJP201028-4996870-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:40",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996870-1028-4-C/results/911742871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2546","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:40:00","MST","2020-10-28 21:40:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742883","UTAHDWQ_WQX-CUWJP201028-5913210-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:40",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5913210-1028-4-C/results/911742883/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2547","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:41:00","MST","2020-10-28 21:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742914","UTAHDWQ_WQX-CUWJP201028-4996890-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:40",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996890-1028-4-C/results/911742914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2548","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","14:53:00","MST","2020-10-28 21:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742926","UTAHDWQ_WQX-CUWJP201028-4996850-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:40",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996850-1028-4-C/results/911742926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2549","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","15:02:00","MST","2020-10-28 22:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742938","UTAHDWQ_WQX-CUWJP201028-4996830-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:40",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996830-1028-4-C/results/911742938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2550","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","15:13:00","MST","2020-10-28 22:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742950","UTAHDWQ_WQX-CUWJP201028-4996810-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:40",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996810-1028-4-C/results/911742950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2551","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-28","15:26:00","MST","2020-10-28 22:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742962","UTAHDWQ_WQX-CUWJP201028-4996780-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:40",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996780-1028-4-C/results/911742962/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2552","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-29","09:20:00","MST","2020-10-29 16:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911742974","UTAHDWQ_WQX-CUWDF201029-4995600-1029-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:41",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201029-4995600-1029-4-C/results/911742974/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2553","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-29","10:27:00","MST","2020-10-29 17:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743081","UTAHDWQ_WQX-CUWDF201029-4995730-1029-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:42",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201029-4995730-1029-4-C/results/911743081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2554","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-29","10:22:00","MST","2020-10-29 17:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743112","UTAHDWQ_WQX-CUWDF201029-4995710-1029-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:42",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201029-4995710-1029-4-C/results/911743112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2555","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-04","10:49:00","MST","2020-11-04 17:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743193","UTAHDWQ_WQX-CUWSR201104-4936050-1104-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:42",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-2-C/results/911743193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2556","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-04","10:53:00","MST","2020-11-04 17:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","3",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743211","UTAHDWQ_WQX-CUWSR201104-4936050-1104-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:43",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-23-C/results/911743211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2557","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-04","11:05:00","MST","2020-11-04 18:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743229","UTAHDWQ_WQX-CUWSR201104-4936050-1104-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:43",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-24-C/results/911743229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2558","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-04","11:07:00","MST","2020-11-04 18:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","16",16,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743247","UTAHDWQ_WQX-CUWSR201104-4936050-1104-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:43",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-26-C/results/911743247/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2559","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-04","11:20:00","MST","2020-11-04 18:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743265","UTAHDWQ_WQX-CUWSR201104-4936050-1104-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:43",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-27-C/results/911743265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2560","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-04","11:30:00","MST","2020-11-04 18:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","31.1",31.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743283","UTAHDWQ_WQX-CUWSR201104-4936050-1104-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:43",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-29-C/results/911743283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2561","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-04","14:19:00","MST","2020-11-04 21:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743301","UTAHDWQ_WQX-CUWRF201104-5937650-1104-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:43",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201104-5937650-1104-2-C/results/911743301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2562","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-04","14:23:00","MST","2020-11-04 21:23:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743319","UTAHDWQ_WQX-CUWRF201104-5937650-1104-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:44",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201104-5937650-1104-25-C/results/911743319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2563","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-04","14:34:00","MST","2020-11-04 21:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","23.5",23.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743337","UTAHDWQ_WQX-CUWRF201104-5937650-1104-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:44",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201104-5937650-1104-29-C/results/911743337/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2564","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:40:00","MST","2020-11-17 17:40:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743355","UTAHDWQ_WQX-CUWSTR201117-4936420-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:44",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201117-4936420-1117-2-C/results/911743355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2565","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:43:00","MST","2020-11-17 17:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743367","UTAHDWQ_WQX-CUWSTR201117-4936420-1117-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:44",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201117-4936420-1117-25-C/results/911743367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2566","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-17","10:47:00","MST","2020-11-17 17:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","20",20,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743378","UTAHDWQ_WQX-CUWSTR201117-4936420-1117-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:44",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-11-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201117-4936420-1117-29-C/results/911743378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2567","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","09:42:00","MST","2020-11-18 16:42:00",NA,"1.9",1900,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743389","UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:44",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-2-C/results/911743389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2568","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","09:45:00","MST","2020-11-18 16:45:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743401","UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:44",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-25-C/results/911743401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2569","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","09:47:00","MST","2020-11-18 16:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","24",24,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743413","UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:44",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-28-C/results/911743413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2570","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","09:56:00","MST","2020-11-18 16:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","31.6",31.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743425","UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:45",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-29-C/results/911743425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2571","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-18","09:42:00","MST","2020-11-18 16:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743437","UTAHDWQ_WQX-CUWJPRESDC201118-5913490-1118-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:45",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC201118-5913490-1118-2-C/results/911743437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2572","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","10:12:00","MST","2020-11-19 17:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743449","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:45",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-2-C/results/911743449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2573","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","10:15:00","MST","2020-11-19 17:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743461","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:45",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-22-C/results/911743461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2574","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","10:16:00","MST","2020-11-19 17:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743473","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:45",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-23-C/results/911743473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5845","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","10:18:00","MST","2020-11-19 17:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743485","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:45",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-24-C/results/911743485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2576","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","10:20:00","MST","2020-11-19 17:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743497","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:45",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-26-C/results/911743497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2577","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","10:24:00","MST","2020-11-19 17:24:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","24",24,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743509","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:45",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-27-C/results/911743509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5848","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","10:29:00","MST","2020-11-19 17:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","31",31,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743521","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-28-C/results/911743521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2579","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","10:35:00","MST","2020-11-19 17:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","59.3",59.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743533","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-29-C/results/911743533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2580","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","11:13:00","MST","2020-11-19 18:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743545","UTAHDWQ_WQX-CUWJPRESJR201119-5914040-1119-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914040-1119-2-C/results/911743545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5851","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","11:22:00","MST","2020-11-19 18:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","33.8",33.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743557","UTAHDWQ_WQX-CUWJPRESJR201119-5914040-1119-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914040-1119-29-C/results/911743557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2582","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","11:45:00","MST","2020-11-19 18:45:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743568","UTAHDWQ_WQX-CUWJPRESJR201119-5914030-1119-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914030-1119-2-C/results/911743568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2583","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-19","11:56:00","MST","2020-11-19 18:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","36.6",36.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743580","UTAHDWQ_WQX-CUWJPRESJR201119-5914030-1119-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914030-1119-29-C/results/911743580/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2584","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","10:13:00","MST","2020-11-24 17:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743591","UTAHDWQ_WQX-CUWJP201124-4998400-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4998400-1124-4-C/results/911743591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2585","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","10:33:00","MST","2020-11-24 17:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743605","UTAHDWQ_WQX-CUWJP201124-4998140-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","043","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"40.6099500000",40.60995,"-111.3051800000",-111.30518,"OK","16020203","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6099500000","-111.3051800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4998140-1124-4-C/results/911743605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2586","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","10:43:00","MST","2020-11-24 17:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743617","UTAHDWQ_WQX-CUWJP201124-4998130-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4998130-1124-4-C/results/911743617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2587","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","11:03:00","MST","2020-11-24 18:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743629","UTAHDWQ_WQX-CUWJP201124-4997330-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:47",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4997330-1124-4-C/results/911743629/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2588","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","11:22:00","MST","2020-11-24 18:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743641","UTAHDWQ_WQX-CUWJP201124-4997675-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:47",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4997675-1124-4-C/results/911743641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2589","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","11:30:00","MST","2020-11-24 18:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743672","UTAHDWQ_WQX-CUWJP201124-4997670-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:47",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4997670-1124-4-C/results/911743672/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5860","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","11:47:00","MST","2020-11-24 18:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743703","UTAHDWQ_WQX-CUWJP201124-4997300-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:47",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4997300-1124-4-C/results/911743703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2591","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","11:57:00","MST","2020-11-24 18:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743715","UTAHDWQ_WQX-CUWJP201124-5910302-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:47",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5910302-1124-4-C/results/911743715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2592","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","12:07:00","MST","2020-11-24 19:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743727","UTAHDWQ_WQX-CUWJP201124-5910273-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:48",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5910273-1124-4-C/results/911743727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5863","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","12:23:00","MST","2020-11-24 19:23:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743739","UTAHDWQ_WQX-CUWJP201124-4997250-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:48",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4997250-1124-4-C/results/911743739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2594","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","12:32:00","MST","2020-11-24 19:32:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743751","UTAHDWQ_WQX-CUWJP201124-5910250-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:48",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5910250-1124-4-C/results/911743751/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2595","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","13:17:00","MST","2020-11-24 20:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743763","UTAHDWQ_WQX-CUWJP201124-5910160-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:48",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5910160-1124-4-C/results/911743763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2596","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","13:34:00","MST","2020-11-24 20:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743778","UTAHDWQ_WQX-CUWJP201124-5913630-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"40.4841200000",40.48412,"-111.4651800000",-111.46518,"OK","16020203","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:48",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4841200000","-111.4651800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5913630-1124-4-C/results/911743778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2597","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","13:52:00","MST","2020-11-24 20:52:00",NA,"2.7",2700,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743790","UTAHDWQ_WQX-CUWJP201124-5910020-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"40.4613500000",40.46135,"-111.4715700000",-111.47157,"OK","16020203","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:48",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4613500000","-111.4715700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5910020-1124-4-C/results/911743790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5868","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","14:06:00","MST","2020-11-24 21:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743802","UTAHDWQ_WQX-CUWJP201124-5913460-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:48",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5913460-1124-4-C/results/911743802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2599","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","14:41:00","MST","2020-11-24 21:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743814","UTAHDWQ_WQX-CUWJP201124-4996870-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:48",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996870-1124-4-C/results/911743814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2600","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","14:42:00","MST","2020-11-24 21:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743826","UTAHDWQ_WQX-CUWJP201124-4996890-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:49",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996890-1124-4-C/results/911743826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5871","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","14:43:00","MST","2020-11-24 21:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743838","UTAHDWQ_WQX-CUWJP201124-5913210-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:49",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5913210-1124-4-C/results/911743838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2602","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","14:55:00","MST","2020-11-24 21:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743850","UTAHDWQ_WQX-CUWJP201124-4996850-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:49",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996850-1124-4-C/results/911743850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2603","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","15:04:00","MST","2020-11-24 22:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743862","UTAHDWQ_WQX-CUWJP201124-4996830-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:49",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996830-1124-4-C/results/911743862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5874","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","15:15:00","MST","2020-11-24 22:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743874","UTAHDWQ_WQX-CUWJP201124-4996810-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:49",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996810-1124-4-C/results/911743874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2605","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-24","15:29:00","MST","2020-11-24 22:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743886","UTAHDWQ_WQX-CUWJP201124-4996780-1124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:49",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996780-1124-4-C/results/911743886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2606","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","09:18:00","MST","2020-11-30 16:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743898","UTAHDWQ_WQX-CUWDF201130-4995600-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:49",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201130-4995600-1130-4-C/results/911743898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2607","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","10:33:00","MST","2020-11-30 17:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743949","UTAHDWQ_WQX-CUWDF201130-4995730-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:50",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201130-4995730-1130-4-C/results/911743949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2608","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-11-30","10:27:00","MST","2020-11-30 17:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743966","UTAHDWQ_WQX-CUWDF201130-4995710-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:50",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2020-12-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201130-4995710-1130-4-C/results/911743966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2609","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","10:12:00","MST","2021-01-26 17:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911743994","UTAHDWQ_WQX-CUWJP210126-4998400-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:50",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4998400-0126-4-C/results/911743994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2610","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","10:36:00","MST","2021-01-26 17:36:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744003","UTAHDWQ_WQX-CUWJP210126-4998130-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:50",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4998130-0126-4-C/results/911744003/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2611","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","10:57:00","MST","2021-01-26 17:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744010","UTAHDWQ_WQX-CUWJP210126-4997330-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:50",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4997330-0126-4-C/results/911744010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2612","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","11:09:00","MST","2021-01-26 18:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744017","UTAHDWQ_WQX-CUWJP210126-4997300-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:50",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4997300-0126-4-C/results/911744017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2613","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","11:18:00","MST","2021-01-26 18:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744024","UTAHDWQ_WQX-CUWJP210126-5910302-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:51",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-5910302-0126-4-C/results/911744024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2614","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","11:27:00","MST","2021-01-26 18:27:00",NA,"1.3",1300,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744031","UTAHDWQ_WQX-CUWJP210126-5910273-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:51",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-5910273-0126-4-C/results/911744031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2615","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","11:42:00","MST","2021-01-26 18:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744038","UTAHDWQ_WQX-CUWJP210126-4997250-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:51",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4997250-0126-4-C/results/911744038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2616","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","11:50:00","MST","2021-01-26 18:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744045","UTAHDWQ_WQX-CUWJP210126-5910250-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:51",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-5910250-0126-4-C/results/911744045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2617","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","12:43:00","MST","2021-01-26 19:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744052","UTAHDWQ_WQX-CUWJP210126-5910160-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:51",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-5910160-0126-4-C/results/911744052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2618","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","13:13:00","MST","2021-01-26 20:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744062","UTAHDWQ_WQX-CUWJP210126-4996830-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:51",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4996830-0126-4-C/results/911744062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2619","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-01-26","13:30:00","MST","2021-01-26 20:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744069","UTAHDWQ_WQX-CUWJP210126-4996780-0126-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:51",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4996780-0126-4-C/results/911744069/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2620","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","10:16:00","MST","2021-03-24 17:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744076","UTAHDWQ_WQX-CUWJP210324-4998400-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:51",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4998400-0324-4-C/results/911744076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2621","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","10:36:00","MST","2021-03-24 17:36:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744090","UTAHDWQ_WQX-CUWJP210324-4998140-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","043","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"40.6099500000",40.60995,"-111.3051800000",-111.30518,"OK","16020203","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:51",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6099500000","-111.3051800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4998140-0324-4-C/results/911744090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2622","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","10:46:00","MST","2021-03-24 17:46:00",NA,"1.1",1100,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744102","UTAHDWQ_WQX-CUWJP210324-4998130-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:51",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4998130-0324-4-C/results/911744102/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2623","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","11:08:00","MST","2021-03-24 18:08:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744114","UTAHDWQ_WQX-CUWJP210324-4997330-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:52",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4997330-0324-4-C/results/911744114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2624","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","11:29:00","MST","2021-03-24 18:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744126","UTAHDWQ_WQX-CUWJP210324-4997675-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:52",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4997675-0324-4-C/results/911744126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2625","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","11:37:00","MST","2021-03-24 18:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744157","UTAHDWQ_WQX-CUWJP210324-4997670-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:52",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4997670-0324-4-C/results/911744157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2626","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","11:53:00","MST","2021-03-24 18:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744188","UTAHDWQ_WQX-CUWJP210324-4997300-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:52",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4997300-0324-4-C/results/911744188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2627","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","12:02:00","MST","2021-03-24 19:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744200","UTAHDWQ_WQX-CUWJP210324-5910302-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:52",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5910302-0324-4-C/results/911744200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2628","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","12:11:00","MST","2021-03-24 19:11:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744212","UTAHDWQ_WQX-CUWJP210324-5910273-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:53",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5910273-0324-4-C/results/911744212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2629","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","12:22:00","MST","2021-03-24 19:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744224","UTAHDWQ_WQX-CUWJP210324-4997250-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:53",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4997250-0324-4-C/results/911744224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2630","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","12:31:00","MST","2021-03-24 19:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744236","UTAHDWQ_WQX-CUWJP210324-5910250-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:53",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5910250-0324-4-C/results/911744236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2631","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","13:11:00","MST","2021-03-24 20:11:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744248","UTAHDWQ_WQX-CUWJP210324-5910160-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:53",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5910160-0324-4-C/results/911744248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2632","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","13:26:00","MST","2021-03-24 20:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744263","UTAHDWQ_WQX-CUWJP210324-5913630-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"40.4841200000",40.48412,"-111.4651800000",-111.46518,"OK","16020203","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:53",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4841200000","-111.4651800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5913630-0324-4-C/results/911744263/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2633","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","13:36:00","MST","2021-03-24 20:36:00",NA,"2.3",2300,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744275","UTAHDWQ_WQX-CUWJP210324-5910020-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"40.4613500000",40.46135,"-111.4715700000",-111.47157,"OK","16020203","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:53",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4613500000","-111.4715700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5910020-0324-4-C/results/911744275/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2634","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","14:00:00","MST","2021-03-24 21:00:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744287","UTAHDWQ_WQX-CUWJP210324-5913460-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:53",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5913460-0324-4-C/results/911744287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2635","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","14:25:00","MST","2021-03-24 21:25:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744299","UTAHDWQ_WQX-CUWJP210324-4996870-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:53",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996870-0324-4-C/results/911744299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2636","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","14:29:00","MST","2021-03-24 21:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744311","UTAHDWQ_WQX-CUWJP210324-4996890-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:54",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996890-0324-4-C/results/911744311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2637","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","14:30:00","MST","2021-03-24 21:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744323","UTAHDWQ_WQX-CUWJP210324-5913210-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:54",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5913210-0324-4-C/results/911744323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2638","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","14:42:00","MST","2021-03-24 21:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744335","UTAHDWQ_WQX-CUWJP210324-4996850-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:54",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996850-0324-4-C/results/911744335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2639","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","14:52:00","MST","2021-03-24 21:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744347","UTAHDWQ_WQX-CUWJP210324-4996830-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:54",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996830-0324-4-C/results/911744347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2640","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","15:03:00","MST","2021-03-24 22:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744359","UTAHDWQ_WQX-CUWJP210324-4996810-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:54",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996810-0324-4-C/results/911744359/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2641","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-24","15:16:00","MST","2021-03-24 22:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744371","UTAHDWQ_WQX-CUWJP210324-4996780-0324-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:54",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996780-0324-4-C/results/911744371/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2642","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","09:37:00","MST","2021-03-31 16:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744383","UTAHDWQ_WQX-CUWDF210331-4995600-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:54",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210331-4995600-0331-4-C/results/911744383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5913","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","10:45:00","MST","2021-03-31 17:45:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744490","UTAHDWQ_WQX-CUWDF210331-4995730-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:55",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210331-4995730-0331-4-C/results/911744490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2644","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-31","10:42:00","MST","2021-03-31 17:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-911744521","UTAHDWQ_WQX-CUWDF210331-4995710-0331-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-08T10:47:56",FALSE,"Flag",NA,NA,NA,NA,NA,"CUWCD",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210331-4995710-0331-4-C/results/911744521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2038","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-07-27","16:01:00","MST","2021-07-27 23:01:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-911870956","NTHRNUTE-IDR:202107271601:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","INDIAN CREEK","River/Stream",NA,"40.1572222222",40.1572222222,"-110.4050000000",-110.405,"OK","14060004","NTHRNUTE-IDR",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-09T18:27:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1572222222","-110.4050000000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"15","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"None",NA,"Not Reviewed","AMMONIA_UNFILTERED_NA_UG/L","2021-07-27","16:01:00","MST","2021-07-27 23:01:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-911870959","NTHRNUTE-IDR:202107271601:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","INDIAN CREEK","River/Stream",NA,"40.1572222222",40.1572222222,"-110.4050000000",-110.405,"OK","14060004","NTHRNUTE-IDR",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-09T18:27:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1572222222","-110.4050000000","Final",NA,NA,NA,NA,NA,NA,"2021-08-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202107271601%3ASR/results/911870959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2039","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-07-28","10:42:00","MST","2021-07-28 17:42:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-911871003","NTHRNUTE-WRB:202107281042:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Whiterocks River 2","River/Stream","River above Uriah Heeps.","40.5331460000",40.533146,"-109.9237518300",-109.92375183,"OK","14060003","NTHRNUTE-WRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-09T18:27:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5331460000","-109.9237518300","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"43","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"None",NA,"Not Reviewed","AMMONIA_UNFILTERED_NA_UG/L","2021-07-28","10:42:00","MST","2021-07-28 17:42:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-911871008","NTHRNUTE-WRB:202107281042:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Whiterocks River 2","River/Stream","River above Uriah Heeps.","40.5331460000",40.533146,"-109.9237518300",-109.92375183,"OK","14060003","NTHRNUTE-WRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-09T18:27:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5331460000","-109.9237518300","Final",NA,NA,NA,NA,NA,NA,"2021-08-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202107281042%3ASR/results/911871008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2647","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","11:00:00","MST","2021-03-15 18:00:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.57",1.57,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912863939","UTAHDWQ_WQX-UTLK210315-4917305-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917305-0315-29-C/results/912863939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2648","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","11:00:00","MST","2021-03-15 18:00:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.57",1.57,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912863944","UTAHDWQ_WQX-UTLK210315-4917305-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917305-0315-29-C/results/912863944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2649","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","11:45:00","MST","2021-03-15 18:45:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.01",2.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912863976","UTAHDWQ_WQX-UTLK210315-4917310-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917310-0315-29-C/results/912863976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2650","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","11:45:00","MST","2021-03-15 18:45:00",NA,"0.631",631,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.01",2.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912863981","UTAHDWQ_WQX-UTLK210315-4917310-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917310-0315-29-C/results/912863981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2651","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","12:00:00","MST","2021-03-15 19:00:00",NA,"0.644",644,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.08",2.08,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864013","UTAHDWQ_WQX-UTLK210315-4917320-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917320-0315-29-C/results/912864013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2652","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","12:00:00","MST","2021-03-15 19:00:00",NA,"0.636",636,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.08",2.08,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864018","UTAHDWQ_WQX-UTLK210315-4917320-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917320-0315-29-C/results/912864018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2653","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","11:30:00","MST","2021-03-15 18:30:00",NA,"0.934",934,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.44",1.44,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864050","UTAHDWQ_WQX-UTLK210315-4917335-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917335-0315-29-C/results/912864050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2654","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","11:30:00","MST","2021-03-15 18:30:00",NA,"0.646",646,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.44",1.44,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864055","UTAHDWQ_WQX-UTLK210315-4917335-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917335-0315-29-C/results/912864055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2655","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","12:15:00","MST","2021-03-15 19:15:00",NA,"0.73",730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.67",2.67,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864088","UTAHDWQ_WQX-UTLK210315-4917365-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917365-0315-29-C/results/912864088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2656","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","12:15:00","MST","2021-03-15 19:15:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.67",2.67,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864093","UTAHDWQ_WQX-UTLK210315-4917365-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917365-0315-29-C/results/912864093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2657","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","13:20:00","MST","2021-03-16 20:20:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.66",2.66,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864125","UTAHDWQ_WQX-UTLK210315-4917370-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917370-0316-29-C/results/912864125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2658","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","13:20:00","MST","2021-03-16 20:20:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.66",2.66,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864130","UTAHDWQ_WQX-UTLK210315-4917370-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917370-0316-29-C/results/912864130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2659","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","13:00:00","MST","2021-03-15 20:00:00",NA,"0.624",624,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.97",2.97,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864162","UTAHDWQ_WQX-UTLK210315-4917390-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917390-0315-29-C/results/912864162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2660","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","13:00:00","MST","2021-03-15 20:00:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.97",2.97,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864167","UTAHDWQ_WQX-UTLK210315-4917390-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917390-0315-29-C/results/912864167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2661","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","13:40:00","MST","2021-03-16 20:40:00",NA,"2.11",2110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.67",1.67,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864199","UTAHDWQ_WQX-UTLK210315-4917414-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917414-0316-29-C/results/912864199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2662","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","13:40:00","MST","2021-03-16 20:40:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.67",1.67,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864204","UTAHDWQ_WQX-UTLK210315-4917414-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917414-0316-29-C/results/912864204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2663","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","12:30:00","MST","2021-03-15 19:30:00",NA,"0.905",905,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.02",2.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864236","UTAHDWQ_WQX-UTLK210315-4917433-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917433-0315-29-C/results/912864236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2664","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","12:30:00","MST","2021-03-15 19:30:00",NA,"0.703",703,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.02",2.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864241","UTAHDWQ_WQX-UTLK210315-4917433-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917433-0315-29-C/results/912864241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2665","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-15","13:30:00","MST","2021-03-15 20:30:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.01",1.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864274","UTAHDWQ_WQX-UTLK210315-4917450-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917450-0315-29-C/results/912864274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2666","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-15","13:30:00","MST","2021-03-15 20:30:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.01",1.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864279","UTAHDWQ_WQX-UTLK210315-4917450-0315-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-03-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917450-0315-29-C/results/912864279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2667","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","12:30:00","MST","2021-03-16 19:30:00",NA,"0.661",661,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.69",2.69,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864311","UTAHDWQ_WQX-UTLK210315-4917500-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917500-0316-29-C/results/912864311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2668","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","12:30:00","MST","2021-03-16 19:30:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.69",2.69,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864316","UTAHDWQ_WQX-UTLK210315-4917500-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917500-0316-29-C/results/912864316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2669","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","14:00:00","MST","2021-03-16 21:00:00",NA,"0.626",626,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.23",2.23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864348","UTAHDWQ_WQX-UTLK210315-4917520-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917520-0316-29-C/results/912864348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2670","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","14:00:00","MST","2021-03-16 21:00:00",NA,"0.636",636,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.23",2.23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864353","UTAHDWQ_WQX-UTLK210315-4917520-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917520-0316-29-C/results/912864353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2671","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","11:40:00","MST","2021-03-16 18:40:00",NA,"0.691",691,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.95",0.95,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864385","UTAHDWQ_WQX-UTLK210315-4917600-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917600-0316-29-C/results/912864385/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2672","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","11:40:00","MST","2021-03-16 18:40:00",NA,"0.643",643,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.95",0.95,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864390","UTAHDWQ_WQX-UTLK210315-4917600-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917600-0316-29-C/results/912864390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2673","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","11:15:00","MST","2021-03-16 18:15:00",NA,"0.74",740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.44",1.44,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864422","UTAHDWQ_WQX-UTLK210315-4917708-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917708-0316-29-C/results/912864422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2674","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","11:15:00","MST","2021-03-16 18:15:00",NA,"0.689",689,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.44",1.44,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864427","UTAHDWQ_WQX-UTLK210315-4917708-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917708-0316-29-C/results/912864427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2675","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","10:50:00","MST","2021-03-16 17:50:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.89",2.89,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864459","UTAHDWQ_WQX-UTLK210315-4917710-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917710-0316-29-C/results/912864459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2676","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","10:50:00","MST","2021-03-16 17:50:00",NA,"0.609",609,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.89",2.89,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864464","UTAHDWQ_WQX-UTLK210315-4917710-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917710-0316-29-C/results/912864464/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2677","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","10:30:00","MST","2021-03-16 17:30:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.99",2.99,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864496","UTAHDWQ_WQX-UTLK210315-4917715-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917715-0316-29-C/results/912864496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2678","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","10:30:00","MST","2021-03-16 17:30:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.99",2.99,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864501","UTAHDWQ_WQX-UTLK210315-4917715-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917715-0316-29-C/results/912864501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2679","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-16","10:00:00","MST","2021-03-16 17:00:00",NA,"0.68",680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.27",1.27,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864533","UTAHDWQ_WQX-UTLK210315-4917770-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917770-0316-29-C/results/912864533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2680","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-16","10:00:00","MST","2021-03-16 17:00:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.27",1.27,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-912864538","UTAHDWQ_WQX-UTLK210315-4917770-0316-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-09-22T09:32:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917770-0316-29-C/results/912864538/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-20","15:25:00","MST","2021-09-20 22:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916412765","NTHRNUTE-WRB:202109201525:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Whiterocks River 2","River/Stream","River above Uriah Heeps.","40.5331460000",40.533146,"-109.9237518300",-109.92375183,"OK","14060003","NTHRNUTE-WRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-18T16:22:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5331460000","-109.9237518300","Final",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202109201525%3ASR/results/916412765/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2040","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-09-20","15:25:00","MST","2021-09-20 22:25:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916412767","NTHRNUTE-WRB:202109201525:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Whiterocks River 2","River/Stream","River above Uriah Heeps.","40.5331460000",40.533146,"-109.9237518300",-109.92375183,"OK","14060003","NTHRNUTE-WRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-18T16:22:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5331460000","-109.9237518300","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2041","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-09-14","12:54:00","MST","2021-09-14 19:54:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916689906","NTHRNUTE-DRB:202109141254:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"4","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-14","12:54:00","MST","2021-09-14 19:54:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916689910","NTHRNUTE-DRB:202109141254:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202109141254%3ASR/results/916689910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"2","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-14","12:54:00","MST","2021-09-14 19:54:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916689983","NTHRNUTE-DRB:202109141254:QFB","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202109141254%3AQFB/results/916689983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"2048","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-09-14","12:54:00","MST","2021-09-14 19:54:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916689985","NTHRNUTE-DRB:202109141254:QFB","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"2042","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-09-14","13:27:00","MST","2021-09-14 20:27:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916690007","NTHRNUTE-G4C:202109141327:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","4 Corners","River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","40.2415300000",40.24153,"-109.8590500000",-109.85905,"OK","14060003","NTHRNUTE-G4C",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2415300000","-109.8590500000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"44","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-14","13:27:00","MST","2021-09-14 20:27:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916690009","NTHRNUTE-G4C:202109141327:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","4 Corners","River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","40.2415300000",40.24153,"-109.8590500000",-109.85905,"OK","14060003","NTHRNUTE-G4C",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2415300000","-109.8590500000","Final",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-G4C%3A202109141327%3ASR/results/916690009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"2049","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-09-27","12:40:00","MST","2021-09-27 19:40:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916690059","NTHRNUTE-IDR:202109271240:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","INDIAN CREEK","River/Stream",NA,"40.1572222222",40.1572222222,"-110.4050000000",-110.405,"OK","14060004","NTHRNUTE-IDR",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:28",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1572222222","-110.4050000000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"19","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-27","12:40:00","MST","2021-09-27 19:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916690060","NTHRNUTE-IDR:202109271240:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","INDIAN CREEK","River/Stream",NA,"40.1572222222",40.1572222222,"-110.4050000000",-110.405,"OK","14060004","NTHRNUTE-IDR",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:28",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1572222222","-110.4050000000","Final",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202109271240%3ASR/results/916690060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11","Quality Control Sample-Lab Duplicate","QC_duplicate","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-14","12:09:00","MST","2021-09-14 19:09:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916690121","NTHRNUTE-DDC:202109141209:QLD","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","40.2158400000",40.21584,"-109.7838900000",-109.78389,"OK","14060003","NTHRNUTE-DDC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:28",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2158400000","-109.7838900000","Final",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202109141209%3AQLD/results/916690121/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2043","Quality Control Sample-Lab Duplicate","QC_duplicate","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-09-14","12:09:00","MST","2021-09-14 19:09:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916690123","NTHRNUTE-DDC:202109141209:QLD","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","40.2158400000",40.21584,"-109.7838900000",-109.78389,"OK","14060003","NTHRNUTE-DDC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:28",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2158400000","-109.7838900000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"49","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-14","12:09:00","MST","2021-09-14 19:09:00",NA,"0.167",167,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted","Present Below Quantification Limit","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","B","Suspect","B - Detection in blank, Analyte found in sample and associated blank",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916690190","NTHRNUTE-DDC:202109141209:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","40.2158400000",40.21584,"-109.7838900000",-109.78389,"OK","14060003","NTHRNUTE-DDC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:30",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2158400000","-109.7838900000","Final",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202109141209%3ASR/results/916690190/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2050","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_NA","2021-09-14","12:09:00","MST","2021-09-14 19:09:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-916690192","NTHRNUTE-DDC:202109141209:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","40.2158400000",40.21584,"-109.7838900000",-109.78389,"OK","14060003","NTHRNUTE-DDC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2021-10-26T12:44:30",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2158400000","-109.7838900000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2691","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","10:28:00","MST","2021-04-28 17:28:00",NA,"3.7",3700,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240414","UTAHDWQ_WQX-CUWJP210428-4998400-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4998400-0428-4-C/results/930240414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2692","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","10:47:00","MST","2021-04-28 17:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240428","UTAHDWQ_WQX-CUWJP210428-4998140-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","043","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"40.6099500000",40.60995,"-111.3051800000",-111.30518,"OK","16020203","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6099500000","-111.3051800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4998140-0428-4-C/results/930240428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5966","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","10:57:00","MST","2021-04-28 17:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240440","UTAHDWQ_WQX-CUWJP210428-4998130-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4998130-0428-4-C/results/930240440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2694","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","11:18:00","MST","2021-04-28 18:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240452","UTAHDWQ_WQX-CUWJP210428-4997330-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4997330-0428-4-C/results/930240452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2695","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","11:37:00","MST","2021-04-28 18:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240464","UTAHDWQ_WQX-CUWJP210428-4997675-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4997675-0428-4-C/results/930240464/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2696","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","11:43:00","MST","2021-04-28 18:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240495","UTAHDWQ_WQX-CUWJP210428-4997670-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4997670-0428-4-C/results/930240495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2697","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","11:57:00","MST","2021-04-28 18:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240526","UTAHDWQ_WQX-CUWJP210428-4997300-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4997300-0428-4-C/results/930240526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2698","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","12:07:00","MST","2021-04-28 19:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240538","UTAHDWQ_WQX-CUWJP210428-5910302-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5910302-0428-4-C/results/930240538/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2699","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","12:15:00","MST","2021-04-28 19:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240550","UTAHDWQ_WQX-CUWJP210428-5910273-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5910273-0428-4-C/results/930240550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2700","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","12:27:00","MST","2021-04-28 19:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240562","UTAHDWQ_WQX-CUWJP210428-4997250-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4997250-0428-4-C/results/930240562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2701","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","12:43:00","MST","2021-04-28 19:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240574","UTAHDWQ_WQX-CUWJP210428-5910250-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5910250-0428-4-C/results/930240574/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2702","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","13:25:00","MST","2021-04-28 20:25:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240586","UTAHDWQ_WQX-CUWJP210428-5910160-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5910160-0428-4-C/results/930240586/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2703","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","13:41:00","MST","2021-04-28 20:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240598","UTAHDWQ_WQX-CUWJP210428-5913630-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"40.4841200000",40.48412,"-111.4651800000",-111.46518,"OK","16020203","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4841200000","-111.4651800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5913630-0428-4-C/results/930240598/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2704","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","14:01:00","MST","2021-04-28 21:01:00",NA,"2.2",2200,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240610","UTAHDWQ_WQX-CUWJP210428-5910020-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"40.4613500000",40.46135,"-111.4715700000",-111.47157,"OK","16020203","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4613500000","-111.4715700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5910020-0428-4-C/results/930240610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2705","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","14:14:00","MST","2021-04-28 21:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240622","UTAHDWQ_WQX-CUWJP210428-5913460-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5913460-0428-4-C/results/930240622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2706","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","14:39:00","MST","2021-04-28 21:39:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240634","UTAHDWQ_WQX-CUWJP210428-4996870-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996870-0428-4-C/results/930240634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2707","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","14:41:00","MST","2021-04-28 21:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240646","UTAHDWQ_WQX-CUWJP210428-4996890-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996890-0428-4-C/results/930240646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2708","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","14:42:00","MST","2021-04-28 21:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240658","UTAHDWQ_WQX-CUWJP210428-5913210-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5913210-0428-4-C/results/930240658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2709","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","14:54:00","MST","2021-04-28 21:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240670","UTAHDWQ_WQX-CUWJP210428-4996850-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996850-0428-4-C/results/930240670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2710","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","15:05:00","MST","2021-04-28 22:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240682","UTAHDWQ_WQX-CUWJP210428-4996830-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996830-0428-4-C/results/930240682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2711","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","15:14:00","MST","2021-04-28 22:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240694","UTAHDWQ_WQX-CUWJP210428-4996810-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996810-0428-4-C/results/930240694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2712","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","15:26:00","MST","2021-04-28 22:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240706","UTAHDWQ_WQX-CUWJP210428-4996780-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996780-0428-4-C/results/930240706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2713","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-30","09:26:00","MST","2021-04-30 16:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240718","UTAHDWQ_WQX-CUWDF210430-4995600-0430-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210430-4995600-0430-4-C/results/930240718/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2714","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-30","10:41:00","MST","2021-04-30 17:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240805","UTAHDWQ_WQX-CUWDF210430-4995730-0430-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210430-4995730-0430-4-C/results/930240805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2715","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-30","10:57:00","MST","2021-04-30 17:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240836","UTAHDWQ_WQX-CUWDF210430-4995710-0430-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210430-4995710-0430-4-C/results/930240836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2716","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","09:09:00","MST","2021-05-06 16:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240892","UTAHDWQ_WQX-CUWSR210506-4936050-0506-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-2-C/results/930240892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2717","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","09:10:00","MST","2021-05-06 16:10:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","3",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240942","UTAHDWQ_WQX-CUWSR210506-4936050-0506-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-22-C/results/930240942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2718","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","09:12:00","MST","2021-05-06 16:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930240992","UTAHDWQ_WQX-CUWSR210506-4936050-0506-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-23-C/results/930240992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2719","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","09:14:00","MST","2021-05-06 16:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241042","UTAHDWQ_WQX-CUWSR210506-4936050-0506-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-24-C/results/930241042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2720","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","09:17:00","MST","2021-05-06 16:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","20",20,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241092","UTAHDWQ_WQX-CUWSR210506-4936050-0506-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-26-C/results/930241092/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2721","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","09:18:00","MST","2021-05-06 16:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","26",26,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241142","UTAHDWQ_WQX-CUWSR210506-4936050-0506-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-27-C/results/930241142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5995","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","09:23:00","MST","2021-05-06 16:23:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","33.8",33.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241192","UTAHDWQ_WQX-CUWSR210506-4936050-0506-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-29-C/results/930241192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2723","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","12:29:00","MST","2021-05-06 19:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241242","UTAHDWQ_WQX-CUWRF210506-5937650-0506-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210506-5937650-0506-2-C/results/930241242/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2724","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","12:32:00","MST","2021-05-06 19:32:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241292","UTAHDWQ_WQX-CUWRF210506-5937650-0506-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210506-5937650-0506-23-C/results/930241292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5998","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","12:33:00","MST","2021-05-06 19:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241342","UTAHDWQ_WQX-CUWRF210506-5937650-0506-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210506-5937650-0506-27-C/results/930241342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2726","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","12:42:00","MST","2021-05-06 19:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","21.5",21.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241392","UTAHDWQ_WQX-CUWRF210506-5937650-0506-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210506-5937650-0506-29-C/results/930241392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2727","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-11","10:24:00","MST","2021-05-11 17:24:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241442","UTAHDWQ_WQX-CUWSTR210511-4936420-0511-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210511-4936420-0511-2-C/results/930241442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2728","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-11","10:27:00","MST","2021-05-11 17:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241454","UTAHDWQ_WQX-CUWSTR210511-4936420-0511-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210511-4936420-0511-25-C/results/930241454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2729","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-11","10:30:00","MST","2021-05-11 17:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","20",20,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241465","UTAHDWQ_WQX-CUWSTR210511-4936420-0511-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210511-4936420-0511-29-C/results/930241465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2730","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-20","11:06:00","MST","2021-05-20 18:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241476","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-2-C/results/930241476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2731","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-20","11:09:00","MST","2021-05-20 18:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241488","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-23-C/results/930241488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2732","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-20","11:11:00","MST","2021-05-20 18:11:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241500","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-27-C/results/930241500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2733","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-20","11:14:00","MST","2021-05-20 18:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","27",27,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241512","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-28-C/results/930241512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2734","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-20","11:22:00","MST","2021-05-20 18:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","35.3",35.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241524","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-29-C/results/930241524/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2735","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-20","11:06:00","MST","2021-05-20 18:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241536","UTAHDWQ_WQX-CUWJPRESDC210520-5913490-0520-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913490-0520-2-C/results/930241536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2736","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","10:06:00","MST","2021-05-25 17:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241567","UTAHDWQ_WQX-CUWJP210525-4998400-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4998400-0525-4-C/results/930241567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2737","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","10:27:00","MST","2021-05-25 17:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241581","UTAHDWQ_WQX-CUWJP210525-4998140-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","043","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"40.6099500000",40.60995,"-111.3051800000",-111.30518,"OK","16020203","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6099500000","-111.3051800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4998140-0525-4-C/results/930241581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2738","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","10:35:00","MST","2021-05-25 17:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241593","UTAHDWQ_WQX-CUWJP210525-4998130-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4998130-0525-4-C/results/930241593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2739","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","10:56:00","MST","2021-05-25 17:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241624","UTAHDWQ_WQX-CUWJP210525-4997330-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4997330-0525-4-C/results/930241624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2740","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","11:19:00","MST","2021-05-25 18:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241655","UTAHDWQ_WQX-CUWJP210525-4997675-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4997675-0525-4-C/results/930241655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2741","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","11:26:00","MST","2021-05-25 18:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241686","UTAHDWQ_WQX-CUWJP210525-4997670-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4997670-0525-4-C/results/930241686/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2742","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","11:41:00","MST","2021-05-25 18:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241717","UTAHDWQ_WQX-CUWJP210525-4997300-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4997300-0525-4-C/results/930241717/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2743","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","11:51:00","MST","2021-05-25 18:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241729","UTAHDWQ_WQX-CUWJP210525-5910302-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5910302-0525-4-C/results/930241729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2744","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","11:59:00","MST","2021-05-25 18:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241741","UTAHDWQ_WQX-CUWJP210525-5910273-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5910273-0525-4-C/results/930241741/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2745","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","12:12:00","MST","2021-05-25 19:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241753","UTAHDWQ_WQX-CUWJP210525-4997250-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4997250-0525-4-C/results/930241753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2746","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","12:20:00","MST","2021-05-25 19:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241765","UTAHDWQ_WQX-CUWJP210525-5910250-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5910250-0525-4-C/results/930241765/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2747","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","13:05:00","MST","2021-05-25 20:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241777","UTAHDWQ_WQX-CUWJP210525-5910160-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5910160-0525-4-C/results/930241777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2748","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","13:19:00","MST","2021-05-25 20:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241792","UTAHDWQ_WQX-CUWJP210525-5913630-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"40.4841200000",40.48412,"-111.4651800000",-111.46518,"OK","16020203","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4841200000","-111.4651800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5913630-0525-4-C/results/930241792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2749","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","13:37:00","MST","2021-05-25 20:37:00",NA,"1.4",1400,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241823","UTAHDWQ_WQX-CUWJP210525-5910020-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"40.4613500000",40.46135,"-111.4715700000",-111.47157,"OK","16020203","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4613500000","-111.4715700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5910020-0525-4-C/results/930241823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2750","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","13:49:00","MST","2021-05-25 20:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241835","UTAHDWQ_WQX-CUWJP210525-5913460-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5913460-0525-4-C/results/930241835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2751","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","14:13:00","MST","2021-05-25 21:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241847","UTAHDWQ_WQX-CUWJP210525-4996870-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996870-0525-4-C/results/930241847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2752","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","14:16:00","MST","2021-05-25 21:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241859","UTAHDWQ_WQX-CUWJP210525-5913210-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5913210-0525-4-C/results/930241859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2753","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","14:17:00","MST","2021-05-25 21:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241890","UTAHDWQ_WQX-CUWJP210525-4996890-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996890-0525-4-C/results/930241890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2754","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","14:30:00","MST","2021-05-25 21:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241921","UTAHDWQ_WQX-CUWJP210525-4996850-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996850-0525-4-C/results/930241921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2755","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","14:39:00","MST","2021-05-25 21:39:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241933","UTAHDWQ_WQX-CUWJP210525-4996830-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996830-0525-4-C/results/930241933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2756","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","14:49:00","MST","2021-05-25 21:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241945","UTAHDWQ_WQX-CUWJP210525-4996810-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996810-0525-4-C/results/930241945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2757","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","15:03:00","MST","2021-05-25 22:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241976","UTAHDWQ_WQX-CUWJP210525-4996780-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996780-0525-4-C/results/930241976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2758","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:02:00","MST","2021-05-26 17:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930241988","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-2-C/results/930241988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2759","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:03:00","MST","2021-05-26 17:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242000","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-22-C/results/930242000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6033","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:05:00","MST","2021-05-26 17:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242012","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-23-C/results/930242012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2761","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:09:00","MST","2021-05-26 17:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242024","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-24-C/results/930242024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2762","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:13:00","MST","2021-05-26 17:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242036","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-26-C/results/930242036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6036","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:14:00","MST","2021-05-26 17:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","24",24,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242048","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-27-C/results/930242048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2764","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:16:00","MST","2021-05-26 17:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","31",31,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242060","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-28-C/results/930242060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2765","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:26:00","MST","2021-05-26 17:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","60",60,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242072","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-29-C/results/930242072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2766","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:32:00","MST","2021-05-26 17:32:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242103","UTAHDWQ_WQX-CUWJPRESJR210526-5914040-0526-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914040-0526-2-C/results/930242103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2767","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","11:07:00","MST","2021-05-26 18:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.7",34.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242115","UTAHDWQ_WQX-CUWJPRESJR210526-5914040-0526-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914040-0526-29-C/results/930242115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2768","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","11:24:00","MST","2021-05-26 18:24:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242126","UTAHDWQ_WQX-CUWJPRESJR210526-5914030-0526-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914030-0526-2-C/results/930242126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2769","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","11:33:00","MST","2021-05-26 18:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","37",37,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242138","UTAHDWQ_WQX-CUWJPRESJR210526-5914030-0526-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914030-0526-29-C/results/930242138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2770","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","09:51:00","MST","2021-05-27 16:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242149","UTAHDWQ_WQX-CUWDF210527-4995600-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210527-4995600-0527-4-C/results/930242149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2771","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","10:57:00","MST","2021-05-27 17:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242200","UTAHDWQ_WQX-CUWDF210527-4995730-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210527-4995730-0527-4-C/results/930242200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2772","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","10:50:00","MST","2021-05-27 17:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242217","UTAHDWQ_WQX-CUWDF210527-4995710-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210527-4995710-0527-4-C/results/930242217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2773","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","09:45:00","MST","2021-06-02 16:45:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242245","UTAHDWQ_WQX-CUWSR210602-4936050-0602-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-2-C/results/930242245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2774","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","09:46:00","MST","2021-06-02 16:46:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242263","UTAHDWQ_WQX-CUWSR210602-4936050-0602-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-22-C/results/930242263/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2775","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","09:47:00","MST","2021-06-02 16:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242281","UTAHDWQ_WQX-CUWSR210602-4936050-0602-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-23-C/results/930242281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2776","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","09:50:00","MST","2021-06-02 16:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242299","UTAHDWQ_WQX-CUWSR210602-4936050-0602-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-24-C/results/930242299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2777","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","09:58:00","MST","2021-06-02 16:58:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242317","UTAHDWQ_WQX-CUWSR210602-4936050-0602-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-26-C/results/930242317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2778","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","10:02:00","MST","2021-06-02 17:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","25",25,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242335","UTAHDWQ_WQX-CUWSR210602-4936050-0602-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-27-C/results/930242335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2779","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","10:07:00","MST","2021-06-02 17:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242353","UTAHDWQ_WQX-CUWSR210602-4936050-0602-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-29-C/results/930242353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2780","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","12:29:00","MST","2021-06-02 19:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242371","UTAHDWQ_WQX-CUWRF210602-5937650-0602-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210602-5937650-0602-2-C/results/930242371/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2781","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","12:32:00","MST","2021-06-02 19:32:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242389","UTAHDWQ_WQX-CUWRF210602-5937650-0602-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210602-5937650-0602-23-C/results/930242389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2782","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","12:34:00","MST","2021-06-02 19:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242407","UTAHDWQ_WQX-CUWRF210602-5937650-0602-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210602-5937650-0602-27-C/results/930242407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2783","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","12:44:00","MST","2021-06-02 19:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","23.8",23.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242425","UTAHDWQ_WQX-CUWRF210602-5937650-0602-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210602-5937650-0602-29-C/results/930242425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2784","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","10:35:00","MST","2021-06-09 17:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242443","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210609-4936420-0609-2-C/results/930242443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2785","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","10:37:00","MST","2021-06-09 17:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","3",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242455","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210609-4936420-0609-23-C/results/930242455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2786","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","10:38:00","MST","2021-06-09 17:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242466","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210609-4936420-0609-27-C/results/930242466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2787","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","10:47:00","MST","2021-06-09 17:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","19.5",19.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242477","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210609-4936420-0609-29-C/results/930242477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2788","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:10:00","MST","2021-06-15 17:10:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242488","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-2-C/results/930242488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2789","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:11:00","MST","2021-06-15 17:11:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242500","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-22-C/results/930242500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2790","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:14:00","MST","2021-06-15 17:14:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242512","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-23-C/results/930242512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2791","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:17:00","MST","2021-06-15 17:17:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242524","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-24-C/results/930242524/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2792","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:22:00","MST","2021-06-15 17:22:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","20",20,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242536","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-26-C/results/930242536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2793","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:26:00","MST","2021-06-15 17:26:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","24",24,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242548","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-27-C/results/930242548/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2794","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:29:00","MST","2021-06-15 17:29:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","31",31,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242560","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-28-C/results/930242560/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2795","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:36:00","MST","2021-06-15 17:36:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","68",68,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242572","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-29-C/results/930242572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2796","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:53:00","MST","2021-06-15 17:53:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242584","UTAHDWQ_WQX-CUWJPRESJR210615-5914040-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914040-0615-2-C/results/930242584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2797","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","11:03:00","MST","2021-06-15 18:03:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","35",35,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242596","UTAHDWQ_WQX-CUWJPRESJR210615-5914040-0615-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914040-0615-29-C/results/930242596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2798","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","11:20:00","MST","2021-06-15 18:20:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242607","UTAHDWQ_WQX-CUWJPRESJR210615-5914030-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914030-0615-2-C/results/930242607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2799","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","11:36:00","MST","2021-06-15 18:36:00",NA,"ND",1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Detection condition is missing and required for censored data ID.",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","36",36,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242619","UTAHDWQ_WQX-CUWJPRESJR210615-5914030-0615-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914030-0615-29-C/results/930242619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2800","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","09:33:00","MST","2021-06-16 16:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242630","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-2-C/results/930242630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2801","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","09:34:00","MST","2021-06-16 16:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242642","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-23-C/results/930242642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2802","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","09:44:00","MST","2021-06-16 16:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242654","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-27-C/results/930242654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2803","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","09:49:00","MST","2021-06-16 16:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","26",26,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242666","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-28-C/results/930242666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2804","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","09:52:00","MST","2021-06-16 16:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","33.9",33.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242678","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-29-C/results/930242678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2805","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","10:17:00","MST","2021-06-16 17:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242690","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-2-C/results/930242690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2806","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","10:19:00","MST","2021-06-16 17:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242702","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-23-C/results/930242702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2807","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","10:23:00","MST","2021-06-16 17:23:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242713","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-27-C/results/930242713/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2808","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","10:31:00","MST","2021-06-16 17:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","20.7",20.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242724","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-29-C/results/930242724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2809","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","10:48:00","MST","2021-06-16 17:48:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242735","UTAHDWQ_WQX-CUWJPRESDC210616-5913240-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913240-0616-2-C/results/930242735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2810","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","10:55:00","MST","2021-06-16 17:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242747","UTAHDWQ_WQX-CUWJPRESDC210616-5913240-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913240-0616-29-C/results/930242747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2811","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","09:32:00","MST","2021-06-16 16:32:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242758","UTAHDWQ_WQX-CUWJPRESDC210616-5913490-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913490-0616-2-C/results/930242758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2812","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","10:07:00","MST","2021-06-23 17:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242770","UTAHDWQ_WQX-CUWJP210623-4998400-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4998400-0623-4-C/results/930242770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2813","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","10:28:00","MST","2021-06-23 17:28:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242784","UTAHDWQ_WQX-CUWJP210623-4998130-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4998130-0623-4-C/results/930242784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2814","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","10:50:00","MST","2021-06-23 17:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242796","UTAHDWQ_WQX-CUWJP210623-4997330-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4997330-0623-4-C/results/930242796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2815","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","11:17:00","MST","2021-06-23 18:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242808","UTAHDWQ_WQX-CUWJP210623-4997675-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4997675-0623-4-C/results/930242808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2816","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","11:24:00","MST","2021-06-23 18:24:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242839","UTAHDWQ_WQX-CUWJP210623-4997670-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4997670-0623-4-C/results/930242839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2817","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","11:40:00","MST","2021-06-23 18:40:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242870","UTAHDWQ_WQX-CUWJP210623-4997300-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4997300-0623-4-C/results/930242870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2818","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","11:54:00","MST","2021-06-23 18:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242882","UTAHDWQ_WQX-CUWJP210623-5910273-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-5910273-0623-4-C/results/930242882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2819","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","12:09:00","MST","2021-06-23 19:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242894","UTAHDWQ_WQX-CUWJP210623-4997250-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4997250-0623-4-C/results/930242894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2820","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","12:17:00","MST","2021-06-23 19:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242906","UTAHDWQ_WQX-CUWJP210623-5910250-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-5910250-0623-4-C/results/930242906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2821","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","13:01:00","MST","2021-06-23 20:01:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242918","UTAHDWQ_WQX-CUWJP210623-5910160-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-5910160-0623-4-C/results/930242918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2822","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","13:16:00","MST","2021-06-23 20:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242933","UTAHDWQ_WQX-CUWJP210623-5913630-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"40.4841200000",40.48412,"-111.4651800000",-111.46518,"OK","16020203","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4841200000","-111.4651800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-5913630-0623-4-C/results/930242933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2823","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","14:03:00","MST","2021-06-23 21:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242945","UTAHDWQ_WQX-CUWJP210623-4996870-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996870-0623-4-C/results/930242945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2824","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","14:07:00","MST","2021-06-23 21:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242957","UTAHDWQ_WQX-CUWJP210623-4996890-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996890-0623-4-C/results/930242957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2825","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","14:08:00","MST","2021-06-23 21:08:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242969","UTAHDWQ_WQX-CUWJP210623-5913210-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-5913210-0623-4-C/results/930242969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2826","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","14:21:00","MST","2021-06-23 21:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242981","UTAHDWQ_WQX-CUWJP210623-4996850-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996850-0623-4-C/results/930242981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2827","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","14:33:00","MST","2021-06-23 21:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930242993","UTAHDWQ_WQX-CUWJP210623-4996830-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996830-0623-4-C/results/930242993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2828","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","14:43:00","MST","2021-06-23 21:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243005","UTAHDWQ_WQX-CUWJP210623-4996810-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996810-0623-4-C/results/930243005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2829","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","14:57:00","MST","2021-06-23 21:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243017","UTAHDWQ_WQX-CUWJP210623-4996780-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996780-0623-4-C/results/930243017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2830","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","09:53:00","MST","2021-06-29 16:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243029","UTAHDWQ_WQX-CUWDF210629-4995600-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210629-4995600-0629-4-C/results/930243029/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2831","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","10:41:00","MST","2021-06-29 17:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243079","UTAHDWQ_WQX-CUWDF210629-4995730-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210629-4995730-0629-4-C/results/930243079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6105","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","10:37:00","MST","2021-06-29 17:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243096","UTAHDWQ_WQX-CUWDF210629-4995710-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210629-4995710-0629-4-C/results/930243096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2833","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","09:18:00","MST","2021-07-13 16:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243135","UTAHDWQ_WQX-CUWSR210713-4936050-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-2-C/results/930243135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2834","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","09:49:00","MST","2021-07-13 16:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","3",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243153","UTAHDWQ_WQX-CUWSR210713-4936050-0713-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-23-C/results/930243153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6108","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","09:56:00","MST","2021-07-13 16:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243171","UTAHDWQ_WQX-CUWSR210713-4936050-0713-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-24-C/results/930243171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2836","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:00:00","MST","2021-07-13 17:00:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","16",16,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243189","UTAHDWQ_WQX-CUWSR210713-4936050-0713-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-26-C/results/930243189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2837","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:02:00","MST","2021-07-13 17:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243207","UTAHDWQ_WQX-CUWSR210713-4936050-0713-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-27-C/results/930243207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2838","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:05:00","MST","2021-07-13 17:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","27.8",27.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243225","UTAHDWQ_WQX-CUWSR210713-4936050-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-29-C/results/930243225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2839","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","12:35:00","MST","2021-07-13 19:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243243","UTAHDWQ_WQX-CUWRF210713-5937650-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210713-5937650-0713-2-C/results/930243243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6113","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","12:37:00","MST","2021-07-13 19:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243261","UTAHDWQ_WQX-CUWRF210713-5937650-0713-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210713-5937650-0713-23-C/results/930243261/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2841","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","12:43:00","MST","2021-07-13 19:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243279","UTAHDWQ_WQX-CUWRF210713-5937650-0713-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210713-5937650-0713-27-C/results/930243279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2842","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","12:52:00","MST","2021-07-13 19:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","22.4",22.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243297","UTAHDWQ_WQX-CUWRF210713-5937650-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210713-5937650-0713-29-C/results/930243297/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6116","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","11:57:00","MST","2021-07-14 18:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243315","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210714-4936420-0714-2-C/results/930243315/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2844","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","12:00:00","MST","2021-07-14 19:00:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243327","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210714-4936420-0714-23-C/results/930243327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2845","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","12:07:00","MST","2021-07-14 19:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","16",16,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243338","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210714-4936420-0714-27-C/results/930243338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2846","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","12:09:00","MST","2021-07-14 19:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243349","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210714-4936420-0714-29-C/results/930243349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2847","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","09:52:00","MST","2021-07-21 16:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243360","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-2-C/results/930243360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2848","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","09:54:00","MST","2021-07-21 16:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243372","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-23-C/results/930243372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2849","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:02:00","MST","2021-07-21 17:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243384","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-24-C/results/930243384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2850","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:06:00","MST","2021-07-21 17:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","17",17,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243396","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-26-C/results/930243396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2851","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:08:00","MST","2021-07-21 17:08:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243408","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-27-C/results/930243408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2852","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:12:00","MST","2021-07-21 17:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","28",28,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243420","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-28-C/results/930243420/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2853","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:22:00","MST","2021-07-21 17:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","66.5",66.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243432","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-29-C/results/930243432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2854","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:34:00","MST","2021-07-21 17:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243444","UTAHDWQ_WQX-CUWJPRESJR210721-5914040-0721-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914040-0721-2-C/results/930243444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2855","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","11:02:00","MST","2021-07-21 18:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.5",32.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243456","UTAHDWQ_WQX-CUWJPRESJR210721-5914040-0721-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914040-0721-29-C/results/930243456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2856","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","11:21:00","MST","2021-07-21 18:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243467","UTAHDWQ_WQX-CUWJPRESJR210721-5914030-0721-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914030-0721-2-C/results/930243467/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2857","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","11:34:00","MST","2021-07-21 18:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34",34,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243479","UTAHDWQ_WQX-CUWJPRESJR210721-5914030-0721-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914030-0721-29-C/results/930243479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2858","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","09:36:00","MST","2021-07-22 16:36:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243490","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-2-C/results/930243490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2859","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","09:38:00","MST","2021-07-22 16:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243502","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-23-C/results/930243502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2860","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","09:50:00","MST","2021-07-22 16:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","16",16,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243514","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-27-C/results/930243514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2861","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","09:54:00","MST","2021-07-22 16:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","23",23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243526","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-28-C/results/930243526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2862","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","09:50:00","MST","2021-07-22 16:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","31",31,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243538","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-29-C/results/930243538/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2863","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","10:21:00","MST","2021-07-22 17:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243550","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-2-C/results/930243550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2864","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","10:22:00","MST","2021-07-22 17:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243562","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-23-C/results/930243562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2865","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","10:28:00","MST","2021-07-22 17:28:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243573","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-27-C/results/930243573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2866","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","10:37:00","MST","2021-07-22 17:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","17.6",17.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243584","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-29-C/results/930243584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2867","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","10:50:00","MST","2021-07-22 17:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243595","UTAHDWQ_WQX-CUWJPRESDC210722-5913240-0722-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913240-0722-2-C/results/930243595/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6141","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","10:53:00","MST","2021-07-22 17:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243607","UTAHDWQ_WQX-CUWJPRESDC210722-5913240-0722-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913240-0722-29-C/results/930243607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2869","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-22","09:36:00","MST","2021-07-22 16:36:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243618","UTAHDWQ_WQX-CUWJPRESDC210722-5913490-0722-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913490-0722-2-C/results/930243618/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2870","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","10:14:00","MST","2021-07-27 17:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243630","UTAHDWQ_WQX-CUWJP210727-4998400-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4998400-0727-4-C/results/930243630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6144","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","10:41:00","MST","2021-07-27 17:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243661","UTAHDWQ_WQX-CUWJP210727-4998130-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4998130-0727-4-C/results/930243661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2872","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","11:10:00","MST","2021-07-27 18:10:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243673","UTAHDWQ_WQX-CUWJP210727-4997330-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4997330-0727-4-C/results/930243673/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2873","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","11:30:00","MST","2021-07-27 18:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243685","UTAHDWQ_WQX-CUWJP210727-4997675-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4997675-0727-4-C/results/930243685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2874","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","11:39:00","MST","2021-07-27 18:39:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243716","UTAHDWQ_WQX-CUWJP210727-4997670-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4997670-0727-4-C/results/930243716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2875","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","11:55:00","MST","2021-07-27 18:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243747","UTAHDWQ_WQX-CUWJP210727-4997300-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4997300-0727-4-C/results/930243747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2876","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","12:05:00","MST","2021-07-27 19:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243759","UTAHDWQ_WQX-CUWJP210727-5910302-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-5910302-0727-4-C/results/930243759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2877","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","12:15:00","MST","2021-07-27 19:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243771","UTAHDWQ_WQX-CUWJP210727-5910273-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-5910273-0727-4-C/results/930243771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2878","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","12:27:00","MST","2021-07-27 19:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243783","UTAHDWQ_WQX-CUWJP210727-5910250-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-5910250-0727-4-C/results/930243783/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2879","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","13:15:00","MST","2021-07-27 20:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243795","UTAHDWQ_WQX-CUWJP210727-5910160-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-5910160-0727-4-C/results/930243795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2880","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","13:57:00","MST","2021-07-27 20:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243807","UTAHDWQ_WQX-CUWJP210727-4996870-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4996870-0727-4-C/results/930243807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2881","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","14:00:00","MST","2021-07-27 21:00:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243819","UTAHDWQ_WQX-CUWJP210727-5913210-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-5913210-0727-4-C/results/930243819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2882","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","14:01:00","MST","2021-07-27 21:01:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243831","UTAHDWQ_WQX-CUWJP210727-4996890-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4996890-0727-4-C/results/930243831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2883","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","14:14:00","MST","2021-07-27 21:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243843","UTAHDWQ_WQX-CUWJP210727-4996850-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4996850-0727-4-C/results/930243843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2884","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","14:25:00","MST","2021-07-27 21:25:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243855","UTAHDWQ_WQX-CUWJP210727-4996810-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4996810-0727-4-C/results/930243855/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2885","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","14:38:00","MST","2021-07-27 21:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243867","UTAHDWQ_WQX-CUWJP210727-4996780-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4996780-0727-4-C/results/930243867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2886","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-29","09:44:00","MST","2021-07-29 16:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243879","UTAHDWQ_WQX-CUWDF210729-4995600-0729-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210729-4995600-0729-4-C/results/930243879/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2887","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-29","10:44:00","MST","2021-07-29 17:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243927","UTAHDWQ_WQX-CUWDF210729-4995730-0729-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210729-4995730-0729-4-C/results/930243927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2888","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-29","10:40:00","MST","2021-07-29 17:40:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243944","UTAHDWQ_WQX-CUWDF210729-4995710-0729-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210729-4995710-0729-4-C/results/930243944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2889","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-05","09:57:00","MST","2021-08-05 16:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930243983","UTAHDWQ_WQX-CUWSR210805-4936050-0805-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210805-4936050-0805-2-C/results/930243983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2890","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-05","09:58:00","MST","2021-08-05 16:58:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244001","UTAHDWQ_WQX-CUWSR210805-4936050-0805-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210805-4936050-0805-23-C/results/930244001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2891","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-05","10:00:00","MST","2021-08-05 17:00:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244019","UTAHDWQ_WQX-CUWSR210805-4936050-0805-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210805-4936050-0805-24-C/results/930244019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2892","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-05","10:07:00","MST","2021-08-05 17:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244037","UTAHDWQ_WQX-CUWSR210805-4936050-0805-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210805-4936050-0805-26-C/results/930244037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2893","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","15:06:00","MST","2021-08-24 22:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244065","UTAHDWQ_WQX-CUWJP210824-4996780-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996780-0824-4-C/results/930244065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6167","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","14:52:00","MST","2021-08-24 21:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244096","UTAHDWQ_WQX-CUWJP210824-4996810-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996810-0824-4-C/results/930244096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2895","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","14:41:00","MST","2021-08-24 21:41:00",NA,"3.9",3900,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244108","UTAHDWQ_WQX-CUWJP210824-4996830-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996830-0824-4-C/results/930244108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2896","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","14:30:00","MST","2021-08-24 21:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244120","UTAHDWQ_WQX-CUWJP210824-4996850-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996850-0824-4-C/results/930244120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6170","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","14:18:00","MST","2021-08-24 21:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244151","UTAHDWQ_WQX-CUWJP210824-4996890-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996890-0824-4-C/results/930244151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2898","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","14:17:00","MST","2021-08-24 21:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244182","UTAHDWQ_WQX-CUWJP210824-5913210-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-5913210-0824-4-C/results/930244182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2899","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","14:13:00","MST","2021-08-24 21:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244194","UTAHDWQ_WQX-CUWJP210824-4996870-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996870-0824-4-C/results/930244194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2900","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","13:21:00","MST","2021-08-24 20:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244209","UTAHDWQ_WQX-CUWJP210824-5910160-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-5910160-0824-4-C/results/930244209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2901","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","12:38:00","MST","2021-08-24 19:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244221","UTAHDWQ_WQX-CUWJP210824-5910250-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-5910250-0824-4-C/results/930244221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2902","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","12:29:00","MST","2021-08-24 19:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244233","UTAHDWQ_WQX-CUWJP210824-4997250-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4997250-0824-4-C/results/930244233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2903","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","12:22:00","MST","2021-08-24 19:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244245","UTAHDWQ_WQX-CUWJP210824-5910273-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-5910273-0824-4-C/results/930244245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2904","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","12:04:00","MST","2021-08-24 19:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244257","UTAHDWQ_WQX-CUWJP210824-5910302-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-5910302-0824-4-C/results/930244257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2905","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","11:54:00","MST","2021-08-24 18:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244269","UTAHDWQ_WQX-CUWJP210824-4997300-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4997300-0824-4-C/results/930244269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2906","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","11:38:00","MST","2021-08-24 18:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244300","UTAHDWQ_WQX-CUWJP210824-4997670-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4997670-0824-4-C/results/930244300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2907","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","11:31:00","MST","2021-08-24 18:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244331","UTAHDWQ_WQX-CUWJP210824-4997675-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4997675-0824-4-C/results/930244331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2908","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","11:05:00","MST","2021-08-24 18:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244362","UTAHDWQ_WQX-CUWJP210824-4997330-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4997330-0824-4-C/results/930244362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2909","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","10:41:00","MST","2021-08-24 17:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244393","UTAHDWQ_WQX-CUWJP210824-4998130-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4998130-0824-4-C/results/930244393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2910","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","10:37:00","MST","2021-08-24 17:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244407","UTAHDWQ_WQX-CUWJP210824-4998400-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4998400-0824-4-C/results/930244407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2911","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","09:55:00","MST","2021-08-26 16:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244409","UTAHDWQ_WQX-CUWDF210826-4995600-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210826-4995600-0826-4-C/results/930244409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2912","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","10:57:00","MST","2021-08-26 17:57:00",NA,"1.3",1300,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244458","UTAHDWQ_WQX-CUWDF210826-4995730-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210826-4995730-0826-4-C/results/930244458/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2913","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","10:53:00","MST","2021-08-26 17:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244475","UTAHDWQ_WQX-CUWDF210826-4995710-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210826-4995710-0826-4-C/results/930244475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2914","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","10:15:00","MST","2021-09-09 17:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244514","UTAHDWQ_WQX-CUWSR210909-4936050-0909-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-2-C/results/930244514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2915","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","10:15:00","MST","2021-09-09 17:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244545","UTAHDWQ_WQX-CUWSR210909-4936050-0909-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-23-C/results/930244545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2916","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","10:20:00","MST","2021-09-09 17:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244576","UTAHDWQ_WQX-CUWSR210909-4936050-0909-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-24-C/results/930244576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2917","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","10:25:00","MST","2021-09-09 17:25:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244607","UTAHDWQ_WQX-CUWSR210909-4936050-0909-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-26-C/results/930244607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2918","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","10:27:00","MST","2021-09-09 17:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244638","UTAHDWQ_WQX-CUWSR210909-4936050-0909-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-27-C/results/930244638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2919","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","10:34:00","MST","2021-09-09 17:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","25.3",25.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244669","UTAHDWQ_WQX-CUWSR210909-4936050-0909-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-29-C/results/930244669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2920","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","13:43:00","MST","2021-09-09 20:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244700","UTAHDWQ_WQX-CUWRF210909-5937650-0909-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210909-5937650-0909-2-C/results/930244700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2921","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","13:45:00","MST","2021-09-09 20:45:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244731","UTAHDWQ_WQX-CUWRF210909-5937650-0909-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210909-5937650-0909-23-C/results/930244731/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2922","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","13:47:00","MST","2021-09-09 20:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","12",12,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244762","UTAHDWQ_WQX-CUWRF210909-5937650-0909-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210909-5937650-0909-27-C/results/930244762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2923","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","13:55:00","MST","2021-09-09 20:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","15.3",15.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244793","UTAHDWQ_WQX-CUWRF210909-5937650-0909-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210909-5937650-0909-29-C/results/930244793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2924","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","10:23:00","MST","2021-09-15 17:23:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244824","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210915-4936420-0915-2-C/results/930244824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2925","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","10:30:00","MST","2021-09-15 17:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244836","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210915-4936420-0915-23-C/results/930244836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2926","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","10:35:00","MST","2021-09-15 17:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244847","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210915-4936420-0915-27-C/results/930244847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2927","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","10:45:00","MST","2021-09-15 17:45:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","17.9",17.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244858","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210915-4936420-0915-29-C/results/930244858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2928","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:13:00","MST","2021-09-21 18:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244869","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-2-C/results/930244869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2929","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:16:00","MST","2021-09-21 18:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244881","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-24-C/results/930244881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2930","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:18:00","MST","2021-09-21 18:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244893","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-26-C/results/930244893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2931","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:27:00","MST","2021-09-21 18:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","16",16,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244905","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-27-C/results/930244905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2932","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:31:00","MST","2021-09-21 18:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244917","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-28-C/results/930244917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2933","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:37:00","MST","2021-09-21 18:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","56.5",56.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244929","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-29-C/results/930244929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2934","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","12:04:00","MST","2021-09-21 19:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244960","UTAHDWQ_WQX-CUWJPRESJR210921-5914040-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914040-0921-2-C/results/930244960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2935","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","12:15:00","MST","2021-09-21 19:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","27.5",27.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244972","UTAHDWQ_WQX-CUWJPRESJR210921-5914040-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914040-0921-29-C/results/930244972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2936","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","12:42:00","MST","2021-09-21 19:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244983","UTAHDWQ_WQX-CUWJPRESJR210921-5914030-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914030-0921-2-C/results/930244983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2937","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","12:52:00","MST","2021-09-21 19:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","28",28,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930244995","UTAHDWQ_WQX-CUWJPRESJR210921-5914030-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914030-0921-29-C/results/930244995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2938","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","09:52:00","MST","2021-09-23 16:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245006","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-2-C/results/930245006/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2939","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","09:57:00","MST","2021-09-23 16:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245018","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-25-C/results/930245018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2940","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","09:59:00","MST","2021-09-23 16:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","23",23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245030","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-28-C/results/930245030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2941","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","10:16:00","MST","2021-09-23 17:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30.5",30.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245042","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-29-C/results/930245042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2942","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","10:38:00","MST","2021-09-23 17:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245073","UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-2-C/results/930245073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2943","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","10:40:00","MST","2021-09-23 17:40:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245085","UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-25-C/results/930245085/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2944","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","10:46:00","MST","2021-09-23 17:46:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","17.5",17.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245096","UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-29-C/results/930245096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2945","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","11:09:00","MST","2021-09-23 18:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245107","UTAHDWQ_WQX-CUWJPRESDC210923-5913240-0923-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913240-0923-2-C/results/930245107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2946","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","11:10:00","MST","2021-09-23 18:10:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245119","UTAHDWQ_WQX-CUWJPRESDC210923-5913240-0923-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913240-0923-29-C/results/930245119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2947","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","09:49:00","MST","2021-09-23 16:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245130","UTAHDWQ_WQX-CUWJPRESDC210923-5913490-0923-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913490-0923-2-C/results/930245130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2948","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","09:13:00","MST","2021-09-28 16:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245142","UTAHDWQ_WQX-CUWJP210927-4998400-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4998400-0928-4-C/results/930245142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2949","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","09:34:00","MST","2021-09-28 16:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245173","UTAHDWQ_WQX-CUWJP210927-4998130-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4998130-0928-4-C/results/930245173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2950","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","09:56:00","MST","2021-09-28 16:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245185","UTAHDWQ_WQX-CUWJP210927-4997330-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4997330-0928-4-C/results/930245185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2951","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","10:14:00","MST","2021-09-28 17:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245197","UTAHDWQ_WQX-CUWJP210927-4997675-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4997675-0928-4-C/results/930245197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2952","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","10:22:00","MST","2021-09-28 17:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245228","UTAHDWQ_WQX-CUWJP210927-4997670-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4997670-0928-4-C/results/930245228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2953","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","10:38:00","MST","2021-09-28 17:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245259","UTAHDWQ_WQX-CUWJP210927-4997300-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4997300-0928-4-C/results/930245259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2954","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","10:47:00","MST","2021-09-28 17:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245271","UTAHDWQ_WQX-CUWJP210927-5910302-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-5910302-0928-4-C/results/930245271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2955","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","10:55:00","MST","2021-09-28 17:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245283","UTAHDWQ_WQX-CUWJP210927-5910273-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-5910273-0928-4-C/results/930245283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2956","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","11:07:00","MST","2021-09-28 18:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245295","UTAHDWQ_WQX-CUWJP210927-4997250-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4997250-0928-4-C/results/930245295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2957","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","11:15:00","MST","2021-09-28 18:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245307","UTAHDWQ_WQX-CUWJP210927-5910250-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-5910250-0928-4-C/results/930245307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2958","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","11:30:00","MST","2021-09-28 18:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245319","UTAHDWQ_WQX-CUWJP210927-5910160-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-5910160-0928-4-C/results/930245319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2959","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","12:15:00","MST","2021-09-28 19:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245331","UTAHDWQ_WQX-CUWJP210927-4996870-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996870-0928-4-C/results/930245331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2960","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","12:18:00","MST","2021-09-28 19:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245343","UTAHDWQ_WQX-CUWJP210927-5913210-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-5913210-0928-4-C/results/930245343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2961","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","12:19:00","MST","2021-09-28 19:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245355","UTAHDWQ_WQX-CUWJP210927-4996890-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996890-0928-4-C/results/930245355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2962","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","12:30:00","MST","2021-09-28 19:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245367","UTAHDWQ_WQX-CUWJP210927-4996850-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996850-0928-4-C/results/930245367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2963","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","12:39:00","MST","2021-09-28 19:39:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245379","UTAHDWQ_WQX-CUWJP210927-4996830-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996830-0928-4-C/results/930245379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2964","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","12:49:00","MST","2021-09-28 19:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245391","UTAHDWQ_WQX-CUWJP210927-4996810-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996810-0928-4-C/results/930245391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2965","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","13:02:00","MST","2021-09-28 20:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245403","UTAHDWQ_WQX-CUWJP210927-4996780-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996780-0928-4-C/results/930245403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2966","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","08:00:00","MST","2021-09-29 15:00:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245415","UTAHDWQ_WQX-CUWDF210928-4995600-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210928-4995600-0929-4-C/results/930245415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2967","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","09:12:00","MST","2021-09-29 16:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245464","UTAHDWQ_WQX-CUWDF210928-4995730-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210928-4995730-0929-4-C/results/930245464/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2968","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","09:08:00","MST","2021-09-29 16:08:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-930245481","UTAHDWQ_WQX-CUWDF210928-4995710-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-17T10:31:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210928-4995710-0929-4-C/results/930245481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1558","Field Msr/Obs","Non_QC","Water","WATER",NA,"None",NA,"Not Reviewed","Nitrate","NITRATE",NA,NA,"unknown","UNKNOWN","Rejected","NITRATE_NA_UNKNOWN_UG/L","2021-06-06",NA,NA,NA,NA,"0.3502",350.2,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","RMRS LAB",NA,"LAB ANALYSIS","ADVENTURESCIENTISTS",NA,"Not Reviewed",NA,NA,NA,NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"SR 099",NA,"STORET-930751284","ADVENTURESCIENTISTS-5868d02d-2c40-42eb-82b9-9b8fb856d739-39.11.110.11","ADVENTURESCIENTISTS","Adventure Scientists (Volunteer)*","N","Not a duplicate","Y","Not a duplicate","Unique","Wild and Scenic Rivers","Adventure Scientists' Wild and Scenic Rivers project","AS-WSR-1",NA,NA,NA,"N","US","49","019","Green Wild and Scenic River-39.11.110.11","River/Stream",NA,"39.1146823000",39.1146823,"-110.1090854000",-110.1090854,"OK","14060008","ADVENTURESCIENTISTS-39.11.110.11",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-02-26T13:27:18",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"39.1146823000","-110.1090854000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2970","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:10:00","MST","2021-06-01 17:10:00",NA,"0.484",484,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783181","UTAHDWQ_WQX-LAKES210531-4900430-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES AB DAM 01 Replicate of 4900440","Lake","Replicate of 4900440","41.5013300000",41.50133,"-111.9410600000",-111.94106,"OK","16010204","UTAHDWQ_WQX-4900430",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9410600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900430-0601-2-C/results/933783181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2971","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","10:10:00","MST","2021-06-01 17:10:00",NA,"0.359",359,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783185","UTAHDWQ_WQX-LAKES210531-4900430-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES AB DAM 01 Replicate of 4900440","Lake","Replicate of 4900440","41.5013300000",41.50133,"-111.9410600000",-111.94106,"OK","16010204","UTAHDWQ_WQX-4900430",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9410600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900430-0601-2-C/results/933783185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2972","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","09:20:00","MST","2021-09-01 16:20:00",NA,"0.67",670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783195","UTAHDWQ_WQX-LAKES210830-4900430-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES AB DAM 01 Replicate of 4900440","Lake","Replicate of 4900440","41.5013300000",41.50133,"-111.9410600000",-111.94106,"OK","16010204","UTAHDWQ_WQX-4900430",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9410600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900430-0901-2-C/results/933783195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2973","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","09:20:00","MST","2021-09-01 16:20:00",NA,"0.652",652,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783199","UTAHDWQ_WQX-LAKES210830-4900430-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES AB DAM 01 Replicate of 4900440","Lake","Replicate of 4900440","41.5013300000",41.50133,"-111.9410600000",-111.94106,"OK","16010204","UTAHDWQ_WQX-4900430",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9410600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900430-0901-2-C/results/933783199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2974","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","09:50:00","MST","2021-06-01 16:50:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783209","UTAHDWQ_WQX-LAKES210531-4900440-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES AB DAM 01","Lake",NA,"41.5013300000",41.50133,"-111.9410600000",-111.94106,"OK","16010204","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9410600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900440-0601-2-C/results/933783209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2975","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","09:50:00","MST","2021-06-01 16:50:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783213","UTAHDWQ_WQX-LAKES210531-4900440-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES AB DAM 01","Lake",NA,"41.5013300000",41.50133,"-111.9410600000",-111.94106,"OK","16010204","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9410600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900440-0601-2-C/results/933783213/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2976","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:00:00","MST","2021-06-01 17:00:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4.95",4.95,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783218","UTAHDWQ_WQX-LAKES210531-4900440-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES AB DAM 01","Lake",NA,"41.5013300000",41.50133,"-111.9410600000",-111.94106,"OK","16010204","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9410600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900440-0601-29-C/results/933783218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2977","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","10:00:00","MST","2021-06-01 17:00:00",NA,"0.359",359,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4.95",4.95,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783222","UTAHDWQ_WQX-LAKES210531-4900440-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES AB DAM 01","Lake",NA,"41.5013300000",41.50133,"-111.9410600000",-111.94106,"OK","16010204","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9410600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900440-0601-29-C/results/933783222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2978","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","09:30:00","MST","2021-09-01 16:30:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783249","UTAHDWQ_WQX-LAKES210830-4900440-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES AB DAM 01","Lake",NA,"41.5013300000",41.50133,"-111.9410600000",-111.94106,"OK","16010204","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9410600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900440-0901-2-C/results/933783249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2979","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","09:30:00","MST","2021-09-01 16:30:00",NA,"0.486",486,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783253","UTAHDWQ_WQX-LAKES210830-4900440-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES AB DAM 01","Lake",NA,"41.5013300000",41.50133,"-111.9410600000",-111.94106,"OK","16010204","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9410600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900440-0901-2-C/results/933783253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2980","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:20:00","MST","2021-06-01 17:20:00",NA,"0.355",355,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783280","UTAHDWQ_WQX-LAKES210531-4900450-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES S MIDLAKE 02","Lake",NA,"41.5013300000",41.50133,"-111.9268800000",-111.92688,"OK","16010204","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9268800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900450-0601-2-C/results/933783280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2981","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","10:20:00","MST","2021-06-01 17:20:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783284","UTAHDWQ_WQX-LAKES210531-4900450-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES S MIDLAKE 02","Lake",NA,"41.5013300000",41.50133,"-111.9268800000",-111.92688,"OK","16010204","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9268800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900450-0601-2-C/results/933783284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6255","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:25:00","MST","2021-06-01 17:25:00",NA,"0.364",364,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783289","UTAHDWQ_WQX-LAKES210531-4900450-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES S MIDLAKE 02","Lake",NA,"41.5013300000",41.50133,"-111.9268800000",-111.92688,"OK","16010204","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9268800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900450-0601-29-C/results/933783289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2983","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","10:25:00","MST","2021-06-01 17:25:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783293","UTAHDWQ_WQX-LAKES210531-4900450-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES S MIDLAKE 02","Lake",NA,"41.5013300000",41.50133,"-111.9268800000",-111.92688,"OK","16010204","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9268800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900450-0601-29-C/results/933783293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2984","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","09:50:00","MST","2021-09-01 16:50:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783303","UTAHDWQ_WQX-LAKES210830-4900450-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES S MIDLAKE 02","Lake",NA,"41.5013300000",41.50133,"-111.9268800000",-111.92688,"OK","16010204","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9268800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900450-0901-2-C/results/933783303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6258","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","09:50:00","MST","2021-09-01 16:50:00",NA,"0.935",935,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783307","UTAHDWQ_WQX-LAKES210830-4900450-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES S MIDLAKE 02","Lake",NA,"41.5013300000",41.50133,"-111.9268800000",-111.92688,"OK","16010204","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5013300000","-111.9268800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900450-0901-2-C/results/933783307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2986","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:35:00","MST","2021-06-01 17:35:00",NA,"0.307",307,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783317","UTAHDWQ_WQX-LAKES210531-4900460-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES N MIDLAKE 03","Lake",NA,"41.5082700000",41.50827,"-111.9299400000",-111.92994,"OK","16010204","UTAHDWQ_WQX-4900460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5082700000","-111.9299400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900460-0601-2-C/results/933783317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2987","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","10:35:00","MST","2021-06-01 17:35:00",NA,"0.317",317,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783321","UTAHDWQ_WQX-LAKES210531-4900460-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MANTUA RES N MIDLAKE 03","Lake",NA,"41.5082700000",41.50827,"-111.9299400000",-111.92994,"OK","16010204","UTAHDWQ_WQX-4900460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5082700000","-111.9299400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900460-0601-2-C/results/933783321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2988","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","12:00:00","MST","2021-04-07 19:00:00",NA,"0.919",919,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783344","UTAHDWQ_WQX-BRI210405-4900470-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900470-0407-4-C/results/933783344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2989","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","12:00:00","MST","2021-04-07 19:00:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783347","UTAHDWQ_WQX-BRI210405-4900470-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900470-0407-4-C/results/933783347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6263","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","13:15:00","MST","2021-05-05 20:15:00",NA,"0.547",547,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783353","UTAHDWQ_WQX-BRI210503-4900470-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900470-0505-4-C/results/933783353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2991","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","13:15:00","MST","2021-05-05 20:15:00",NA,"0.81",810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783356","UTAHDWQ_WQX-BRI210503-4900470-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900470-0505-4-C/results/933783356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2992","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","11:35:00","MST","2021-06-01 18:35:00",NA,"1.59",1590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783366","UTAHDWQ_WQX-LAKES210531-4900470-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900470-0601-4-C/results/933783366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6266","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","11:35:00","MST","2021-06-01 18:35:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783370","UTAHDWQ_WQX-LAKES210531-4900470-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900470-0601-4-C/results/933783370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2994","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","17:35:00","MST","2021-08-24 00:35:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783393","UTAHDWQ_WQX-BRI210823-4900470-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900470-0823-4-C/results/933783393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2995","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","17:35:00","MST","2021-08-24 00:35:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783396","UTAHDWQ_WQX-BRI210823-4900470-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900470-0823-4-C/results/933783396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2996","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","11:10:00","MST","2021-09-01 18:10:00",NA,"0.858",858,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783423","UTAHDWQ_WQX-LAKES210830-4900470-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900470-0901-4-C/results/933783423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2997","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","11:10:00","MST","2021-09-01 18:10:00",NA,"0.77",770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783427","UTAHDWQ_WQX-LAKES210830-4900470-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900470-0901-4-C/results/933783427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2998","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","14:08:00","MST","2021-09-29 21:08:00",NA,"0.899",899,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783450","UTAHDWQ_WQX-BRI210920-4900470-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900470-0929-4-C/results/933783450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2999","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","14:08:00","MST","2021-09-29 21:08:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783453","UTAHDWQ_WQX-BRI210920-4900470-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900470-0929-4-C/results/933783453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3000","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","12:30:00","MST","2021-04-07 19:30:00",NA,"0.637",637,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783476","UTAHDWQ_WQX-BRI210405-4900510-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900510-0407-4-C/results/933783476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3001","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","12:30:00","MST","2021-04-07 19:30:00",NA,"0.775",775,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783479","UTAHDWQ_WQX-BRI210405-4900510-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900510-0407-4-C/results/933783479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3002","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","13:30:00","MST","2021-05-05 20:30:00",NA,"0.563",563,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783485","UTAHDWQ_WQX-BRI210503-4900510-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900510-0505-4-C/results/933783485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3003","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","13:30:00","MST","2021-05-05 20:30:00",NA,"0.592",592,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783488","UTAHDWQ_WQX-BRI210503-4900510-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900510-0505-4-C/results/933783488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3004","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","11:15:00","MST","2021-06-01 18:15:00",NA,"0.693",693,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783498","UTAHDWQ_WQX-LAKES210531-4900510-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900510-0601-4-C/results/933783498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3005","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","11:15:00","MST","2021-06-01 18:15:00",NA,"0.816",816,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783502","UTAHDWQ_WQX-LAKES210531-4900510-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900510-0601-4-C/results/933783502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3006","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","13:45:00","MST","2021-06-10 20:45:00",NA,"0.906",906,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783525","UTAHDWQ_WQX-BRI210607-4900510-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900510-0610-4-C/results/933783525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3007","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","13:45:00","MST","2021-06-10 20:45:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783528","UTAHDWQ_WQX-BRI210607-4900510-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900510-0610-4-C/results/933783528/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3008","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","11:25:00","MST","2021-07-21 18:25:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783551","UTAHDWQ_WQX-BRI210719-4900510-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900510-0721-4-C/results/933783551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3009","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","11:25:00","MST","2021-07-21 18:25:00",NA,"0.469",469,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783554","UTAHDWQ_WQX-BRI210719-4900510-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900510-0721-4-C/results/933783554/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3010","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","15:45:00","MST","2021-08-11 22:45:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783560","UTAHDWQ_WQX-BRI210809-4900510-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900510-0811-4-C/results/933783560/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3011","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","15:45:00","MST","2021-08-11 22:45:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783563","UTAHDWQ_WQX-BRI210809-4900510-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900510-0811-4-C/results/933783563/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3012","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","10:45:00","MST","2021-09-01 17:45:00",NA,"0.579",579,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783590","UTAHDWQ_WQX-LAKES210830-4900510-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900510-0901-4-C/results/933783590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3013","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","10:45:00","MST","2021-09-01 17:45:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783594","UTAHDWQ_WQX-LAKES210830-4900510-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900510-0901-4-C/results/933783594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3014","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","14:30:00","MST","2021-09-29 21:30:00",NA,"0.651",651,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783617","UTAHDWQ_WQX-BRI210920-4900510-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900510-0929-4-C/results/933783617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3015","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","14:30:00","MST","2021-09-29 21:30:00",NA,"0.83",830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783620","UTAHDWQ_WQX-BRI210920-4900510-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES","River/Stream",NA,"41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900510-0929-4-C/results/933783620/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3016","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","12:40:00","MST","2021-04-07 19:40:00",NA,"0.666",666,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783626","UTAHDWQ_WQX-BRI210405-4900511-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900511-0407-4-C/results/933783626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3017","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","12:40:00","MST","2021-04-07 19:40:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783629","UTAHDWQ_WQX-BRI210405-4900511-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900511-0407-4-C/results/933783629/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3018","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","13:40:00","MST","2021-05-05 20:40:00",NA,"0.577",577,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783652","UTAHDWQ_WQX-BRI210503-4900511-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900511-0505-4-C/results/933783652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3019","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","13:40:00","MST","2021-05-05 20:40:00",NA,"0.685",685,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783655","UTAHDWQ_WQX-BRI210503-4900511-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900511-0505-4-C/results/933783655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3020","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","14:00:00","MST","2021-06-10 21:00:00",NA,"0.872",872,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783661","UTAHDWQ_WQX-BRI210607-4900511-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900511-0610-4-C/results/933783661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3021","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","14:00:00","MST","2021-06-10 21:00:00",NA,"0.793",793,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783664","UTAHDWQ_WQX-BRI210607-4900511-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900511-0610-4-C/results/933783664/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6295","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","11:30:00","MST","2021-07-21 18:30:00",NA,"0.454",454,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783687","UTAHDWQ_WQX-BRI210719-4900511-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900511-0721-4-C/results/933783687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3023","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","11:30:00","MST","2021-07-21 18:30:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783690","UTAHDWQ_WQX-BRI210719-4900511-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900511-0721-4-C/results/933783690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3024","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","15:50:00","MST","2021-08-11 22:50:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783696","UTAHDWQ_WQX-BRI210809-4900511-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900511-0811-4-C/results/933783696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6298","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","15:50:00","MST","2021-08-11 22:50:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783699","UTAHDWQ_WQX-BRI210809-4900511-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900511-0811-4-C/results/933783699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3026","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","14:35:00","MST","2021-09-29 21:35:00",NA,"0.655",655,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783722","UTAHDWQ_WQX-BRI210920-4900511-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900511-0929-4-C/results/933783722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3027","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","14:35:00","MST","2021-09-29 21:35:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783725","UTAHDWQ_WQX-BRI210920-4900511-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","41.4966200000",41.49662,"-111.9266100000",-111.92661,"OK","16010204","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4966200000","-111.9266100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900511-0929-4-C/results/933783725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3028","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","17:33:00","MST","2021-04-06 00:33:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783747","UTAHDWQ_WQX-BRI210405-4900751-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0405-4-C/results/933783747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3029","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","17:33:00","MST","2021-04-06 00:33:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783750","UTAHDWQ_WQX-BRI210405-4900751-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0405-4-C/results/933783750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6303","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","17:45:00","MST","2021-04-07 00:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783790","UTAHDWQ_WQX-BRI210405-4900751-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0406-4-C/results/933783790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3031","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","17:45:00","MST","2021-04-07 00:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783793","UTAHDWQ_WQX-BRI210405-4900751-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0406-4-C/results/933783793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3032","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","16:35:00","MST","2021-04-07 23:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783833","UTAHDWQ_WQX-BRI210405-4900751-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0407-4-C/results/933783833/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6306","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","16:35:00","MST","2021-04-07 23:35:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783836","UTAHDWQ_WQX-BRI210405-4900751-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0407-4-C/results/933783836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3034","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","17:00:00","MST","2021-05-18 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783842","UTAHDWQ_WQX-BRI210503-4900751-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0517-4-C/results/933783842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3035","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","17:00:00","MST","2021-05-18 00:00:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783845","UTAHDWQ_WQX-BRI210503-4900751-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0517-4-C/results/933783845/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3036","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","18:00:00","MST","2021-05-19 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783885","UTAHDWQ_WQX-BRI210503-4900751-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0518-4-C/results/933783885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3037","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","18:00:00","MST","2021-05-19 01:00:00",NA,"0.417",417,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783888","UTAHDWQ_WQX-BRI210503-4900751-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0518-4-C/results/933783888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3038","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","18:00:00","MST","2021-05-20 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783894","UTAHDWQ_WQX-BRI210503-4900751-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0519-4-C/results/933783894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3039","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","18:00:00","MST","2021-05-20 01:00:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783897","UTAHDWQ_WQX-BRI210503-4900751-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0519-4-C/results/933783897/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3040","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","09:15:00","MST","2021-06-07 16:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783903","UTAHDWQ_WQX-BRI210607-4900751-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0607-4-C/results/933783903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3041","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","09:15:00","MST","2021-06-07 16:15:00",NA,"0.119",119,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783906","UTAHDWQ_WQX-BRI210607-4900751-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0607-4-C/results/933783906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3042","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","08:00:00","MST","2021-06-08 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783946","UTAHDWQ_WQX-BRI210607-4900751-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0608-4-C/results/933783946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3043","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","08:00:00","MST","2021-06-08 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783949","UTAHDWQ_WQX-BRI210607-4900751-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0608-4-C/results/933783949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3044","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","08:15:00","MST","2021-06-09 15:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783972","UTAHDWQ_WQX-BRI210607-4900751-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0609-4-C/results/933783972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3045","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","08:15:00","MST","2021-06-09 15:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783975","UTAHDWQ_WQX-BRI210607-4900751-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0609-4-C/results/933783975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3046","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","16:30:00","MST","2021-06-21 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933783998","UTAHDWQ_WQX-BRI210621-4900751-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4900751-0621-4-C/results/933783998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3047","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","16:30:00","MST","2021-06-21 23:30:00",NA,"0.091",91,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784001","UTAHDWQ_WQX-BRI210621-4900751-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4900751-0621-4-C/results/933784001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3048","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","17:00:00","MST","2021-06-23 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784024","UTAHDWQ_WQX-BRI210621-4900751-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4900751-0622-4-C/results/933784024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3049","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","17:00:00","MST","2021-06-23 00:00:00",NA,"0.099",99,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784027","UTAHDWQ_WQX-BRI210621-4900751-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4900751-0622-4-C/results/933784027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6323","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","16:00:00","MST","2021-07-06 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784067","UTAHDWQ_WQX-BRI210706-4900751-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4900751-0706-4-C/results/933784067/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3051","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","16:00:00","MST","2021-07-06 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784070","UTAHDWQ_WQX-BRI210706-4900751-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4900751-0706-4-C/results/933784070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3052","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-08","15:00:00","MST","2021-07-08 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784110","UTAHDWQ_WQX-BRI210706-4900751-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4900751-0708-4-C/results/933784110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6326","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-08","15:00:00","MST","2021-07-08 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784113","UTAHDWQ_WQX-BRI210706-4900751-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4900751-0708-4-C/results/933784113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3054","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","17:20:00","MST","2021-07-20 00:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784136","UTAHDWQ_WQX-BRI210719-4900751-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0719-4-C/results/933784136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3055","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","17:20:00","MST","2021-07-20 00:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784139","UTAHDWQ_WQX-BRI210719-4900751-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0719-4-C/results/933784139/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3056","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","16:30:00","MST","2021-07-20 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784179","UTAHDWQ_WQX-BRI210719-4900751-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0720-4-C/results/933784179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3057","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","16:30:00","MST","2021-07-20 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784182","UTAHDWQ_WQX-BRI210719-4900751-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0720-4-C/results/933784182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6331","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","16:00:00","MST","2021-07-21 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784188","UTAHDWQ_WQX-BRI210719-4900751-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0721-4-C/results/933784188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3059","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","16:00:00","MST","2021-07-21 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784191","UTAHDWQ_WQX-BRI210719-4900751-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0721-4-C/results/933784191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3060","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","17:30:00","MST","2021-08-11 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784197","UTAHDWQ_WQX-BRI210809-4900751-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0810-4-C/results/933784197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6334","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","17:30:00","MST","2021-08-11 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784200","UTAHDWQ_WQX-BRI210809-4900751-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0810-4-C/results/933784200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3062","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","16:00:00","MST","2021-08-11 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784239","UTAHDWQ_WQX-BRI210809-4900751-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0811-4-C/results/933784239/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3063","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","16:00:00","MST","2021-08-11 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784242","UTAHDWQ_WQX-BRI210809-4900751-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0811-4-C/results/933784242/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6337","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","14:30:00","MST","2021-08-12 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784265","UTAHDWQ_WQX-BRI210809-4900751-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0812-4-C/results/933784265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3065","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-12","14:30:00","MST","2021-08-12 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784268","UTAHDWQ_WQX-BRI210809-4900751-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0812-4-C/results/933784268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3066","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","16:00:00","MST","2021-08-23 23:00:00",NA,"0.1",100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784291","UTAHDWQ_WQX-BRI210823-4900751-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900751-0823-4-C/results/933784291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6340","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","16:00:00","MST","2021-08-23 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784294","UTAHDWQ_WQX-BRI210823-4900751-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900751-0823-4-C/results/933784294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3068","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","18:00:00","MST","2021-08-24 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784317","UTAHDWQ_WQX-BRI210823-4900751-0823-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900751-0823-4%2F1-C/results/933784317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3069","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","18:00:00","MST","2021-08-24 01:00:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784320","UTAHDWQ_WQX-BRI210823-4900751-0823-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900751-0823-4%2F1-C/results/933784320/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3070","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","17:00:00","MST","2021-09-22 00:00:00",NA,"0.14",140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784343","UTAHDWQ_WQX-BRI210920-4900751-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0921-4-C/results/933784343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3071","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","17:00:00","MST","2021-09-22 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784346","UTAHDWQ_WQX-BRI210920-4900751-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0921-4-C/results/933784346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3072","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","17:00:00","MST","2021-09-23 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784386","UTAHDWQ_WQX-BRI210920-4900751-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0922-4-C/results/933784386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3073","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","17:00:00","MST","2021-09-23 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784389","UTAHDWQ_WQX-BRI210920-4900751-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0922-4-C/results/933784389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3074","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","16:00:00","MST","2021-09-23 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784395","UTAHDWQ_WQX-BRI210920-4900751-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0923-4-C/results/933784395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3075","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","16:00:00","MST","2021-09-23 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784398","UTAHDWQ_WQX-BRI210920-4900751-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0923-4-C/results/933784398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3076","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","17:00:00","MST","2021-04-06 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784404","UTAHDWQ_WQX-BRI210405-4900753-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0405-4-C/results/933784404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3077","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","17:00:00","MST","2021-04-06 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784407","UTAHDWQ_WQX-BRI210405-4900753-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0405-4-C/results/933784407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3078","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","17:00:00","MST","2021-04-07 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784430","UTAHDWQ_WQX-BRI210405-4900753-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0406-4-C/results/933784430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3079","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","17:00:00","MST","2021-04-07 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784433","UTAHDWQ_WQX-BRI210405-4900753-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0406-4-C/results/933784433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3080","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","15:00:00","MST","2021-04-07 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784490","UTAHDWQ_WQX-BRI210405-4900753-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0407-4-C/results/933784490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3081","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","15:00:00","MST","2021-04-07 22:00:00",NA,"0.327",327,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784493","UTAHDWQ_WQX-BRI210405-4900753-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0407-4-C/results/933784493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3082","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","16:00:00","MST","2021-05-03 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784499","UTAHDWQ_WQX-BRI210503-4900753-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0503-4-C/results/933784499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3083","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","16:00:00","MST","2021-05-03 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784502","UTAHDWQ_WQX-BRI210503-4900753-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0503-4-C/results/933784502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3084","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","17:30:00","MST","2021-05-05 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784508","UTAHDWQ_WQX-BRI210503-4900753-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0504-4-C/results/933784508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3085","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","17:30:00","MST","2021-05-05 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784511","UTAHDWQ_WQX-BRI210503-4900753-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0504-4-C/results/933784511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3086","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","16:00:00","MST","2021-05-05 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784551","UTAHDWQ_WQX-BRI210503-4900753-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0505-4-C/results/933784551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3087","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","16:00:00","MST","2021-05-05 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784554","UTAHDWQ_WQX-BRI210503-4900753-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0505-4-C/results/933784554/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3088","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","19:00:00","MST","2021-06-08 02:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784560","UTAHDWQ_WQX-BRI210607-4900753-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0607-4-C/results/933784560/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3089","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","19:00:00","MST","2021-06-08 02:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784563","UTAHDWQ_WQX-BRI210607-4900753-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0607-4-C/results/933784563/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3090","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","16:05:00","MST","2021-06-08 23:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784586","UTAHDWQ_WQX-BRI210607-4900753-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0608-4-C/results/933784586/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3091","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","16:05:00","MST","2021-06-08 23:05:00",NA,"0.102",102,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784589","UTAHDWQ_WQX-BRI210607-4900753-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0608-4-C/results/933784589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3092","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-11","09:00:00","MST","2021-06-11 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784629","UTAHDWQ_WQX-BRI210607-4900753-0611-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0611-4-C/results/933784629/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3093","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-11","09:00:00","MST","2021-06-11 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784632","UTAHDWQ_WQX-BRI210607-4900753-0611-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0611-4-C/results/933784632/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3094","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","17:30:00","MST","2021-07-20 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784655","UTAHDWQ_WQX-BRI210719-4900753-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0719-4-C/results/933784655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3095","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","17:30:00","MST","2021-07-20 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784658","UTAHDWQ_WQX-BRI210719-4900753-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0719-4-C/results/933784658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3096","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","18:00:00","MST","2021-07-21 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784698","UTAHDWQ_WQX-BRI210719-4900753-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0720-4-C/results/933784698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3097","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","18:00:00","MST","2021-07-21 01:00:00",NA,"0.181",181,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784701","UTAHDWQ_WQX-BRI210719-4900753-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0720-4-C/results/933784701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3098","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","14:00:00","MST","2021-07-21 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784707","UTAHDWQ_WQX-BRI210719-4900753-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0721-4-C/results/933784707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3099","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","14:00:00","MST","2021-07-21 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784710","UTAHDWQ_WQX-BRI210719-4900753-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0721-4-C/results/933784710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3100","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","17:00:00","MST","2021-08-10 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784716","UTAHDWQ_WQX-BRI210809-4900753-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0809-4-C/results/933784716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3101","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","17:00:00","MST","2021-08-10 00:00:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784719","UTAHDWQ_WQX-BRI210809-4900753-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0809-4-C/results/933784719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3102","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","16:10:00","MST","2021-08-10 23:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784742","UTAHDWQ_WQX-BRI210809-4900753-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0810-4-C/results/933784742/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3103","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","16:10:00","MST","2021-08-10 23:10:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784745","UTAHDWQ_WQX-BRI210809-4900753-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0810-4-C/results/933784745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3104","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","16:00:00","MST","2021-08-11 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784784","UTAHDWQ_WQX-BRI210809-4900753-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0811-4-C/results/933784784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3105","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","16:00:00","MST","2021-08-11 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784787","UTAHDWQ_WQX-BRI210809-4900753-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0811-4-C/results/933784787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3106","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","18:30:00","MST","2021-09-28 01:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784810","UTAHDWQ_WQX-BRI210920-4900753-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0927-4-C/results/933784810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3107","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","18:30:00","MST","2021-09-28 01:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784813","UTAHDWQ_WQX-BRI210920-4900753-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0927-4-C/results/933784813/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3108","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","17:00:00","MST","2021-09-29 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784819","UTAHDWQ_WQX-BRI210920-4900753-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0928-4-C/results/933784819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3109","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","17:00:00","MST","2021-09-29 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784822","UTAHDWQ_WQX-BRI210920-4900753-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0928-4-C/results/933784822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3110","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","16:30:00","MST","2021-09-29 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784862","UTAHDWQ_WQX-BRI210920-4900753-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0929-4-C/results/933784862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3111","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","16:30:00","MST","2021-09-29 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784865","UTAHDWQ_WQX-BRI210920-4900753-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0929-4-C/results/933784865/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3112","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","14:59:00","MST","2021-05-25 21:59:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784875","UTAHDWQ_WQX-IDEQBL210525-4900754-0525-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4900754-0525-2-C/results/933784875/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3113","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","14:59:00","MST","2021-05-25 21:59:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784878","UTAHDWQ_WQX-IDEQBL210525-4900754-0525-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4900754-0525-2-C/results/933784878/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3114","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","17:40:00","MST","2021-06-22 00:40:00",NA,"0.126",126,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784888","UTAHDWQ_WQX-IDEQBL210621-4900754-0621-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4900754-0621-2-C/results/933784888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3115","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","17:40:00","MST","2021-06-22 00:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784891","UTAHDWQ_WQX-IDEQBL210621-4900754-0621-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4900754-0621-2-C/results/933784891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3116","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","16:15:00","MST","2021-07-26 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784901","UTAHDWQ_WQX-IDEQBL210726-4900754-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4900754-0726-2-C/results/933784901/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3117","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","16:15:00","MST","2021-07-26 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784904","UTAHDWQ_WQX-IDEQBL210726-4900754-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4900754-0726-2-C/results/933784904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3118","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","14:15:00","MST","2021-09-01 21:15:00",NA,"0.164",164,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784914","UTAHDWQ_WQX-IDEQBL210901-4900754-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4900754-0901-2-C/results/933784914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3119","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","14:15:00","MST","2021-09-01 21:15:00",NA,"0.119",119,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784917","UTAHDWQ_WQX-IDEQBL210901-4900754-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4900754-0901-2-C/results/933784917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3120","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","12:25:00","MST","2021-09-27 19:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784927","UTAHDWQ_WQX-IDEQBL210927-4900754-0927-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4900754-0927-2-C/results/933784927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3121","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","12:25:00","MST","2021-09-27 19:25:00",NA,"0.083",83,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784930","UTAHDWQ_WQX-IDEQBL210927-4900754-0927-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4900754-0927-2-C/results/933784930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3122","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","13:30:00","MST","2021-05-25 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784940","UTAHDWQ_WQX-IDEQBL210525-4900755-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4900755-0525-4-C/results/933784940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3123","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","13:30:00","MST","2021-05-25 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784943","UTAHDWQ_WQX-IDEQBL210525-4900755-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4900755-0525-4-C/results/933784943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3124","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","13:31:00","MST","2021-06-21 20:31:00",NA,"0.095",95,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784953","UTAHDWQ_WQX-IDEQBL210621-4900755-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4900755-0621-4-C/results/933784953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3125","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","13:31:00","MST","2021-06-21 20:31:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784956","UTAHDWQ_WQX-IDEQBL210621-4900755-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4900755-0621-4-C/results/933784956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3126","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","13:08:00","MST","2021-07-26 20:08:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784965","UTAHDWQ_WQX-IDEQBL210726-4900755-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4900755-0726-4-C/results/933784965/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3127","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","13:08:00","MST","2021-07-26 20:08:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784968","UTAHDWQ_WQX-IDEQBL210726-4900755-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4900755-0726-4-C/results/933784968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3128","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","15:43:00","MST","2021-09-01 22:43:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784977","UTAHDWQ_WQX-IDEQBL210901-4900755-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4900755-0901-4-C/results/933784977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3129","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","15:43:00","MST","2021-09-01 22:43:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784980","UTAHDWQ_WQX-IDEQBL210901-4900755-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4900755-0901-4-C/results/933784980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3130","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","15:05:00","MST","2021-09-27 22:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784990","UTAHDWQ_WQX-IDEQBL210927-4900755-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4900755-0927-4-C/results/933784990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3131","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","15:05:00","MST","2021-09-27 22:05:00",NA,"0.131",131,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933784993","UTAHDWQ_WQX-IDEQBL210927-4900755-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4900755-0927-4-C/results/933784993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3132","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","11:15:00","MST","2021-04-05 18:15:00",NA,"0.646",646,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785055","UTAHDWQ_WQX-BRI210405-4901050-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901050-0405-4-C/results/933785055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3133","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","11:15:00","MST","2021-04-05 18:15:00",NA,"0.506",506,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785058","UTAHDWQ_WQX-BRI210405-4901050-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901050-0405-4-C/results/933785058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3134","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","10:50:00","MST","2021-05-17 17:50:00",NA,"1.45",1450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785081","UTAHDWQ_WQX-BRI210503-4901050-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901050-0517-4-C/results/933785081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3135","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","10:50:00","MST","2021-05-17 17:50:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785084","UTAHDWQ_WQX-BRI210503-4901050-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901050-0517-4-C/results/933785084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3136","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","11:05:00","MST","2021-06-07 18:05:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785090","UTAHDWQ_WQX-BRI210607-4901050-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901050-0607-4-C/results/933785090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3137","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","11:05:00","MST","2021-06-07 18:05:00",NA,"0.843",843,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785093","UTAHDWQ_WQX-BRI210607-4901050-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901050-0607-4-C/results/933785093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3138","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","11:25:00","MST","2021-07-19 18:25:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785116","UTAHDWQ_WQX-BRI210719-4901050-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901050-0719-4-C/results/933785116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3139","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","11:25:00","MST","2021-07-19 18:25:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785119","UTAHDWQ_WQX-BRI210719-4901050-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901050-0719-4-C/results/933785119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3140","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","09:50:00","MST","2021-08-10 16:50:00",NA,"1.96",1960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785125","UTAHDWQ_WQX-BRI210809-4901050-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901050-0810-4-C/results/933785125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3141","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","09:50:00","MST","2021-08-10 16:50:00",NA,"1.72",1720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785128","UTAHDWQ_WQX-BRI210809-4901050-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901050-0810-4-C/results/933785128/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3142","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","09:45:00","MST","2021-09-21 16:45:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785150","UTAHDWQ_WQX-BRI210920-4901050-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901050-0921-4-C/results/933785150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3143","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","09:45:00","MST","2021-09-21 16:45:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785153","UTAHDWQ_WQX-BRI210920-4901050-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901050-0921-4-C/results/933785153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3144","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","11:05:00","MST","2021-04-05 18:05:00",NA,"0.664",664,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785159","UTAHDWQ_WQX-BRI210405-4901100-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901100-0405-4-C/results/933785159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3145","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","11:05:00","MST","2021-04-05 18:05:00",NA,"0.527",527,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785162","UTAHDWQ_WQX-BRI210405-4901100-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901100-0405-4-C/results/933785162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3146","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","10:40:00","MST","2021-05-17 17:40:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785185","UTAHDWQ_WQX-BRI210503-4901100-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901100-0517-4-C/results/933785185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3147","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","10:40:00","MST","2021-05-17 17:40:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785188","UTAHDWQ_WQX-BRI210503-4901100-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901100-0517-4-C/results/933785188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3148","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","10:55:00","MST","2021-06-07 17:55:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785194","UTAHDWQ_WQX-BRI210607-4901100-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901100-0607-4-C/results/933785194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3149","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","10:55:00","MST","2021-06-07 17:55:00",NA,"0.867",867,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785197","UTAHDWQ_WQX-BRI210607-4901100-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901100-0607-4-C/results/933785197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3150","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","09:30:00","MST","2021-07-06 16:30:00",NA,"1.5",1500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785220","UTAHDWQ_WQX-BRI210706-4901100-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901100-0706-4-C/results/933785220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3151","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","09:30:00","MST","2021-07-06 16:30:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785223","UTAHDWQ_WQX-BRI210706-4901100-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901100-0706-4-C/results/933785223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3152","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","11:20:00","MST","2021-07-19 18:20:00",NA,"2.02",2020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785246","UTAHDWQ_WQX-BRI210719-4901100-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901100-0719-4-C/results/933785246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3153","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","11:20:00","MST","2021-07-19 18:20:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785249","UTAHDWQ_WQX-BRI210719-4901100-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901100-0719-4-C/results/933785249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3154","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","09:45:00","MST","2021-08-10 16:45:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785255","UTAHDWQ_WQX-BRI210809-4901100-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901100-0810-4-C/results/933785255/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3155","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","09:45:00","MST","2021-08-10 16:45:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785258","UTAHDWQ_WQX-BRI210809-4901100-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901100-0810-4-C/results/933785258/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3156","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","09:40:00","MST","2021-09-21 16:40:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785280","UTAHDWQ_WQX-BRI210920-4901100-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901100-0921-4-C/results/933785280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3157","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","09:40:00","MST","2021-09-21 16:40:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785283","UTAHDWQ_WQX-BRI210920-4901100-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"41.5458200000",41.54582,"-112.0961400000",-112.09614,"OK","16010204","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5458200000","-112.0961400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901100-0921-4-C/results/933785283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3158","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","10:10:00","MST","2021-04-05 17:10:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785289","UTAHDWQ_WQX-BRI210405-4901180-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901180-0405-4-C/results/933785289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3159","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","10:10:00","MST","2021-04-05 17:10:00",NA,"0.974",974,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785292","UTAHDWQ_WQX-BRI210405-4901180-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901180-0405-4-C/results/933785292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3160","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","09:50:00","MST","2021-05-17 16:50:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785332","UTAHDWQ_WQX-BRI210503-4901180-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901180-0517-4-C/results/933785332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3161","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","09:50:00","MST","2021-05-17 16:50:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785335","UTAHDWQ_WQX-BRI210503-4901180-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901180-0517-4-C/results/933785335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3162","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","09:55:00","MST","2021-06-07 16:55:00",NA,"2.3",2300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785375","UTAHDWQ_WQX-BRI210607-4901180-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901180-0607-4-C/results/933785375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3163","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","09:55:00","MST","2021-06-07 16:55:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785378","UTAHDWQ_WQX-BRI210607-4901180-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901180-0607-4-C/results/933785378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3164","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","10:30:00","MST","2021-07-19 17:30:00",NA,"2.31",2310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785418","UTAHDWQ_WQX-BRI210719-4901180-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901180-0719-4-C/results/933785418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3165","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","10:30:00","MST","2021-07-19 17:30:00",NA,"2.1",2100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785421","UTAHDWQ_WQX-BRI210719-4901180-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901180-0719-4-C/results/933785421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3166","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","08:30:00","MST","2021-08-10 15:30:00",NA,"4.37",4370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785427","UTAHDWQ_WQX-BRI210809-4901180-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901180-0810-4-C/results/933785427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3167","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","08:30:00","MST","2021-08-10 15:30:00",NA,"4.8",4800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785430","UTAHDWQ_WQX-BRI210809-4901180-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901180-0810-4-C/results/933785430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3168","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","09:20:00","MST","2021-09-21 16:20:00",NA,"4.42",4420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785469","UTAHDWQ_WQX-BRI210920-4901180-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901180-0921-4-C/results/933785469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3169","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","09:20:00","MST","2021-09-21 16:20:00",NA,"5.03",5030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785472","UTAHDWQ_WQX-BRI210920-4901180-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"41.5096600000",41.50966,"-112.0774500000",-112.07745,"OK","16010204","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5096600000","-112.0774500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901180-0921-4-C/results/933785472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3170","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","10:30:00","MST","2021-04-05 17:30:00",NA,"0.394",394,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785513","UTAHDWQ_WQX-BRI210405-4901190-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901190-0405-4-C/results/933785513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3171","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","10:30:00","MST","2021-04-05 17:30:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785516","UTAHDWQ_WQX-BRI210405-4901190-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901190-0405-4-C/results/933785516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3172","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","10:10:00","MST","2021-05-17 17:10:00",NA,"0.531",531,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785556","UTAHDWQ_WQX-BRI210503-4901190-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901190-0517-4-C/results/933785556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3173","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","10:10:00","MST","2021-05-17 17:10:00",NA,"0.494",494,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785559","UTAHDWQ_WQX-BRI210503-4901190-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901190-0517-4-C/results/933785559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3174","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","10:10:00","MST","2021-06-07 17:10:00",NA,"0.543",543,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785600","UTAHDWQ_WQX-BRI210607-4901190-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901190-0607-4-C/results/933785600/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3175","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","10:10:00","MST","2021-06-07 17:10:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785603","UTAHDWQ_WQX-BRI210607-4901190-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901190-0607-4-C/results/933785603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3176","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","09:00:00","MST","2021-06-22 16:00:00",NA,"0.552",552,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785644","UTAHDWQ_WQX-BRI210621-4901190-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901190-0622-4-C/results/933785644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3177","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","09:00:00","MST","2021-06-22 16:00:00",NA,"0.495",495,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785647","UTAHDWQ_WQX-BRI210621-4901190-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901190-0622-4-C/results/933785647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3178","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","08:45:00","MST","2021-08-10 15:45:00",NA,"0.586",586,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785688","UTAHDWQ_WQX-BRI210809-4901190-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901190-0810-4-C/results/933785688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3179","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","08:45:00","MST","2021-08-10 15:45:00",NA,"0.66",660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785691","UTAHDWQ_WQX-BRI210809-4901190-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901190-0810-4-C/results/933785691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3180","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","09:20:00","MST","2021-08-23 16:20:00",NA,"0.58",580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785730","UTAHDWQ_WQX-BRI210823-4901190-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4901190-0823-4-C/results/933785730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3181","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","09:20:00","MST","2021-08-23 16:20:00",NA,"0.891",891,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785733","UTAHDWQ_WQX-BRI210823-4901190-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4901190-0823-4-C/results/933785733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3182","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","10:40:00","MST","2021-04-05 17:40:00",NA,"2.12",2120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785757","UTAHDWQ_WQX-BRI210405-4901200-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901200-0405-4-C/results/933785757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3183","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","10:40:00","MST","2021-04-05 17:40:00",NA,"2.02",2020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785760","UTAHDWQ_WQX-BRI210405-4901200-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901200-0405-4-C/results/933785760/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3184","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","10:20:00","MST","2021-05-17 17:20:00",NA,"3.14",3140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785801","UTAHDWQ_WQX-BRI210503-4901200-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901200-0517-4-C/results/933785801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3185","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","10:20:00","MST","2021-05-17 17:20:00",NA,"3.16",3160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785804","UTAHDWQ_WQX-BRI210503-4901200-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901200-0517-4-C/results/933785804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3186","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","10:25:00","MST","2021-06-07 17:25:00",NA,"3.65",3650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785845","UTAHDWQ_WQX-BRI210607-4901200-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901200-0607-4-C/results/933785845/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3187","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","10:25:00","MST","2021-06-07 17:25:00",NA,"3.61",3610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785848","UTAHDWQ_WQX-BRI210607-4901200-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901200-0607-4-C/results/933785848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3188","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","09:15:00","MST","2021-06-22 16:15:00",NA,"6.09",6090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785889","UTAHDWQ_WQX-BRI210621-4901200-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901200-0622-4-C/results/933785889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3189","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","09:15:00","MST","2021-06-22 16:15:00",NA,"6.28",6280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785892","UTAHDWQ_WQX-BRI210621-4901200-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901200-0622-4-C/results/933785892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3190","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","10:50:00","MST","2021-07-19 17:50:00",NA,"9.44",9440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785933","UTAHDWQ_WQX-BRI210719-4901200-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901200-0719-4-C/results/933785933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3191","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","10:50:00","MST","2021-07-19 17:50:00",NA,"8.74",8740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785936","UTAHDWQ_WQX-BRI210719-4901200-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901200-0719-4-C/results/933785936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3192","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","09:15:00","MST","2021-08-10 16:15:00",NA,"18.5",18500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785977","UTAHDWQ_WQX-BRI210809-4901200-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901200-0810-4-C/results/933785977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3193","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","09:15:00","MST","2021-08-10 16:15:00",NA,"18.4",18400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933785980","UTAHDWQ_WQX-BRI210809-4901200-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901200-0810-4-C/results/933785980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3194","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","08:35:00","MST","2021-09-21 15:35:00",NA,"21.3",21300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786020","UTAHDWQ_WQX-BRI210920-4901200-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901200-0921-4-C/results/933786020/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3195","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","08:35:00","MST","2021-09-21 15:35:00",NA,"21.3",21300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786023","UTAHDWQ_WQX-BRI210920-4901200-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BRIGHAM CITY WWTP","Facility Other",NA,"41.5242200000",41.52422,"-112.0454200000",-112.04542,"OK","16010204","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5242200000","-112.0454200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901200-0921-4-C/results/933786023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3196","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","10:50:00","MST","2021-04-05 17:50:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786063","UTAHDWQ_WQX-BRI210405-4901225-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901225-0405-4-C/results/933786063/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3197","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","10:50:00","MST","2021-04-05 17:50:00",NA,"0.877",877,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786066","UTAHDWQ_WQX-BRI210405-4901225-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901225-0405-4-C/results/933786066/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3198","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","10:30:00","MST","2021-05-17 17:30:00",NA,"3.27",3270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786106","UTAHDWQ_WQX-BRI210503-4901225-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901225-0517-4-C/results/933786106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3199","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","10:30:00","MST","2021-05-17 17:30:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786109","UTAHDWQ_WQX-BRI210503-4901225-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901225-0517-4-C/results/933786109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3200","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","10:35:00","MST","2021-06-07 17:35:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786149","UTAHDWQ_WQX-BRI210607-4901225-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901225-0607-4-C/results/933786149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3201","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","10:35:00","MST","2021-06-07 17:35:00",NA,"3.28",3280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786152","UTAHDWQ_WQX-BRI210607-4901225-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901225-0607-4-C/results/933786152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3202","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","09:30:00","MST","2021-06-22 16:30:00",NA,"4.39",4390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786192","UTAHDWQ_WQX-BRI210621-4901225-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901225-0622-4-C/results/933786192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3203","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","09:30:00","MST","2021-06-22 16:30:00",NA,"4.64",4640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786195","UTAHDWQ_WQX-BRI210621-4901225-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901225-0622-4-C/results/933786195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3204","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","11:00:00","MST","2021-07-19 18:00:00",NA,"8.43",8430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786235","UTAHDWQ_WQX-BRI210719-4901225-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901225-0719-4-C/results/933786235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3205","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","11:00:00","MST","2021-07-19 18:00:00",NA,"8.35",8350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786238","UTAHDWQ_WQX-BRI210719-4901225-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901225-0719-4-C/results/933786238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3206","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","09:20:00","MST","2021-08-10 16:20:00",NA,"18.8",18800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786278","UTAHDWQ_WQX-BRI210809-4901225-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901225-0810-4-C/results/933786278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3207","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","09:20:00","MST","2021-08-10 16:20:00",NA,"18.8",18800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786281","UTAHDWQ_WQX-BRI210809-4901225-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901225-0810-4-C/results/933786281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3208","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","08:50:00","MST","2021-09-21 15:50:00",NA,"19.8",19800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786320","UTAHDWQ_WQX-BRI210920-4901225-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901225-0921-4-C/results/933786320/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3209","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","08:50:00","MST","2021-09-21 15:50:00",NA,"21.3",21300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786323","UTAHDWQ_WQX-BRI210920-4901225-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"41.5244000000",41.5244,"-112.0578000000",-112.0578,"OK","16010204","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5244000000","-112.0578000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901225-0921-4-C/results/933786323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3210","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","13:05:00","MST","2021-04-05 20:05:00",NA,"6.18",6180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786363","UTAHDWQ_WQX-BRI210405-4901431-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901431-0405-4-C/results/933786363/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3211","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","13:05:00","MST","2021-04-05 20:05:00",NA,"4.74",4740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786366","UTAHDWQ_WQX-BRI210405-4901431-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901431-0405-4-C/results/933786366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3212","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","12:15:00","MST","2021-05-17 19:15:00",NA,"4.79",4790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786388","UTAHDWQ_WQX-BRI210503-4901431-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901431-0517-4-C/results/933786388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3213","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","12:15:00","MST","2021-05-17 19:15:00",NA,"3.98",3980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786391","UTAHDWQ_WQX-BRI210503-4901431-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901431-0517-4-C/results/933786391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3214","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","12:20:00","MST","2021-06-07 19:20:00",NA,"6.13",6130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786397","UTAHDWQ_WQX-BRI210607-4901431-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901431-0607-4-C/results/933786397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3215","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","12:20:00","MST","2021-06-07 19:20:00",NA,"5.93",5930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786400","UTAHDWQ_WQX-BRI210607-4901431-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901431-0607-4-C/results/933786400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3216","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:00:00","MST","2021-07-19 20:00:00",NA,"4.05",4050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786423","UTAHDWQ_WQX-BRI210719-4901431-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901431-0719-4-C/results/933786423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3217","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","13:00:00","MST","2021-07-19 20:00:00",NA,"4.03",4030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786426","UTAHDWQ_WQX-BRI210719-4901431-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901431-0719-4-C/results/933786426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3218","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","11:30:00","MST","2021-08-10 18:30:00",NA,"2.96",2960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786432","UTAHDWQ_WQX-BRI210809-4901431-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901431-0810-4-C/results/933786432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3219","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","11:30:00","MST","2021-08-10 18:30:00",NA,"3.02",3020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786435","UTAHDWQ_WQX-BRI210809-4901431-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901431-0810-4-C/results/933786435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3220","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","11:40:00","MST","2021-09-21 18:40:00",NA,"2.33",2330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786457","UTAHDWQ_WQX-BRI210920-4901431-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901431-0921-4-C/results/933786457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3221","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:40:00","MST","2021-09-21 18:40:00",NA,"2.81",2810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786460","UTAHDWQ_WQX-BRI210920-4901431-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH","River/Stream",NA,"41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901431-0921-4-C/results/933786460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3222","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","13:15:00","MST","2021-04-05 20:15:00",NA,"6.39",6390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786466","UTAHDWQ_WQX-BRI210405-4901432-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901432-0405-4-C/results/933786466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3223","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","13:15:00","MST","2021-04-05 20:15:00",NA,"6.37",6370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786469","UTAHDWQ_WQX-BRI210405-4901432-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901432-0405-4-C/results/933786469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3224","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","12:20:00","MST","2021-05-17 19:20:00",NA,"4.8",4800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786492","UTAHDWQ_WQX-BRI210503-4901432-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901432-0517-4-C/results/933786492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3225","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","12:20:00","MST","2021-05-17 19:20:00",NA,"4.02",4020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786495","UTAHDWQ_WQX-BRI210503-4901432-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901432-0517-4-C/results/933786495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3226","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","12:25:00","MST","2021-06-07 19:25:00",NA,"5.83",5830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786501","UTAHDWQ_WQX-BRI210607-4901432-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901432-0607-4-C/results/933786501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3227","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","12:25:00","MST","2021-06-07 19:25:00",NA,"5.99",5990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786504","UTAHDWQ_WQX-BRI210607-4901432-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901432-0607-4-C/results/933786504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3228","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:05:00","MST","2021-07-19 20:05:00",NA,"4.17",4170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786527","UTAHDWQ_WQX-BRI210719-4901432-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901432-0719-4-C/results/933786527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3229","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","13:05:00","MST","2021-07-19 20:05:00",NA,"4.03",4030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786530","UTAHDWQ_WQX-BRI210719-4901432-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901432-0719-4-C/results/933786530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3230","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","11:35:00","MST","2021-08-10 18:35:00",NA,"2.7",2700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786536","UTAHDWQ_WQX-BRI210809-4901432-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901432-0810-4-C/results/933786536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3231","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","11:35:00","MST","2021-08-10 18:35:00",NA,"2.68",2680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786539","UTAHDWQ_WQX-BRI210809-4901432-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901432-0810-4-C/results/933786539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3232","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","11:50:00","MST","2021-09-21 18:50:00",NA,"2.3",2300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786561","UTAHDWQ_WQX-BRI210920-4901432-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901432-0921-4-C/results/933786561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3233","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:50:00","MST","2021-09-21 18:50:00",NA,"2.88",2880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786564","UTAHDWQ_WQX-BRI210920-4901432-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","41.5933500000",41.59335,"-112.0866400000",-112.08664,"OK","16010204","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5933500000","-112.0866400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901432-0921-4-C/results/933786564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3234","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","12:45:00","MST","2021-04-05 19:45:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786570","UTAHDWQ_WQX-BRI210405-4901600-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901600-0405-4-C/results/933786570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3235","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","12:45:00","MST","2021-04-05 19:45:00",NA,"0.49",490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786573","UTAHDWQ_WQX-BRI210405-4901600-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901600-0405-4-C/results/933786573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3236","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","11:50:00","MST","2021-05-17 18:50:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786596","UTAHDWQ_WQX-BRI210503-4901600-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901600-0517-4-C/results/933786596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3237","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","11:50:00","MST","2021-05-17 18:50:00",NA,"0.462",462,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786599","UTAHDWQ_WQX-BRI210503-4901600-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901600-0517-4-C/results/933786599/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3238","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","12:05:00","MST","2021-06-07 19:05:00",NA,"0.704",704,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786605","UTAHDWQ_WQX-BRI210607-4901600-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901600-0607-4-C/results/933786605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3239","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","12:05:00","MST","2021-06-07 19:05:00",NA,"0.893",893,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786608","UTAHDWQ_WQX-BRI210607-4901600-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901600-0607-4-C/results/933786608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3240","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","12:45:00","MST","2021-07-19 19:45:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786631","UTAHDWQ_WQX-BRI210719-4901600-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901600-0719-4-C/results/933786631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3241","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","12:45:00","MST","2021-07-19 19:45:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786634","UTAHDWQ_WQX-BRI210719-4901600-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901600-0719-4-C/results/933786634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3242","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","11:10:00","MST","2021-08-10 18:10:00",NA,"0.895",895,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786640","UTAHDWQ_WQX-BRI210809-4901600-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901600-0810-4-C/results/933786640/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3243","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","11:10:00","MST","2021-08-10 18:10:00",NA,"0.878",878,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786643","UTAHDWQ_WQX-BRI210809-4901600-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901600-0810-4-C/results/933786643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3244","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","11:35:00","MST","2021-09-21 18:35:00",NA,"0.869",869,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786665","UTAHDWQ_WQX-BRI210920-4901600-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901600-0921-4-C/results/933786665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3245","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:35:00","MST","2021-09-21 18:35:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786668","UTAHDWQ_WQX-BRI210920-4901600-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R S OF BEAR R CITY","River/Stream",NA,"41.6148400000",41.61484,"-112.1183300000",-112.11833,"OK","16010204","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6148400000","-112.1183300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901600-0921-4-C/results/933786668/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3246","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","13:40:00","MST","2021-04-05 20:40:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786674","UTAHDWQ_WQX-BRI210405-4901700-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901700-0405-4-C/results/933786674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3247","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","13:40:00","MST","2021-04-05 20:40:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786677","UTAHDWQ_WQX-BRI210405-4901700-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901700-0405-4-C/results/933786677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3248","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","12:25:00","MST","2021-05-17 19:25:00",NA,"0.62",620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786700","UTAHDWQ_WQX-BRI210503-4901700-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901700-0517-4-C/results/933786700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3249","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","12:25:00","MST","2021-05-17 19:25:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786703","UTAHDWQ_WQX-BRI210503-4901700-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901700-0517-4-C/results/933786703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3250","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","12:55:00","MST","2021-06-07 19:55:00",NA,"0.771",771,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786709","UTAHDWQ_WQX-BRI210607-4901700-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901700-0607-4-C/results/933786709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3251","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","12:55:00","MST","2021-06-07 19:55:00",NA,"0.956",956,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786712","UTAHDWQ_WQX-BRI210607-4901700-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901700-0607-4-C/results/933786712/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3252","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:20:00","MST","2021-07-19 20:20:00",NA,"4.03",4030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786735","UTAHDWQ_WQX-BRI210719-4901700-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901700-0719-4-C/results/933786735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3253","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","13:20:00","MST","2021-07-19 20:20:00",NA,"4.06",4060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786738","UTAHDWQ_WQX-BRI210719-4901700-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901700-0719-4-C/results/933786738/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3254","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","12:00:00","MST","2021-08-10 19:00:00",NA,"0.697",697,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786744","UTAHDWQ_WQX-BRI210809-4901700-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901700-0810-4-C/results/933786744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3255","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","12:00:00","MST","2021-08-10 19:00:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786747","UTAHDWQ_WQX-BRI210809-4901700-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901700-0810-4-C/results/933786747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3256","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","12:20:00","MST","2021-09-21 19:20:00",NA,"0.643",643,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786769","UTAHDWQ_WQX-BRI210920-4901700-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901700-0921-4-C/results/933786769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3257","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","12:20:00","MST","2021-09-21 19:20:00",NA,"0.977",977,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786772","UTAHDWQ_WQX-BRI210920-4901700-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"41.6516000000",41.6516,"-112.1138400000",-112.11384,"OK","16010204","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6516000000","-112.1138400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901700-0921-4-C/results/933786772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6527","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","14:45:00","MST","2021-04-05 21:45:00",NA,"0.648",648,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786778","UTAHDWQ_WQX-BRI210405-4901730-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901730-0405-4-C/results/933786778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3258","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","14:45:00","MST","2021-04-05 21:45:00",NA,"0.579",579,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786781","UTAHDWQ_WQX-BRI210405-4901730-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901730-0405-4-C/results/933786781/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3259","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","13:40:00","MST","2021-05-17 20:40:00",NA,"0.462",462,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786804","UTAHDWQ_WQX-BRI210503-4901730-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901730-0517-4-C/results/933786804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6530","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","13:40:00","MST","2021-05-17 20:40:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786807","UTAHDWQ_WQX-BRI210503-4901730-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901730-0517-4-C/results/933786807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6531","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","14:15:00","MST","2021-06-07 21:15:00",NA,"0.628",628,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786813","UTAHDWQ_WQX-BRI210607-4901730-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901730-0607-4-C/results/933786813/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3260","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","14:15:00","MST","2021-06-07 21:15:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786816","UTAHDWQ_WQX-BRI210607-4901730-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901730-0607-4-C/results/933786816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3261","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:25:00","MST","2021-07-19 21:25:00",NA,"0.706",706,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786839","UTAHDWQ_WQX-BRI210719-4901730-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901730-0719-4-C/results/933786839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6534","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","14:25:00","MST","2021-07-19 21:25:00",NA,"0.649",649,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786842","UTAHDWQ_WQX-BRI210719-4901730-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901730-0719-4-C/results/933786842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6535","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","13:40:00","MST","2021-08-10 20:40:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786848","UTAHDWQ_WQX-BRI210809-4901730-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901730-0810-4-C/results/933786848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6536","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","13:40:00","MST","2021-08-10 20:40:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786851","UTAHDWQ_WQX-BRI210809-4901730-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901730-0810-4-C/results/933786851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6537","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","14:00:00","MST","2021-09-21 21:00:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786873","UTAHDWQ_WQX-BRI210920-4901730-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901730-0921-4-C/results/933786873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6538","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","14:00:00","MST","2021-09-21 21:00:00",NA,"0.584",584,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786876","UTAHDWQ_WQX-BRI210920-4901730-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Bear River @ SR 102","River/Stream",NA,"41.7132500000",41.71325,"-112.1170500000",-112.11705,"OK","16010204","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7132500000","-112.1170500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901730-0921-4-C/results/933786876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6539","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","09:35:00","MST","2021-04-06 16:35:00",NA,"0.812",812,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786882","UTAHDWQ_WQX-BRI210405-4901790-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901790-0406-4-C/results/933786882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6540","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","09:35:00","MST","2021-04-06 16:35:00",NA,"0.693",693,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786885","UTAHDWQ_WQX-BRI210405-4901790-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901790-0406-4-C/results/933786885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6541","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","10:10:00","MST","2021-05-18 17:10:00",NA,"0.483",483,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786908","UTAHDWQ_WQX-BRI210503-4901790-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901790-0518-4-C/results/933786908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6542","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","10:10:00","MST","2021-05-18 17:10:00",NA,"0.427",427,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786911","UTAHDWQ_WQX-BRI210503-4901790-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901790-0518-4-C/results/933786911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6543","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","09:15:00","MST","2021-06-08 16:15:00",NA,"0.639",639,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786917","UTAHDWQ_WQX-BRI210607-4901790-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901790-0608-4-C/results/933786917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6544","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","09:15:00","MST","2021-06-08 16:15:00",NA,"0.654",654,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786920","UTAHDWQ_WQX-BRI210607-4901790-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901790-0608-4-C/results/933786920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6545","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","09:00:00","MST","2021-07-20 16:00:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786943","UTAHDWQ_WQX-BRI210719-4901790-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901790-0720-4-C/results/933786943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6546","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","09:00:00","MST","2021-07-20 16:00:00",NA,"0.528",528,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786946","UTAHDWQ_WQX-BRI210719-4901790-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901790-0720-4-C/results/933786946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6547","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","08:10:00","MST","2021-08-11 15:10:00",NA,"0.489",489,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786952","UTAHDWQ_WQX-BRI210809-4901790-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901790-0811-4-C/results/933786952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6548","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","08:10:00","MST","2021-08-11 15:10:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786955","UTAHDWQ_WQX-BRI210809-4901790-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901790-0811-4-C/results/933786955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6549","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","09:10:00","MST","2021-09-22 16:10:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786978","UTAHDWQ_WQX-BRI210920-4901790-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901790-0922-4-C/results/933786978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6550","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","09:10:00","MST","2021-09-22 16:10:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786981","UTAHDWQ_WQX-BRI210920-4901790-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"41.7868900000",41.78689,"-112.1063700000",-112.10637,"OK","16010204","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7868900000","-112.1063700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901790-0922-4-C/results/933786981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6551","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","10:00:00","MST","2021-05-18 17:00:00",NA,"0.427",427,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786987","UTAHDWQ_WQX-BRI210503-4901930-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901930-0518-4-C/results/933786987/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6552","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","10:00:00","MST","2021-05-18 17:00:00",NA,"0.42",420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786990","UTAHDWQ_WQX-BRI210503-4901930-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901930-0518-4-C/results/933786990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6553","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","09:35:00","MST","2021-06-08 16:35:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786996","UTAHDWQ_WQX-BRI210607-4901930-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901930-0608-4-C/results/933786996/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6554","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","09:35:00","MST","2021-06-08 16:35:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933786999","UTAHDWQ_WQX-BRI210607-4901930-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901930-0608-4-C/results/933786999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6555","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","10:20:00","MST","2021-06-22 17:20:00",NA,"0.724",724,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787022","UTAHDWQ_WQX-BRI210621-4901930-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901930-0622-4-C/results/933787022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6556","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","10:20:00","MST","2021-06-22 17:20:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787025","UTAHDWQ_WQX-BRI210621-4901930-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901930-0622-4-C/results/933787025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6557","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","10:00:00","MST","2021-07-06 17:00:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787048","UTAHDWQ_WQX-BRI210706-4901930-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901930-0706-4-C/results/933787048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6558","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","10:00:00","MST","2021-07-06 17:00:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787051","UTAHDWQ_WQX-BRI210706-4901930-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901930-0706-4-C/results/933787051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6559","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","08:50:00","MST","2021-07-20 15:50:00",NA,"0.658",658,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787074","UTAHDWQ_WQX-BRI210719-4901930-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901930-0720-4-C/results/933787074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6560","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","08:50:00","MST","2021-07-20 15:50:00",NA,"0.901",901,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787077","UTAHDWQ_WQX-BRI210719-4901930-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901930-0720-4-C/results/933787077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6561","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","08:00:00","MST","2021-08-11 15:00:00",NA,"0.737",737,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787083","UTAHDWQ_WQX-BRI210809-4901930-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901930-0811-4-C/results/933787083/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6562","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","08:00:00","MST","2021-08-11 15:00:00",NA,"0.878",878,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787086","UTAHDWQ_WQX-BRI210809-4901930-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901930-0811-4-C/results/933787086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6563","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","09:55:00","MST","2021-08-23 16:55:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787109","UTAHDWQ_WQX-BRI210823-4901930-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4901930-0823-4-C/results/933787109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6564","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","09:55:00","MST","2021-08-23 16:55:00",NA,"0.711",711,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787112","UTAHDWQ_WQX-BRI210823-4901930-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4901930-0823-4-C/results/933787112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6565","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","08:55:00","MST","2021-09-22 15:55:00",NA,"0.533",533,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787135","UTAHDWQ_WQX-BRI210920-4901930-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901930-0922-4-C/results/933787135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6566","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","08:55:00","MST","2021-09-22 15:55:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787138","UTAHDWQ_WQX-BRI210920-4901930-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901930-0922-4-C/results/933787138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6567","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","10:40:00","MST","2021-05-18 17:40:00",NA,"0.393",393,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787144","UTAHDWQ_WQX-BRI210503-4901950-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901950-0518-4-C/results/933787144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6568","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","10:40:00","MST","2021-05-18 17:40:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787147","UTAHDWQ_WQX-BRI210503-4901950-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901950-0518-4-C/results/933787147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6569","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","10:28:00","MST","2021-06-08 17:28:00",NA,"0.88",880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787153","UTAHDWQ_WQX-BRI210607-4901950-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901950-0608-4-C/results/933787153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6570","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","10:28:00","MST","2021-06-08 17:28:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787156","UTAHDWQ_WQX-BRI210607-4901950-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901950-0608-4-C/results/933787156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6571","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","10:40:00","MST","2021-06-22 17:40:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787179","UTAHDWQ_WQX-BRI210621-4901950-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901950-0622-4-C/results/933787179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6572","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","10:40:00","MST","2021-06-22 17:40:00",NA,"0.76",760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787182","UTAHDWQ_WQX-BRI210621-4901950-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901950-0622-4-C/results/933787182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6573","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","10:30:00","MST","2021-07-06 17:30:00",NA,"0.771",771,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787205","UTAHDWQ_WQX-BRI210706-4901950-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901950-0706-4-C/results/933787205/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6574","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","10:30:00","MST","2021-07-06 17:30:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787208","UTAHDWQ_WQX-BRI210706-4901950-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901950-0706-4-C/results/933787208/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6575","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","09:40:00","MST","2021-07-20 16:40:00",NA,"0.546",546,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787231","UTAHDWQ_WQX-BRI210719-4901950-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901950-0720-4-C/results/933787231/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6576","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","09:40:00","MST","2021-07-20 16:40:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787234","UTAHDWQ_WQX-BRI210719-4901950-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901950-0720-4-C/results/933787234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6577","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","08:50:00","MST","2021-08-11 15:50:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787240","UTAHDWQ_WQX-BRI210809-4901950-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901950-0811-4-C/results/933787240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6578","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","08:50:00","MST","2021-08-11 15:50:00",NA,"0.669",669,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787243","UTAHDWQ_WQX-BRI210809-4901950-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901950-0811-4-C/results/933787243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6579","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","09:55:00","MST","2021-09-22 16:55:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787266","UTAHDWQ_WQX-BRI210920-4901950-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901950-0922-4-C/results/933787266/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6580","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","09:55:00","MST","2021-09-22 16:55:00",NA,"0.718",718,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787269","UTAHDWQ_WQX-BRI210920-4901950-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901950-0922-4-C/results/933787269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6581","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","09:55:00","MST","2021-04-06 16:55:00",NA,"2.48",2480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787275","UTAHDWQ_WQX-BRI210405-4901975-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901975-0406-4-C/results/933787275/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6582","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","09:55:00","MST","2021-04-06 16:55:00",NA,"2.84",2840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787278","UTAHDWQ_WQX-BRI210405-4901975-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901975-0406-4-C/results/933787278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6583","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","10:20:00","MST","2021-05-18 17:20:00",NA,"2.59",2590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787301","UTAHDWQ_WQX-BRI210503-4901975-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901975-0518-4-C/results/933787301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6584","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","10:20:00","MST","2021-05-18 17:20:00",NA,"2.58",2580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787304","UTAHDWQ_WQX-BRI210503-4901975-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901975-0518-4-C/results/933787304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6585","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","09:45:00","MST","2021-06-08 16:45:00",NA,"3.09",3090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787310","UTAHDWQ_WQX-BRI210607-4901975-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901975-0608-4-C/results/933787310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6586","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","09:45:00","MST","2021-06-08 16:45:00",NA,"2.91",2910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787313","UTAHDWQ_WQX-BRI210607-4901975-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901975-0608-4-C/results/933787313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6587","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","09:15:00","MST","2021-07-20 16:15:00",NA,"2.84",2840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787336","UTAHDWQ_WQX-BRI210719-4901975-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901975-0720-4-C/results/933787336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6588","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","09:15:00","MST","2021-07-20 16:15:00",NA,"2.83",2830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787339","UTAHDWQ_WQX-BRI210719-4901975-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901975-0720-4-C/results/933787339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6589","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","08:25:00","MST","2021-08-11 15:25:00",NA,"2.6",2600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787345","UTAHDWQ_WQX-BRI210809-4901975-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901975-0811-4-C/results/933787345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6590","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","08:25:00","MST","2021-08-11 15:25:00",NA,"2.64",2640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787348","UTAHDWQ_WQX-BRI210809-4901975-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901975-0811-4-C/results/933787348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6591","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","09:25:00","MST","2021-09-22 16:25:00",NA,"2.77",2770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787371","UTAHDWQ_WQX-BRI210920-4901975-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901975-0922-4-C/results/933787371/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6592","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","09:25:00","MST","2021-09-22 16:25:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787374","UTAHDWQ_WQX-BRI210920-4901975-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"41.8118700000",41.81187,"-112.0585600000",-112.05856,"OK","16010204","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8118700000","-112.0585600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901975-0922-4-C/results/933787374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6593","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","10:10:00","MST","2021-04-06 17:10:00",NA,"0.748",748,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787380","UTAHDWQ_WQX-BRI210405-4901980-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901980-0406-4-C/results/933787380/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6594","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","10:10:00","MST","2021-04-06 17:10:00",NA,"0.673",673,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787383","UTAHDWQ_WQX-BRI210405-4901980-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901980-0406-4-C/results/933787383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6595","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","10:30:00","MST","2021-05-18 17:30:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787406","UTAHDWQ_WQX-BRI210503-4901980-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901980-0518-4-C/results/933787406/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6596","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","10:30:00","MST","2021-05-18 17:30:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787409","UTAHDWQ_WQX-BRI210503-4901980-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901980-0518-4-C/results/933787409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6597","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","10:10:00","MST","2021-06-08 17:10:00",NA,"0.59",590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787415","UTAHDWQ_WQX-BRI210607-4901980-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901980-0608-4-C/results/933787415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6598","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","10:10:00","MST","2021-06-08 17:10:00",NA,"0.509",509,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787418","UTAHDWQ_WQX-BRI210607-4901980-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901980-0608-4-C/results/933787418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6599","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","09:30:00","MST","2021-07-20 16:30:00",NA,"0.432",432,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787441","UTAHDWQ_WQX-BRI210719-4901980-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901980-0720-4-C/results/933787441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6600","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","09:30:00","MST","2021-07-20 16:30:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787444","UTAHDWQ_WQX-BRI210719-4901980-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901980-0720-4-C/results/933787444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6601","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","08:40:00","MST","2021-08-11 15:40:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787450","UTAHDWQ_WQX-BRI210809-4901980-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901980-0811-4-C/results/933787450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6602","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","08:40:00","MST","2021-08-11 15:40:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787453","UTAHDWQ_WQX-BRI210809-4901980-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901980-0811-4-C/results/933787453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6603","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","09:35:00","MST","2021-09-22 16:35:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787476","UTAHDWQ_WQX-BRI210920-4901980-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901980-0922-4-C/results/933787476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6604","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","09:35:00","MST","2021-09-22 16:35:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787479","UTAHDWQ_WQX-BRI210920-4901980-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"41.8340900000",41.83409,"-112.0552300000",-112.05523,"OK","16010204","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8340900000","-112.0552300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901980-0922-4-C/results/933787479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6605","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","11:40:00","MST","2021-04-05 18:40:00",NA,"3.41",3410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787485","UTAHDWQ_WQX-BRI210405-4902000-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902000-0405-4-C/results/933787485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6606","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","11:10:00","MST","2021-05-17 18:10:00",NA,"7.84",7840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787508","UTAHDWQ_WQX-BRI210503-4902000-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902000-0517-4-C/results/933787508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6607","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","11:10:00","MST","2021-05-17 18:10:00",NA,"8.38",8380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787511","UTAHDWQ_WQX-BRI210503-4902000-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902000-0517-4-C/results/933787511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6608","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","11:20:00","MST","2021-06-07 18:20:00",NA,"5.41",5410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787517","UTAHDWQ_WQX-BRI210607-4902000-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902000-0607-4-C/results/933787517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6609","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","11:20:00","MST","2021-06-07 18:20:00",NA,"6.17",6170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787520","UTAHDWQ_WQX-BRI210607-4902000-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902000-0607-4-C/results/933787520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6610","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","11:45:00","MST","2021-07-19 18:45:00",NA,"5.68",5680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787543","UTAHDWQ_WQX-BRI210719-4902000-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902000-0719-4-C/results/933787543/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6611","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","11:45:00","MST","2021-07-19 18:45:00",NA,"5.84",5840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787546","UTAHDWQ_WQX-BRI210719-4902000-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902000-0719-4-C/results/933787546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6612","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","10:10:00","MST","2021-08-10 17:10:00",NA,"6",6000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787552","UTAHDWQ_WQX-BRI210809-4902000-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902000-0810-4-C/results/933787552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6613","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","10:10:00","MST","2021-08-10 17:10:00",NA,"6.25",6250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787555","UTAHDWQ_WQX-BRI210809-4902000-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902000-0810-4-C/results/933787555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6614","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","10:05:00","MST","2021-09-21 17:05:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787577","UTAHDWQ_WQX-BRI210920-4902000-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902000-0921-4-C/results/933787577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6615","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","10:05:00","MST","2021-09-21 17:05:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787580","UTAHDWQ_WQX-BRI210920-4902000-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R S OF BEAR R CITY","River/Stream",NA,"41.5932700000",41.59327,"-112.1288300000",-112.12883,"OK","16010204","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5932700000","-112.1288300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902000-0921-4-C/results/933787580/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6616","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","12:10:00","MST","2021-04-05 19:10:00",NA,"2.98",2980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787587","UTAHDWQ_WQX-BRI210405-4902040-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902040-0405-4-C/results/933787587/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6617","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","12:10:00","MST","2021-04-05 19:10:00",NA,"2.55",2550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787590","UTAHDWQ_WQX-BRI210405-4902040-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902040-0405-4-C/results/933787590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6618","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","11:35:00","MST","2021-05-17 18:35:00",NA,"4.34",4340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787614","UTAHDWQ_WQX-BRI210503-4902040-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902040-0517-4-C/results/933787614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6619","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","11:35:00","MST","2021-05-17 18:35:00",NA,"3.75",3750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787617","UTAHDWQ_WQX-BRI210503-4902040-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902040-0517-4-C/results/933787617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6620","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","11:35:00","MST","2021-06-07 18:35:00",NA,"3.53",3530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787624","UTAHDWQ_WQX-BRI210607-4902040-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902040-0607-4-C/results/933787624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6621","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","11:35:00","MST","2021-06-07 18:35:00",NA,"2.63",2630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787627","UTAHDWQ_WQX-BRI210607-4902040-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902040-0607-4-C/results/933787627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6622","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","12:00:00","MST","2021-07-19 19:00:00",NA,"3.91",3910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787651","UTAHDWQ_WQX-BRI210719-4902040-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902040-0719-4-C/results/933787651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6623","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","12:00:00","MST","2021-07-19 19:00:00",NA,"3.55",3550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787654","UTAHDWQ_WQX-BRI210719-4902040-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902040-0719-4-C/results/933787654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6624","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","10:30:00","MST","2021-08-10 17:30:00",NA,"4.15",4150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787661","UTAHDWQ_WQX-BRI210809-4902040-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902040-0810-4-C/results/933787661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6625","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","10:30:00","MST","2021-08-10 17:30:00",NA,"4.94",4940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787664","UTAHDWQ_WQX-BRI210809-4902040-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902040-0810-4-C/results/933787664/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6626","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","10:40:00","MST","2021-09-21 17:40:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787687","UTAHDWQ_WQX-BRI210920-4902040-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902040-0921-4-C/results/933787687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6627","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","10:40:00","MST","2021-09-21 17:40:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787690","UTAHDWQ_WQX-BRI210920-4902040-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"41.6091000000",41.6091,"-112.1483900000",-112.14839,"OK","16010204","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6091000000","-112.1483900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902040-0921-4-C/results/933787690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6628","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","12:25:00","MST","2021-04-05 19:25:00",NA,"1.74",1740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787696","UTAHDWQ_WQX-BRI210405-4902050-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902050-0405-4-C/results/933787696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6629","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","12:25:00","MST","2021-04-05 19:25:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787699","UTAHDWQ_WQX-BRI210405-4902050-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902050-0405-4-C/results/933787699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6630","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","11:40:00","MST","2021-05-17 18:40:00",NA,"2.02",2020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787722","UTAHDWQ_WQX-BRI210503-4902050-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902050-0517-4-C/results/933787722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6631","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","11:40:00","MST","2021-05-17 18:40:00",NA,"2.22",2220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787725","UTAHDWQ_WQX-BRI210503-4902050-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902050-0517-4-C/results/933787725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6632","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","11:50:00","MST","2021-06-07 18:50:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787731","UTAHDWQ_WQX-BRI210607-4902050-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902050-0607-4-C/results/933787731/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6633","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","11:50:00","MST","2021-06-07 18:50:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787734","UTAHDWQ_WQX-BRI210607-4902050-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902050-0607-4-C/results/933787734/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6634","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","12:20:00","MST","2021-07-19 19:20:00",NA,"2.2",2200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787757","UTAHDWQ_WQX-BRI210719-4902050-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902050-0719-4-C/results/933787757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6635","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","12:20:00","MST","2021-07-19 19:20:00",NA,"2.24",2240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787760","UTAHDWQ_WQX-BRI210719-4902050-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902050-0719-4-C/results/933787760/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6636","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","10:50:00","MST","2021-08-10 17:50:00",NA,"3.29",3290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787766","UTAHDWQ_WQX-BRI210809-4902050-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902050-0810-4-C/results/933787766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6637","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","10:50:00","MST","2021-08-10 17:50:00",NA,"3.41",3410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787769","UTAHDWQ_WQX-BRI210809-4902050-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902050-0810-4-C/results/933787769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6638","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","11:00:00","MST","2021-09-21 18:00:00",NA,"0.93",930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787791","UTAHDWQ_WQX-BRI210920-4902050-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902050-0921-4-C/results/933787791/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6639","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:00:00","MST","2021-09-21 18:00:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787794","UTAHDWQ_WQX-BRI210920-4902050-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"41.6237700000",41.62377,"-112.1667200000",-112.16672,"OK","16010204","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6237700000","-112.1667200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902050-0921-4-C/results/933787794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6640","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","13:55:00","MST","2021-04-05 20:55:00",NA,"1.82",1820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787800","UTAHDWQ_WQX-BRI210405-4902700-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902700-0405-4-C/results/933787800/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6641","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","13:55:00","MST","2021-04-05 20:55:00",NA,"1.62",1620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787803","UTAHDWQ_WQX-BRI210405-4902700-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902700-0405-4-C/results/933787803/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6642","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","13:00:00","MST","2021-05-17 20:00:00",NA,"2.33",2330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787826","UTAHDWQ_WQX-BRI210503-4902700-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902700-0517-4-C/results/933787826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6643","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","13:00:00","MST","2021-05-17 20:00:00",NA,"2.21",2210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787829","UTAHDWQ_WQX-BRI210503-4902700-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902700-0517-4-C/results/933787829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6644","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","13:15:00","MST","2021-06-07 20:15:00",NA,"3",3000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787835","UTAHDWQ_WQX-BRI210607-4902700-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902700-0607-4-C/results/933787835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6645","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","13:15:00","MST","2021-06-07 20:15:00",NA,"2.63",2630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787838","UTAHDWQ_WQX-BRI210607-4902700-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902700-0607-4-C/results/933787838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6646","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:40:00","MST","2021-07-19 20:40:00",NA,"3.45",3450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787861","UTAHDWQ_WQX-BRI210719-4902700-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902700-0719-4-C/results/933787861/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6647","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","13:40:00","MST","2021-07-19 20:40:00",NA,"3.28",3280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787864","UTAHDWQ_WQX-BRI210719-4902700-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902700-0719-4-C/results/933787864/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6648","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","12:50:00","MST","2021-08-10 19:50:00",NA,"3.17",3170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787870","UTAHDWQ_WQX-BRI210809-4902700-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902700-0810-4-C/results/933787870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6649","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","12:50:00","MST","2021-08-10 19:50:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787873","UTAHDWQ_WQX-BRI210809-4902700-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902700-0810-4-C/results/933787873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6650","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","13:00:00","MST","2021-09-21 20:00:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787895","UTAHDWQ_WQX-BRI210920-4902700-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902700-0921-4-C/results/933787895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6651","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","13:00:00","MST","2021-09-21 20:00:00",NA,"2.7",2700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787898","UTAHDWQ_WQX-BRI210920-4902700-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R BL TREMONTON WWTP","River/Stream",NA,"41.6971500000",41.69715,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6971500000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902700-0921-4-C/results/933787898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6652","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","14:15:00","MST","2021-04-05 21:15:00",NA,"22.3",22300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787905","UTAHDWQ_WQX-BRI210405-4902710-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902710-0405-4-C/results/933787905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6653","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","14:15:00","MST","2021-04-05 21:15:00",NA,"22.3",22300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787908","UTAHDWQ_WQX-BRI210405-4902710-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902710-0405-4-C/results/933787908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6654","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","13:10:00","MST","2021-05-17 20:10:00",NA,"14",14000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787931","UTAHDWQ_WQX-BRI210503-4902710-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902710-0517-4-C/results/933787931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6655","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","13:10:00","MST","2021-05-17 20:10:00",NA,"11.3",11300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787934","UTAHDWQ_WQX-BRI210503-4902710-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902710-0517-4-C/results/933787934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6656","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","13:40:00","MST","2021-06-07 20:40:00",NA,"11.3",11300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787941","UTAHDWQ_WQX-BRI210607-4902710-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902710-0607-4-C/results/933787941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6657","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","13:40:00","MST","2021-06-07 20:40:00",NA,"9.4",9400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787944","UTAHDWQ_WQX-BRI210607-4902710-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902710-0607-4-C/results/933787944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6658","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:50:00","MST","2021-07-19 20:50:00",NA,"14.9",14900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787968","UTAHDWQ_WQX-BRI210719-4902710-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902710-0719-4-C/results/933787968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6659","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","13:50:00","MST","2021-07-19 20:50:00",NA,"10.5",10500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787971","UTAHDWQ_WQX-BRI210719-4902710-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902710-0719-4-C/results/933787971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6660","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","12:45:00","MST","2021-08-10 19:45:00",NA,"13.6",13600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787978","UTAHDWQ_WQX-BRI210809-4902710-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902710-0810-4-C/results/933787978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6661","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","12:45:00","MST","2021-08-10 19:45:00",NA,"10.3",10300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933787981","UTAHDWQ_WQX-BRI210809-4902710-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902710-0810-4-C/results/933787981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6662","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","12:50:00","MST","2021-09-21 19:50:00",NA,"10.3",10300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788004","UTAHDWQ_WQX-BRI210920-4902710-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902710-0921-4-C/results/933788004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6663","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","12:50:00","MST","2021-09-21 19:50:00",NA,"8.24",8240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788007","UTAHDWQ_WQX-BRI210920-4902710-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","TREMONTON WWTP","Facility Other",NA,"41.6984000000",41.6984,"-112.1616200000",-112.16162,"OK","16010204","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6984000000","-112.1616200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902710-0921-4-C/results/933788007/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6664","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","14:30:00","MST","2021-04-05 21:30:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788014","UTAHDWQ_WQX-BRI210405-4902720-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902720-0405-4-C/results/933788014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6665","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","14:30:00","MST","2021-04-05 21:30:00",NA,"0.825",825,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788017","UTAHDWQ_WQX-BRI210405-4902720-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902720-0405-4-C/results/933788017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6666","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","13:15:00","MST","2021-05-17 20:15:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788041","UTAHDWQ_WQX-BRI210503-4902720-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902720-0517-4-C/results/933788041/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6667","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","13:15:00","MST","2021-05-17 20:15:00",NA,"1.59",1590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788044","UTAHDWQ_WQX-BRI210503-4902720-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902720-0517-4-C/results/933788044/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6668","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","13:55:00","MST","2021-06-07 20:55:00",NA,"2.36",2360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788051","UTAHDWQ_WQX-BRI210607-4902720-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902720-0607-4-C/results/933788051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6669","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","13:55:00","MST","2021-06-07 20:55:00",NA,"2.75",2750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788054","UTAHDWQ_WQX-BRI210607-4902720-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902720-0607-4-C/results/933788054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6670","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:05:00","MST","2021-07-19 21:05:00",NA,"3.14",3140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788078","UTAHDWQ_WQX-BRI210719-4902720-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902720-0719-4-C/results/933788078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6671","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","14:05:00","MST","2021-07-19 21:05:00",NA,"2.86",2860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788081","UTAHDWQ_WQX-BRI210719-4902720-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902720-0719-4-C/results/933788081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6672","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","13:20:00","MST","2021-08-10 20:20:00",NA,"2.93",2930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788088","UTAHDWQ_WQX-BRI210809-4902720-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902720-0810-4-C/results/933788088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6673","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","13:20:00","MST","2021-08-10 20:20:00",NA,"3.29",3290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788091","UTAHDWQ_WQX-BRI210809-4902720-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902720-0810-4-C/results/933788091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6674","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","13:35:00","MST","2021-09-21 20:35:00",NA,"2.25",2250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788114","UTAHDWQ_WQX-BRI210920-4902720-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902720-0921-4-C/results/933788114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6675","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","13:35:00","MST","2021-09-21 20:35:00",NA,"2.21",2210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788117","UTAHDWQ_WQX-BRI210920-4902720-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD R AB TREMONTON WWTP","River/Stream",NA,"41.7117900000",41.71179,"-112.1609800000",-112.16098,"OK","16010204","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7117900000","-112.1609800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902720-0921-4-C/results/933788117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6676","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","15:05:00","MST","2021-04-05 22:05:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788123","UTAHDWQ_WQX-BRI210405-4902900-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902900-0405-4-C/results/933788123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6677","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","15:05:00","MST","2021-04-05 22:05:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788126","UTAHDWQ_WQX-BRI210405-4902900-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902900-0405-4-C/results/933788126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6678","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","14:00:00","MST","2021-05-17 21:00:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788149","UTAHDWQ_WQX-BRI210503-4902900-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902900-0517-4-C/results/933788149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6679","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","14:00:00","MST","2021-05-17 21:00:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788152","UTAHDWQ_WQX-BRI210503-4902900-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902900-0517-4-C/results/933788152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6680","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","14:55:00","MST","2021-06-07 21:55:00",NA,"0.563",563,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788158","UTAHDWQ_WQX-BRI210607-4902900-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902900-0607-4-C/results/933788158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6681","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","14:55:00","MST","2021-06-07 21:55:00",NA,"0.363",363,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788161","UTAHDWQ_WQX-BRI210607-4902900-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902900-0607-4-C/results/933788161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6682","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:55:00","MST","2021-07-19 21:55:00",NA,"0.546",546,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788184","UTAHDWQ_WQX-BRI210719-4902900-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902900-0719-4-C/results/933788184/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6683","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","14:55:00","MST","2021-07-19 21:55:00",NA,"0.748",748,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788187","UTAHDWQ_WQX-BRI210719-4902900-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902900-0719-4-C/results/933788187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6684","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","13:55:00","MST","2021-08-10 20:55:00",NA,"0.573",573,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788193","UTAHDWQ_WQX-BRI210809-4902900-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902900-0810-4-C/results/933788193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6685","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","13:55:00","MST","2021-08-10 20:55:00",NA,"0.87",870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788196","UTAHDWQ_WQX-BRI210809-4902900-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902900-0810-4-C/results/933788196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6686","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","14:35:00","MST","2021-09-21 21:35:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788218","UTAHDWQ_WQX-BRI210920-4902900-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902900-0921-4-C/results/933788218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6687","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","14:35:00","MST","2021-09-21 21:35:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788221","UTAHDWQ_WQX-BRI210920-4902900-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"41.8384200000",41.83842,"-112.1473700000",-112.14737,"OK","16010204","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8384200000","-112.1473700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902900-0921-4-C/results/933788221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6688","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","15:50:00","MST","2021-04-05 22:50:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788227","UTAHDWQ_WQX-BRI210405-4902940-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902940-0405-4-C/results/933788227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6689","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","15:50:00","MST","2021-04-05 22:50:00",NA,"0.385",385,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788230","UTAHDWQ_WQX-BRI210405-4902940-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902940-0405-4-C/results/933788230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6690","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","14:30:00","MST","2021-05-17 21:30:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788253","UTAHDWQ_WQX-BRI210503-4902940-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902940-0517-4-C/results/933788253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6691","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","14:30:00","MST","2021-05-17 21:30:00",NA,"0.521",521,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788256","UTAHDWQ_WQX-BRI210503-4902940-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902940-0517-4-C/results/933788256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6692","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","15:40:00","MST","2021-06-07 22:40:00",NA,"0.572",572,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788262","UTAHDWQ_WQX-BRI210607-4902940-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902940-0607-4-C/results/933788262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6693","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","15:40:00","MST","2021-06-07 22:40:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788265","UTAHDWQ_WQX-BRI210607-4902940-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902940-0607-4-C/results/933788265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6694","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","15:35:00","MST","2021-07-19 22:35:00",NA,"0.502",502,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788288","UTAHDWQ_WQX-BRI210719-4902940-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902940-0719-4-C/results/933788288/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6695","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","15:35:00","MST","2021-07-19 22:35:00",NA,"0.575",575,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788291","UTAHDWQ_WQX-BRI210719-4902940-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902940-0719-4-C/results/933788291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6696","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","14:45:00","MST","2021-08-10 21:45:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788297","UTAHDWQ_WQX-BRI210809-4902940-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902940-0810-4-C/results/933788297/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6697","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","14:45:00","MST","2021-08-10 21:45:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788300","UTAHDWQ_WQX-BRI210809-4902940-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902940-0810-4-C/results/933788300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6698","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","15:20:00","MST","2021-09-21 22:20:00",NA,"0.325",325,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788322","UTAHDWQ_WQX-BRI210920-4902940-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902940-0921-4-C/results/933788322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6699","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","15:20:00","MST","2021-09-21 22:20:00",NA,"0.752",752,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788325","UTAHDWQ_WQX-BRI210920-4902940-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902940-0921-4-C/results/933788325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6700","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","16:00:00","MST","2021-04-05 23:00:00",NA,"0.533",533,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788331","UTAHDWQ_WQX-BRI210405-4902941-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902941-0405-4-C/results/933788331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6701","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","16:00:00","MST","2021-04-05 23:00:00",NA,"0.434",434,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788334","UTAHDWQ_WQX-BRI210405-4902941-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902941-0405-4-C/results/933788334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6702","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","14:40:00","MST","2021-05-17 21:40:00",NA,"0.454",454,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788356","UTAHDWQ_WQX-BRI210503-4902941-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902941-0517-4-C/results/933788356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6703","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","14:40:00","MST","2021-05-17 21:40:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788359","UTAHDWQ_WQX-BRI210503-4902941-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902941-0517-4-C/results/933788359/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6704","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","15:50:00","MST","2021-06-07 22:50:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788365","UTAHDWQ_WQX-BRI210607-4902941-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902941-0607-4-C/results/933788365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6705","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","15:50:00","MST","2021-06-07 22:50:00",NA,"0.385",385,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788368","UTAHDWQ_WQX-BRI210607-4902941-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902941-0607-4-C/results/933788368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6706","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","15:40:00","MST","2021-07-19 22:40:00",NA,"0.492",492,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788391","UTAHDWQ_WQX-BRI210719-4902941-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902941-0719-4-C/results/933788391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6707","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","15:40:00","MST","2021-07-19 22:40:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788394","UTAHDWQ_WQX-BRI210719-4902941-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902941-0719-4-C/results/933788394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6708","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","14:50:00","MST","2021-08-10 21:50:00",NA,"0.403",403,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788400","UTAHDWQ_WQX-BRI210809-4902941-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902941-0810-4-C/results/933788400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6709","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","14:50:00","MST","2021-08-10 21:50:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788403","UTAHDWQ_WQX-BRI210809-4902941-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902941-0810-4-C/results/933788403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6710","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","15:25:00","MST","2021-09-21 22:25:00",NA,"0.388",388,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788425","UTAHDWQ_WQX-BRI210920-4902941-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902941-0921-4-C/results/933788425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6711","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","15:25:00","MST","2021-09-21 22:25:00",NA,"0.747",747,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788428","UTAHDWQ_WQX-BRI210920-4902941-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","41.9763100000",41.97631,"-112.2160700000",-112.21607,"OK","16010204","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9763100000","-112.2160700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902941-0921-4-C/results/933788428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6712","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:40:00","MST","2021-04-06 21:40:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788434","UTAHDWQ_WQX-BRI210405-4903030-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903030-0406-4-C/results/933788434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6713","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:40:00","MST","2021-04-06 21:40:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788437","UTAHDWQ_WQX-BRI210405-4903030-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903030-0406-4-C/results/933788437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6714","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","14:10:00","MST","2021-05-18 21:10:00",NA,"0.601",601,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788460","UTAHDWQ_WQX-BRI210503-4903030-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903030-0518-4-C/results/933788460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6715","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","14:10:00","MST","2021-05-18 21:10:00",NA,"0.637",637,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788463","UTAHDWQ_WQX-BRI210503-4903030-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"41.8668700000",41.86687,"-111.9810000000",-111.981,"OK","16010202","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8668700000","-111.9810000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903030-0518-4-C/results/933788463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6716","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","15:00:00","MST","2021-04-06 22:00:00",NA,"4.07",4070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788469","UTAHDWQ_WQX-BRI210405-4903060-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903060-0406-4-C/results/933788469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6717","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","15:00:00","MST","2021-04-06 22:00:00",NA,"4.57",4570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788472","UTAHDWQ_WQX-BRI210405-4903060-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903060-0406-4-C/results/933788472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6718","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","14:20:00","MST","2021-05-18 21:20:00",NA,"3.34",3340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788495","UTAHDWQ_WQX-BRI210503-4903060-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903060-0518-4-C/results/933788495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6719","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","14:20:00","MST","2021-05-18 21:20:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788498","UTAHDWQ_WQX-BRI210503-4903060-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903060-0518-4-C/results/933788498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6720","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","13:30:00","MST","2021-06-22 20:30:00",NA,"4.39",4390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788504","UTAHDWQ_WQX-BRI210621-4903060-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903060-0622-4-C/results/933788504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6721","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","13:30:00","MST","2021-06-22 20:30:00",NA,"4.85",4850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788507","UTAHDWQ_WQX-BRI210621-4903060-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903060-0622-4-C/results/933788507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6722","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","12:40:00","MST","2021-08-11 19:40:00",NA,"4.12",4120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788530","UTAHDWQ_WQX-BRI210809-4903060-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903060-0811-4-C/results/933788530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6723","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","12:40:00","MST","2021-08-11 19:40:00",NA,"4.05",4050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788533","UTAHDWQ_WQX-BRI210809-4903060-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903060-0811-4-C/results/933788533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6724","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","10:20:00","MST","2021-08-23 17:20:00",NA,"2.93",2930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788556","UTAHDWQ_WQX-BRI210823-4903060-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903060-0823-4-C/results/933788556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6725","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","10:20:00","MST","2021-08-23 17:20:00",NA,"3.06",3060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788559","UTAHDWQ_WQX-BRI210823-4903060-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903060-0823-4-C/results/933788559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6726","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:51:00","MST","2021-04-06 21:51:00",NA,"5.19",5190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788582","UTAHDWQ_WQX-BRI210405-4903080-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903080-0406-4-C/results/933788582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6727","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:51:00","MST","2021-04-06 21:51:00",NA,"5.21",5210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788585","UTAHDWQ_WQX-BRI210405-4903080-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903080-0406-4-C/results/933788585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6728","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","14:15:00","MST","2021-05-18 21:15:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788608","UTAHDWQ_WQX-BRI210503-4903080-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903080-0518-4-C/results/933788608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6729","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","14:15:00","MST","2021-05-18 21:15:00",NA,"3.49",3490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788611","UTAHDWQ_WQX-BRI210503-4903080-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903080-0518-4-C/results/933788611/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6730","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","10:55:00","MST","2021-08-23 17:55:00",NA,"3.72",3720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788617","UTAHDWQ_WQX-BRI210823-4903080-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903080-0823-4-C/results/933788617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6731","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","10:55:00","MST","2021-08-23 17:55:00",NA,"4",4000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788620","UTAHDWQ_WQX-BRI210823-4903080-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903080-0823-4-C/results/933788620/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6732","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","11:05:00","MST","2021-06-15 18:05:00",NA,"5.88",5880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788647","UTAHDWQ_WQX-LAKES210614-4903100-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CREEK AB CUTLER RESERVOIR","River/Stream",NA,"41.8388200000",41.83882,"-111.9718900000",-111.97189,"OK","16010202","UTAHDWQ_WQX-4903100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8388200000","-111.9718900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903100-0615-4-C/results/933788647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6733","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","11:05:00","MST","2021-06-15 18:05:00",NA,"5.92",5920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788651","UTAHDWQ_WQX-LAKES210614-4903100-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON CREEK AB CUTLER RESERVOIR","River/Stream",NA,"41.8388200000",41.83882,"-111.9718900000",-111.97189,"OK","16010202","UTAHDWQ_WQX-4903100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8388200000","-111.9718900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903100-0615-4-C/results/933788651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6734","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","12:05:00","MST","2021-06-14 19:05:00",NA,"0.457",457,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788678","UTAHDWQ_WQX-LAKES210614-4903130-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES AB DAM 01","Lake",NA,"41.8971500000",41.89715,"-111.9743900000",-111.97439,"OK","16010202","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8971500000","-111.9743900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-2-C/results/933788678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6735","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","12:05:00","MST","2021-06-14 19:05:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788682","UTAHDWQ_WQX-LAKES210614-4903130-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES AB DAM 01","Lake",NA,"41.8971500000",41.89715,"-111.9743900000",-111.97439,"OK","16010202","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8971500000","-111.9743900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-2-C/results/933788682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6736","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","12:10:00","MST","2021-06-14 19:10:00",NA,"0.422",422,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","6.02",6.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788687","UTAHDWQ_WQX-LAKES210614-4903130-0614-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES AB DAM 01","Lake",NA,"41.8971500000",41.89715,"-111.9743900000",-111.97439,"OK","16010202","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8971500000","-111.9743900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-23-C/results/933788687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6737","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","12:10:00","MST","2021-06-14 19:10:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","6.02",6.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788691","UTAHDWQ_WQX-LAKES210614-4903130-0614-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES AB DAM 01","Lake",NA,"41.8971500000",41.89715,"-111.9743900000",-111.97439,"OK","16010202","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8971500000","-111.9743900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-23-C/results/933788691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6738","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","12:15:00","MST","2021-06-14 19:15:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","8.96",8.96,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788696","UTAHDWQ_WQX-LAKES210614-4903130-0614-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES AB DAM 01","Lake",NA,"41.8971500000",41.89715,"-111.9743900000",-111.97439,"OK","16010202","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8971500000","-111.9743900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-27-C/results/933788696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6739","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","12:15:00","MST","2021-06-14 19:15:00",NA,"0.413",413,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","8.96",8.96,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788700","UTAHDWQ_WQX-LAKES210614-4903130-0614-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES AB DAM 01","Lake",NA,"41.8971500000",41.89715,"-111.9743900000",-111.97439,"OK","16010202","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8971500000","-111.9743900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-27-C/results/933788700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6740","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","12:20:00","MST","2021-06-14 19:20:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","12.02",12.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788705","UTAHDWQ_WQX-LAKES210614-4903130-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES AB DAM 01","Lake",NA,"41.8971500000",41.89715,"-111.9743900000",-111.97439,"OK","16010202","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8971500000","-111.9743900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-29-C/results/933788705/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6741","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","12:20:00","MST","2021-06-14 19:20:00",NA,"0.949",949,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","12.02",12.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788709","UTAHDWQ_WQX-LAKES210614-4903130-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES AB DAM 01","Lake",NA,"41.8971500000",41.89715,"-111.9743900000",-111.97439,"OK","16010202","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8971500000","-111.9743900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-29-C/results/933788709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6742","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:45:00","MST","2021-06-14 18:45:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788736","UTAHDWQ_WQX-LAKES210614-4903140-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES MIDLAKE 02","Lake",NA,"41.9066000000",41.9066,"-111.9830100000",-111.98301,"OK","16010202","UTAHDWQ_WQX-4903140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9066000000","-111.9830100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903140-0614-2-C/results/933788736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6743","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:45:00","MST","2021-06-14 18:45:00",NA,"0.528",528,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788740","UTAHDWQ_WQX-LAKES210614-4903140-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES MIDLAKE 02","Lake",NA,"41.9066000000",41.9066,"-111.9830100000",-111.98301,"OK","16010202","UTAHDWQ_WQX-4903140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9066000000","-111.9830100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903140-0614-2-C/results/933788740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6744","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:50:00","MST","2021-06-14 18:50:00",NA,"0.47",470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","8.94",8.94,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788745","UTAHDWQ_WQX-LAKES210614-4903140-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES MIDLAKE 02","Lake",NA,"41.9066000000",41.9066,"-111.9830100000",-111.98301,"OK","16010202","UTAHDWQ_WQX-4903140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9066000000","-111.9830100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903140-0614-29-C/results/933788745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6745","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:50:00","MST","2021-06-14 18:50:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","8.94",8.94,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788749","UTAHDWQ_WQX-LAKES210614-4903140-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES MIDLAKE 02","Lake",NA,"41.9066000000",41.9066,"-111.9830100000",-111.98301,"OK","16010202","UTAHDWQ_WQX-4903140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9066000000","-111.9830100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903140-0614-29-C/results/933788749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6746","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:30:00","MST","2021-06-14 18:30:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788759","UTAHDWQ_WQX-LAKES210614-4903150-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES UPPER LAKE 03","Lake",NA,"41.9121500000",41.91215,"-111.9930100000",-111.99301,"OK","16010202","UTAHDWQ_WQX-4903150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9121500000","-111.9930100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903150-0614-2-C/results/933788759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6747","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:30:00","MST","2021-06-14 18:30:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788763","UTAHDWQ_WQX-LAKES210614-4903150-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES UPPER LAKE 03","Lake",NA,"41.9121500000",41.91215,"-111.9930100000",-111.99301,"OK","16010202","UTAHDWQ_WQX-4903150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9121500000","-111.9930100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903150-0614-2-C/results/933788763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6748","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:35:00","MST","2021-06-14 18:35:00",NA,"0.45",450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788768","UTAHDWQ_WQX-LAKES210614-4903150-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES UPPER LAKE 03","Lake",NA,"41.9121500000",41.91215,"-111.9930100000",-111.99301,"OK","16010202","UTAHDWQ_WQX-4903150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9121500000","-111.9930100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903150-0614-29-C/results/933788768/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6749","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:35:00","MST","2021-06-14 18:35:00",NA,"0.482",482,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788772","UTAHDWQ_WQX-LAKES210614-4903150-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES UPPER LAKE 03","Lake",NA,"41.9121500000",41.91215,"-111.9930100000",-111.99301,"OK","16010202","UTAHDWQ_WQX-4903150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9121500000","-111.9930100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903150-0614-29-C/results/933788772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6750","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","15:20:00","MST","2021-04-06 22:20:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788778","UTAHDWQ_WQX-BRI210405-4903180-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903180-0406-4-C/results/933788778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6751","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","15:20:00","MST","2021-04-06 22:20:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788781","UTAHDWQ_WQX-BRI210405-4903180-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903180-0406-4-C/results/933788781/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6752","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","14:35:00","MST","2021-05-18 21:35:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788804","UTAHDWQ_WQX-BRI210503-4903180-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903180-0518-4-C/results/933788804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6753","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","14:35:00","MST","2021-05-18 21:35:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788807","UTAHDWQ_WQX-BRI210503-4903180-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903180-0518-4-C/results/933788807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6754","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","14:45:00","MST","2021-06-08 21:45:00",NA,"1.5",1500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788813","UTAHDWQ_WQX-BRI210607-4903180-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903180-0608-4-C/results/933788813/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6755","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","14:45:00","MST","2021-06-08 21:45:00",NA,"1.71",1710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788816","UTAHDWQ_WQX-BRI210607-4903180-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903180-0608-4-C/results/933788816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6756","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:35:00","MST","2021-07-20 20:35:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788839","UTAHDWQ_WQX-BRI210719-4903180-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903180-0720-4-C/results/933788839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6757","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","13:35:00","MST","2021-07-20 20:35:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788842","UTAHDWQ_WQX-BRI210719-4903180-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903180-0720-4-C/results/933788842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6758","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","12:55:00","MST","2021-08-11 19:55:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788848","UTAHDWQ_WQX-BRI210809-4903180-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903180-0811-4-C/results/933788848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6759","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","12:55:00","MST","2021-08-11 19:55:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788851","UTAHDWQ_WQX-BRI210809-4903180-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903180-0811-4-C/results/933788851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6760","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","10:40:00","MST","2021-08-23 17:40:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788874","UTAHDWQ_WQX-BRI210823-4903180-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903180-0823-4-C/results/933788874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6761","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","10:40:00","MST","2021-08-23 17:40:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788877","UTAHDWQ_WQX-BRI210823-4903180-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903180-0823-4-C/results/933788877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6762","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","13:10:00","MST","2021-09-22 20:10:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788900","UTAHDWQ_WQX-BRI210920-4903180-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903180-0922-4-C/results/933788900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6763","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","13:10:00","MST","2021-09-22 20:10:00",NA,"1.45",1450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788903","UTAHDWQ_WQX-BRI210920-4903180-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"41.9075900000",41.90759,"-112.0314500000",-112.03145,"OK","16010202","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9075900000","-112.0314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903180-0922-4-C/results/933788903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6764","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","15:35:00","MST","2021-04-06 22:35:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788909","UTAHDWQ_WQX-BRI210405-4903190-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903190-0406-4-C/results/933788909/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6765","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","15:35:00","MST","2021-04-06 22:35:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788912","UTAHDWQ_WQX-BRI210405-4903190-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903190-0406-4-C/results/933788912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6766","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","14:45:00","MST","2021-05-18 21:45:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788935","UTAHDWQ_WQX-BRI210503-4903190-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903190-0518-4-C/results/933788935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6767","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","14:45:00","MST","2021-05-18 21:45:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788938","UTAHDWQ_WQX-BRI210503-4903190-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903190-0518-4-C/results/933788938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6768","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","14:55:00","MST","2021-06-08 21:55:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788944","UTAHDWQ_WQX-BRI210607-4903190-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903190-0608-4-C/results/933788944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6769","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","14:55:00","MST","2021-06-08 21:55:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788947","UTAHDWQ_WQX-BRI210607-4903190-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903190-0608-4-C/results/933788947/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6770","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","10:30:00","MST","2021-06-14 17:30:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788974","UTAHDWQ_WQX-LAKES210614-4903190-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903190-0614-4-C/results/933788974/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6771","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","10:30:00","MST","2021-06-14 17:30:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933788978","UTAHDWQ_WQX-LAKES210614-4903190-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903190-0614-4-C/results/933788978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6772","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:45:00","MST","2021-07-20 20:45:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789001","UTAHDWQ_WQX-BRI210719-4903190-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903190-0720-4-C/results/933789001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6773","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","13:45:00","MST","2021-07-20 20:45:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789004","UTAHDWQ_WQX-BRI210719-4903190-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903190-0720-4-C/results/933789004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6774","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","13:10:00","MST","2021-08-11 20:10:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789010","UTAHDWQ_WQX-BRI210809-4903190-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903190-0811-4-C/results/933789010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6775","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","13:10:00","MST","2021-08-11 20:10:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789013","UTAHDWQ_WQX-BRI210809-4903190-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903190-0811-4-C/results/933789013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6776","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","13:25:00","MST","2021-09-22 20:25:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789036","UTAHDWQ_WQX-BRI210920-4903190-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903190-0922-4-C/results/933789036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6777","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","13:25:00","MST","2021-09-22 20:25:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789039","UTAHDWQ_WQX-BRI210920-4903190-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903190-0922-4-C/results/933789039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6778","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:40:00","MST","2021-04-06 21:40:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789045","UTAHDWQ_WQX-BRI210405-4903191-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903191-0406-4-C/results/933789045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6779","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:40:00","MST","2021-04-06 21:40:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789048","UTAHDWQ_WQX-BRI210405-4903191-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903191-0406-4-C/results/933789048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6780","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","14:50:00","MST","2021-05-18 21:50:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789071","UTAHDWQ_WQX-BRI210503-4903191-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903191-0518-4-C/results/933789071/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6781","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","14:50:00","MST","2021-05-18 21:50:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789074","UTAHDWQ_WQX-BRI210503-4903191-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903191-0518-4-C/results/933789074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6782","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","15:00:00","MST","2021-06-08 22:00:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789080","UTAHDWQ_WQX-BRI210607-4903191-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903191-0608-4-C/results/933789080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6783","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","15:00:00","MST","2021-06-08 22:00:00",NA,"1.71",1710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789083","UTAHDWQ_WQX-BRI210607-4903191-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903191-0608-4-C/results/933789083/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6784","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:50:00","MST","2021-07-20 20:50:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789106","UTAHDWQ_WQX-BRI210719-4903191-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903191-0720-4-C/results/933789106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6785","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","13:50:00","MST","2021-07-20 20:50:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789109","UTAHDWQ_WQX-BRI210719-4903191-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903191-0720-4-C/results/933789109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6786","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","13:15:00","MST","2021-08-11 20:15:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789115","UTAHDWQ_WQX-BRI210809-4903191-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903191-0811-4-C/results/933789115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6787","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","13:15:00","MST","2021-08-11 20:15:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789118","UTAHDWQ_WQX-BRI210809-4903191-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903191-0811-4-C/results/933789118/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6788","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","13:30:00","MST","2021-09-22 20:30:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789141","UTAHDWQ_WQX-BRI210920-4903191-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903191-0922-4-C/results/933789141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6789","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","13:30:00","MST","2021-09-22 20:30:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789144","UTAHDWQ_WQX-BRI210920-4903191-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903191-0922-4-C/results/933789144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6790","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","16:00:00","MST","2021-04-06 23:00:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789150","UTAHDWQ_WQX-BRI210405-4903200-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903200-0406-4-C/results/933789150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6791","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","16:00:00","MST","2021-04-06 23:00:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789153","UTAHDWQ_WQX-BRI210405-4903200-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903200-0406-4-C/results/933789153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6792","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","15:00:00","MST","2021-05-18 22:00:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789176","UTAHDWQ_WQX-BRI210503-4903200-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903200-0518-4-C/results/933789176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6793","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","15:00:00","MST","2021-05-18 22:00:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789179","UTAHDWQ_WQX-BRI210503-4903200-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903200-0518-4-C/results/933789179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6794","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","15:10:00","MST","2021-06-08 22:10:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789185","UTAHDWQ_WQX-BRI210607-4903200-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903200-0608-4-C/results/933789185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6795","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","15:10:00","MST","2021-06-08 22:10:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789188","UTAHDWQ_WQX-BRI210607-4903200-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903200-0608-4-C/results/933789188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6796","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","14:00:00","MST","2021-07-20 21:00:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789211","UTAHDWQ_WQX-BRI210719-4903200-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903200-0720-4-C/results/933789211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6797","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","14:00:00","MST","2021-07-20 21:00:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789214","UTAHDWQ_WQX-BRI210719-4903200-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903200-0720-4-C/results/933789214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6798","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","13:25:00","MST","2021-08-11 20:25:00",NA,"1.45",1450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789220","UTAHDWQ_WQX-BRI210809-4903200-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903200-0811-4-C/results/933789220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6799","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","13:25:00","MST","2021-08-11 20:25:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789223","UTAHDWQ_WQX-BRI210809-4903200-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903200-0811-4-C/results/933789223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6800","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","13:40:00","MST","2021-09-22 20:40:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789246","UTAHDWQ_WQX-BRI210920-4903200-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903200-0922-4-C/results/933789246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6801","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","13:40:00","MST","2021-09-22 20:40:00",NA,"1.83",1830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789249","UTAHDWQ_WQX-BRI210920-4903200-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"41.9290600000",41.92906,"-112.0446300000",-112.04463,"OK","16010202","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9290600000","-112.0446300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903200-0922-4-C/results/933789249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6802","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","10:40:00","MST","2021-04-06 17:40:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789255","UTAHDWQ_WQX-BRI210405-4903260-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903260-0406-4-C/results/933789255/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6803","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","10:40:00","MST","2021-04-06 17:40:00",NA,"0.973",973,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789258","UTAHDWQ_WQX-BRI210405-4903260-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903260-0406-4-C/results/933789258/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6804","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","11:00:00","MST","2021-05-18 18:00:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789281","UTAHDWQ_WQX-BRI210503-4903260-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903260-0518-4-C/results/933789281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6805","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","11:00:00","MST","2021-05-18 18:00:00",NA,"0.753",753,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789284","UTAHDWQ_WQX-BRI210503-4903260-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903260-0518-4-C/results/933789284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6806","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","10:55:00","MST","2021-06-08 17:55:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789290","UTAHDWQ_WQX-BRI210607-4903260-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903260-0608-4-C/results/933789290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6807","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","10:55:00","MST","2021-06-08 17:55:00",NA,"0.906",906,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789293","UTAHDWQ_WQX-BRI210607-4903260-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903260-0608-4-C/results/933789293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6808","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","12:25:00","MST","2021-06-15 19:25:00",NA,"0.538",538,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789320","UTAHDWQ_WQX-LAKES210614-4903260-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903260-0615-4-C/results/933789320/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6809","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","12:25:00","MST","2021-06-15 19:25:00",NA,"0.534",534,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789324","UTAHDWQ_WQX-LAKES210614-4903260-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903260-0615-4-C/results/933789324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6810","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","11:15:00","MST","2021-06-22 18:15:00",NA,"0.569",569,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789347","UTAHDWQ_WQX-BRI210621-4903260-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903260-0622-4-C/results/933789347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6811","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","11:15:00","MST","2021-06-22 18:15:00",NA,"0.686",686,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789350","UTAHDWQ_WQX-BRI210621-4903260-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903260-0622-4-C/results/933789350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6812","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","10:10:00","MST","2021-07-20 17:10:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789373","UTAHDWQ_WQX-BRI210719-4903260-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903260-0720-4-C/results/933789373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6813","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","10:10:00","MST","2021-07-20 17:10:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789376","UTAHDWQ_WQX-BRI210719-4903260-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903260-0720-4-C/results/933789376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6814","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","09:30:00","MST","2021-08-11 16:30:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789382","UTAHDWQ_WQX-BRI210809-4903260-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903260-0811-4-C/results/933789382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6815","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","09:30:00","MST","2021-08-11 16:30:00",NA,"0.577",577,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789385","UTAHDWQ_WQX-BRI210809-4903260-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903260-0811-4-C/results/933789385/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6816","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:25:00","MST","2021-09-14 20:25:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789412","UTAHDWQ_WQX-LAKES210913-4903260-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4903260-0914-4-C/results/933789412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6817","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","13:25:00","MST","2021-09-14 20:25:00",NA,"0.44",440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789416","UTAHDWQ_WQX-LAKES210913-4903260-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4903260-0914-4-C/results/933789416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6818","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","10:20:00","MST","2021-09-22 17:20:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789439","UTAHDWQ_WQX-BRI210920-4903260-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903260-0922-4-C/results/933789439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6819","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","10:20:00","MST","2021-09-22 17:20:00",NA,"0.531",531,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789442","UTAHDWQ_WQX-BRI210920-4903260-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903260-0922-4-C/results/933789442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6820","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","13:05:00","MST","2021-04-06 20:05:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789448","UTAHDWQ_WQX-BRI210405-4903400-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903400-0406-4-C/results/933789448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6821","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","13:05:00","MST","2021-04-06 20:05:00",NA,"0.899",899,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789451","UTAHDWQ_WQX-BRI210405-4903400-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903400-0406-4-C/results/933789451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6822","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","13:30:00","MST","2021-05-18 20:30:00",NA,"0.7",700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789474","UTAHDWQ_WQX-BRI210503-4903400-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903400-0518-4-C/results/933789474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6823","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","13:30:00","MST","2021-05-18 20:30:00",NA,"0.764",764,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789477","UTAHDWQ_WQX-BRI210503-4903400-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903400-0518-4-C/results/933789477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6824","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","13:05:00","MST","2021-06-08 20:05:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789483","UTAHDWQ_WQX-BRI210607-4903400-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903400-0608-4-C/results/933789483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6825","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","13:05:00","MST","2021-06-08 20:05:00",NA,"0.887",887,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789486","UTAHDWQ_WQX-BRI210607-4903400-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903400-0608-4-C/results/933789486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6826","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","12:00:00","MST","2021-07-20 19:00:00",NA,"0.35",350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789509","UTAHDWQ_WQX-BRI210719-4903400-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903400-0720-4-C/results/933789509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6827","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","12:00:00","MST","2021-07-20 19:00:00",NA,"0.473",473,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789512","UTAHDWQ_WQX-BRI210719-4903400-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903400-0720-4-C/results/933789512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6828","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","11:25:00","MST","2021-08-11 18:25:00",NA,"0.44",440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789518","UTAHDWQ_WQX-BRI210809-4903400-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903400-0811-4-C/results/933789518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6829","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","11:25:00","MST","2021-08-11 18:25:00",NA,"0.774",774,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789521","UTAHDWQ_WQX-BRI210809-4903400-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903400-0811-4-C/results/933789521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6830","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","11:45:00","MST","2021-09-22 18:45:00",NA,"0.491",491,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789544","UTAHDWQ_WQX-BRI210920-4903400-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903400-0922-4-C/results/933789544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6831","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","11:45:00","MST","2021-09-22 18:45:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789547","UTAHDWQ_WQX-BRI210920-4903400-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"41.8363200000",41.83632,"-111.8935600000",-111.89356,"OK","16010202","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363200000","-111.8935600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903400-0922-4-C/results/933789547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6832","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:43:00","MST","2021-04-06 19:43:00",NA,"0.665",665,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789553","UTAHDWQ_WQX-BRI210405-4903500-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903500-0406-4-C/results/933789553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6833","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","12:43:00","MST","2021-04-06 19:43:00",NA,"0.651",651,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789556","UTAHDWQ_WQX-BRI210405-4903500-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903500-0406-4-C/results/933789556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6834","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","13:26:00","MST","2021-05-18 20:26:00",NA,"0.52",520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789579","UTAHDWQ_WQX-BRI210503-4903500-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903500-0518-4-C/results/933789579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6835","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","13:26:00","MST","2021-05-18 20:26:00",NA,"0.569",569,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789582","UTAHDWQ_WQX-BRI210503-4903500-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903500-0518-4-C/results/933789582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6836","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","12:00:00","MST","2021-06-22 19:00:00",NA,"1.72",1720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789588","UTAHDWQ_WQX-BRI210621-4903500-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903500-0622-4-C/results/933789588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6837","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","12:00:00","MST","2021-06-22 19:00:00",NA,"1.68",1680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789591","UTAHDWQ_WQX-BRI210621-4903500-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903500-0622-4-C/results/933789591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6838","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","11:35:00","MST","2021-08-23 18:35:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789614","UTAHDWQ_WQX-BRI210823-4903500-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903500-0823-4-C/results/933789614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6839","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","11:35:00","MST","2021-08-23 18:35:00",NA,"2.15",2150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789617","UTAHDWQ_WQX-BRI210823-4903500-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903500-0823-4-C/results/933789617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6840","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:50:00","MST","2021-04-06 19:50:00",NA,"0.643",643,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789640","UTAHDWQ_WQX-BRI210405-4903501-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903501-0406-4-C/results/933789640/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6841","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","12:50:00","MST","2021-04-06 19:50:00",NA,"0.654",654,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789643","UTAHDWQ_WQX-BRI210405-4903501-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903501-0406-4-C/results/933789643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6842","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","13:25:00","MST","2021-05-18 20:25:00",NA,"0.535",535,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789666","UTAHDWQ_WQX-BRI210503-4903501-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903501-0518-4-C/results/933789666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6843","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","13:25:00","MST","2021-05-18 20:25:00",NA,"0.538",538,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789669","UTAHDWQ_WQX-BRI210503-4903501-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903501-0518-4-C/results/933789669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6844","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","12:15:00","MST","2021-06-22 19:15:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789675","UTAHDWQ_WQX-BRI210621-4903501-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903501-0622-4-C/results/933789675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6845","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","12:15:00","MST","2021-06-22 19:15:00",NA,"1.75",1750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789678","UTAHDWQ_WQX-BRI210621-4903501-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903501-0622-4-C/results/933789678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6846","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","11:40:00","MST","2021-08-23 18:40:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789701","UTAHDWQ_WQX-BRI210823-4903501-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903501-0823-4-C/results/933789701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6847","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","11:40:00","MST","2021-08-23 18:40:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789704","UTAHDWQ_WQX-BRI210823-4903501-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903501-0823-4-C/results/933789704/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6848","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:30:00","MST","2021-04-06 19:30:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789727","UTAHDWQ_WQX-BRI210405-4903504-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903504-0406-4-C/results/933789727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6849","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","12:30:00","MST","2021-04-06 19:30:00",NA,"0.335",335,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789730","UTAHDWQ_WQX-BRI210405-4903504-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903504-0406-4-C/results/933789730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6850","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","13:10:00","MST","2021-05-18 20:10:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789753","UTAHDWQ_WQX-BRI210503-4903504-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903504-0518-4-C/results/933789753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6851","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","13:10:00","MST","2021-05-18 20:10:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789756","UTAHDWQ_WQX-BRI210503-4903504-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903504-0518-4-C/results/933789756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6852","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","11:55:00","MST","2021-08-23 18:55:00",NA,"0.128",128,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789762","UTAHDWQ_WQX-BRI210823-4903504-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903504-0823-4-C/results/933789762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6853","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","11:55:00","MST","2021-08-23 18:55:00",NA,"0.407",407,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789765","UTAHDWQ_WQX-BRI210823-4903504-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903504-0823-4-C/results/933789765/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6854","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:25:00","MST","2021-04-06 19:25:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789788","UTAHDWQ_WQX-BRI210405-4903507-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903507-0406-4-C/results/933789788/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6855","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","12:25:00","MST","2021-04-06 19:25:00",NA,"0.336",336,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789791","UTAHDWQ_WQX-BRI210405-4903507-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903507-0406-4-C/results/933789791/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6856","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","13:00:00","MST","2021-05-18 20:00:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789814","UTAHDWQ_WQX-BRI210503-4903507-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903507-0518-4-C/results/933789814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6857","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","13:00:00","MST","2021-05-18 20:00:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789817","UTAHDWQ_WQX-BRI210503-4903507-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903507-0518-4-C/results/933789817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6858","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","12:35:00","MST","2021-06-08 19:35:00",NA,"0.56",560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789823","UTAHDWQ_WQX-BRI210607-4903507-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903507-0608-4-C/results/933789823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6859","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","12:35:00","MST","2021-06-08 19:35:00",NA,"0.685",685,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789826","UTAHDWQ_WQX-BRI210607-4903507-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903507-0608-4-C/results/933789826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6860","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","11:40:00","MST","2021-07-20 18:40:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789849","UTAHDWQ_WQX-BRI210719-4903507-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903507-0720-4-C/results/933789849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6861","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","11:40:00","MST","2021-07-20 18:40:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789852","UTAHDWQ_WQX-BRI210719-4903507-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903507-0720-4-C/results/933789852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6862","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","10:55:00","MST","2021-08-11 17:55:00",NA,"0.961",961,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789858","UTAHDWQ_WQX-BRI210809-4903507-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903507-0811-4-C/results/933789858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6863","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","10:55:00","MST","2021-08-11 17:55:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789861","UTAHDWQ_WQX-BRI210809-4903507-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903507-0811-4-C/results/933789861/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6864","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","11:30:00","MST","2021-09-22 18:30:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789884","UTAHDWQ_WQX-BRI210920-4903507-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903507-0922-4-C/results/933789884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6865","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","11:30:00","MST","2021-09-22 18:30:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789887","UTAHDWQ_WQX-BRI210920-4903507-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"41.8378300000",41.83783,"-111.8270800000",-111.82708,"OK","16010202","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8378300000","-111.8270800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903507-0922-4-C/results/933789887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6866","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","11:43:00","MST","2021-04-06 18:43:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789893","UTAHDWQ_WQX-BRI210405-4903510-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903510-0406-4-C/results/933789893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6867","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","11:43:00","MST","2021-04-06 18:43:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789896","UTAHDWQ_WQX-BRI210405-4903510-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903510-0406-4-C/results/933789896/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6868","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","12:15:00","MST","2021-05-18 19:15:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789919","UTAHDWQ_WQX-BRI210503-4903510-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903510-0518-4-C/results/933789919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6869","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","12:15:00","MST","2021-05-18 19:15:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789922","UTAHDWQ_WQX-BRI210503-4903510-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903510-0518-4-C/results/933789922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6870","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","12:10:00","MST","2021-06-08 19:10:00",NA,"0.166",166,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789928","UTAHDWQ_WQX-BRI210607-4903510-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903510-0608-4-C/results/933789928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6871","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","12:10:00","MST","2021-06-08 19:10:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789931","UTAHDWQ_WQX-BRI210607-4903510-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903510-0608-4-C/results/933789931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6872","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","11:15:00","MST","2021-07-20 18:15:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789954","UTAHDWQ_WQX-BRI210719-4903510-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903510-0720-4-C/results/933789954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6873","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","11:15:00","MST","2021-07-20 18:15:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789957","UTAHDWQ_WQX-BRI210719-4903510-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903510-0720-4-C/results/933789957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6874","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","10:35:00","MST","2021-08-11 17:35:00",NA,"0.194",194,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789963","UTAHDWQ_WQX-BRI210809-4903510-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903510-0811-4-C/results/933789963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6875","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","10:35:00","MST","2021-08-11 17:35:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789966","UTAHDWQ_WQX-BRI210809-4903510-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903510-0811-4-C/results/933789966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6876","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","11:20:00","MST","2021-09-22 18:20:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789989","UTAHDWQ_WQX-BRI210920-4903510-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903510-0922-4-C/results/933789989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6877","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","11:20:00","MST","2021-09-22 18:20:00",NA,"0.153",153,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933789992","UTAHDWQ_WQX-BRI210920-4903510-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK @ USFS BNDY","River/Stream",NA,"41.8696800000",41.86968,"-111.7579700000",-111.75797,"OK","16010202","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8696800000","-111.7579700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903510-0922-4-C/results/933789992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6878","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:55:00","MST","2021-04-07 17:55:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790015","UTAHDWQ_WQX-BRI210405-4903699-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903699-0407-4-C/results/933790015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6879","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","10:55:00","MST","2021-04-07 17:55:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790018","UTAHDWQ_WQX-BRI210405-4903699-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903699-0407-4-C/results/933790018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6880","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","11:30:00","MST","2021-05-19 18:30:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790024","UTAHDWQ_WQX-BRI210503-4903699-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903699-0519-4-C/results/933790024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6881","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","11:30:00","MST","2021-05-19 18:30:00",NA,"0.507",507,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790027","UTAHDWQ_WQX-BRI210503-4903699-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903699-0519-4-C/results/933790027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6882","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","10:55:00","MST","2021-06-09 17:55:00",NA,"0.693",693,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790033","UTAHDWQ_WQX-BRI210607-4903699-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903699-0609-4-C/results/933790033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6883","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","10:55:00","MST","2021-06-09 17:55:00",NA,"0.718",718,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790036","UTAHDWQ_WQX-BRI210607-4903699-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903699-0609-4-C/results/933790036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6884","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","09:50:00","MST","2021-07-21 16:50:00",NA,"0.821",821,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790059","UTAHDWQ_WQX-BRI210719-4903699-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903699-0721-4-C/results/933790059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6885","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","09:50:00","MST","2021-07-21 16:50:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790062","UTAHDWQ_WQX-BRI210719-4903699-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"41.9104000000",41.9104,"-111.8752000000",-111.8752,"OK","16010202","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9104000000","-111.8752000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903699-0721-4-C/results/933790062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6886","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","13:05:00","MST","2021-04-07 20:05:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790069","UTAHDWQ_WQX-BRI210405-4903770-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903770-0407-4-C/results/933790069/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6887","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","13:05:00","MST","2021-04-07 20:05:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790072","UTAHDWQ_WQX-BRI210405-4903770-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903770-0407-4-C/results/933790072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6888","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","13:00:00","MST","2021-05-19 20:00:00",NA,"0.298",298,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790096","UTAHDWQ_WQX-BRI210503-4903770-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903770-0519-4-C/results/933790096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6889","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","13:00:00","MST","2021-05-19 20:00:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790099","UTAHDWQ_WQX-BRI210503-4903770-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903770-0519-4-C/results/933790099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6890","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","12:45:00","MST","2021-06-09 19:45:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790106","UTAHDWQ_WQX-BRI210607-4903770-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903770-0609-4-C/results/933790106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6891","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","12:45:00","MST","2021-06-09 19:45:00",NA,"0.546",546,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790109","UTAHDWQ_WQX-BRI210607-4903770-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903770-0609-4-C/results/933790109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6892","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","11:45:00","MST","2021-07-06 18:45:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790132","UTAHDWQ_WQX-BRI210706-4903770-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4903770-0706-4-C/results/933790132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6893","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","11:45:00","MST","2021-07-06 18:45:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790135","UTAHDWQ_WQX-BRI210706-4903770-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4903770-0706-4-C/results/933790135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6894","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","11:20:00","MST","2021-07-21 18:20:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790159","UTAHDWQ_WQX-BRI210719-4903770-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903770-0721-4-C/results/933790159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6895","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","11:20:00","MST","2021-07-21 18:20:00",NA,"1.45",1450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790162","UTAHDWQ_WQX-BRI210719-4903770-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903770-0721-4-C/results/933790162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6896","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","10:55:00","MST","2021-08-12 17:55:00",NA,"1.47",1470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790169","UTAHDWQ_WQX-BRI210809-4903770-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903770-0812-4-C/results/933790169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6897","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-12","10:55:00","MST","2021-08-12 17:55:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790172","UTAHDWQ_WQX-BRI210809-4903770-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903770-0812-4-C/results/933790172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6898","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","12:50:00","MST","2021-09-23 19:50:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790196","UTAHDWQ_WQX-BRI210920-4903770-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903770-0923-4-C/results/933790196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6899","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","12:50:00","MST","2021-09-23 19:50:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790199","UTAHDWQ_WQX-BRI210920-4903770-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U61 XING","River/Stream",NA,"41.9761200000",41.97612,"-111.8278300000",-111.82783,"OK","16010202","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9761200000","-111.8278300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903770-0923-4-C/results/933790199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6900","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:10:00","MST","2021-04-07 17:10:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790325","UTAHDWQ_WQX-BRI210405-4903820-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903820-0407-4-C/results/933790325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6901","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","10:10:00","MST","2021-04-07 17:10:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790328","UTAHDWQ_WQX-BRI210405-4903820-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903820-0407-4-C/results/933790328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6902","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","10:20:00","MST","2021-05-19 17:20:00",NA,"0.624",624,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790334","UTAHDWQ_WQX-BRI210503-4903820-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903820-0519-4-C/results/933790334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6903","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","10:20:00","MST","2021-05-19 17:20:00",NA,"0.596",596,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790337","UTAHDWQ_WQX-BRI210503-4903820-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903820-0519-4-C/results/933790337/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6904","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","10:10:00","MST","2021-06-09 17:10:00",NA,"0.604",604,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790343","UTAHDWQ_WQX-BRI210607-4903820-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903820-0609-4-C/results/933790343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6905","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","10:10:00","MST","2021-06-09 17:10:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790346","UTAHDWQ_WQX-BRI210607-4903820-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903820-0609-4-C/results/933790346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6906","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","09:15:00","MST","2021-07-21 16:15:00",NA,"0.456",456,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790369","UTAHDWQ_WQX-BRI210719-4903820-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903820-0721-4-C/results/933790369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6907","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","09:15:00","MST","2021-07-21 16:15:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790372","UTAHDWQ_WQX-BRI210719-4903820-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903820-0721-4-C/results/933790372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6908","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","08:45:00","MST","2021-08-12 15:45:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790378","UTAHDWQ_WQX-BRI210809-4903820-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903820-0812-4-C/results/933790378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6909","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-12","08:45:00","MST","2021-08-12 15:45:00",NA,"0.856",856,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790381","UTAHDWQ_WQX-BRI210809-4903820-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903820-0812-4-C/results/933790381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6910","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","10:30:00","MST","2021-09-23 17:30:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790404","UTAHDWQ_WQX-BRI210920-4903820-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903820-0923-4-C/results/933790404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6911","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","10:30:00","MST","2021-09-23 17:30:00",NA,"0.899",899,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790407","UTAHDWQ_WQX-BRI210920-4903820-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"41.9221500000",41.92215,"-111.9069000000",-111.9069,"OK","16010202","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9221500000","-111.9069000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903820-0923-4-C/results/933790407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6912","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","13:00:00","MST","2021-04-06 20:00:00",NA,"3.98",3980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790413","UTAHDWQ_WQX-BRI210405-4903950-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903950-0406-4-C/results/933790413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6913","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","13:00:00","MST","2021-04-06 20:00:00",NA,"4.02",4020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790416","UTAHDWQ_WQX-BRI210405-4903950-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903950-0406-4-C/results/933790416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6914","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","12:30:00","MST","2021-05-04 19:30:00",NA,"0.945",945,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790439","UTAHDWQ_WQX-BRI210503-4903950-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903950-0504-4-C/results/933790439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6915","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","12:30:00","MST","2021-05-04 19:30:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790442","UTAHDWQ_WQX-BRI210503-4903950-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903950-0504-4-C/results/933790442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6916","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","12:40:00","MST","2021-06-08 19:40:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790448","UTAHDWQ_WQX-BRI210607-4903950-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903950-0608-4-C/results/933790448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6917","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","12:40:00","MST","2021-06-08 19:40:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790451","UTAHDWQ_WQX-BRI210607-4903950-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903950-0608-4-C/results/933790451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6918","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","14:20:00","MST","2021-07-20 21:20:00",NA,"3.74",3740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790474","UTAHDWQ_WQX-BRI210719-4903950-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903950-0720-4-C/results/933790474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6919","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","14:20:00","MST","2021-07-20 21:20:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790477","UTAHDWQ_WQX-BRI210719-4903950-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903950-0720-4-C/results/933790477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6920","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","13:05:00","MST","2021-08-10 20:05:00",NA,"7.85",7850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790483","UTAHDWQ_WQX-BRI210809-4903950-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903950-0810-4-C/results/933790483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6921","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","13:05:00","MST","2021-08-10 20:05:00",NA,"7.94",7940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790486","UTAHDWQ_WQX-BRI210809-4903950-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903950-0810-4-C/results/933790486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6922","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","10:52:00","MST","2021-09-29 17:52:00",NA,"3.56",3560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790508","UTAHDWQ_WQX-BRI210920-4903950-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903950-0929-4-C/results/933790508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6923","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","10:52:00","MST","2021-09-29 17:52:00",NA,"3.53",3530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790511","UTAHDWQ_WQX-BRI210920-4903950-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"41.6926300000",41.69263,"-111.8981400000",-111.89814,"OK","16010203","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6926300000","-111.8981400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903950-0929-4-C/results/933790511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6924","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","09:20:00","MST","2021-04-07 16:20:00",NA,"2.39",2390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790517","UTAHDWQ_WQX-BRI210405-4904110-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904110-0407-4-C/results/933790517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6925","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","09:20:00","MST","2021-04-07 16:20:00",NA,"2.19",2190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790520","UTAHDWQ_WQX-BRI210405-4904110-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904110-0407-4-C/results/933790520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6926","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","10:30:00","MST","2021-06-10 17:30:00",NA,"0.922",922,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790543","UTAHDWQ_WQX-BRI210607-4904110-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904110-0610-4-C/results/933790543/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6927","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","10:30:00","MST","2021-06-10 17:30:00",NA,"0.873",873,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790546","UTAHDWQ_WQX-BRI210607-4904110-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904110-0610-4-C/results/933790546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6928","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","09:00:00","MST","2021-07-21 16:00:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790569","UTAHDWQ_WQX-BRI210719-4904110-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904110-0721-4-C/results/933790569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6929","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","09:00:00","MST","2021-07-21 16:00:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790572","UTAHDWQ_WQX-BRI210719-4904110-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904110-0721-4-C/results/933790572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6930","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","12:00:00","MST","2021-08-11 19:00:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790578","UTAHDWQ_WQX-BRI210809-4904110-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904110-0811-4-C/results/933790578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6931","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","12:00:00","MST","2021-08-11 19:00:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790581","UTAHDWQ_WQX-BRI210809-4904110-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904110-0811-4-C/results/933790581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6932","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","14:35:00","MST","2021-08-23 21:35:00",NA,"0.649",649,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790604","UTAHDWQ_WQX-BRI210823-4904110-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904110-0823-4-C/results/933790604/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6933","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","14:35:00","MST","2021-08-23 21:35:00",NA,"0.875",875,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790607","UTAHDWQ_WQX-BRI210823-4904110-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904110-0823-4-C/results/933790607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6934","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","11:15:00","MST","2021-09-29 18:15:00",NA,"1.9",1900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790630","UTAHDWQ_WQX-BRI210920-4904110-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904110-0929-4-C/results/933790630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6935","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","11:15:00","MST","2021-09-29 18:15:00",NA,"2.16",2160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790633","UTAHDWQ_WQX-BRI210920-4904110-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"41.6403900000",41.64039,"-111.8501700000",-111.85017,"OK","16010203","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6403900000","-111.8501700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904110-0929-4-C/results/933790633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6936","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","11:10:00","MST","2021-04-07 18:10:00",NA,"0.645",645,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790639","UTAHDWQ_WQX-BRI210405-4904200-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CITY CK 3/4 MI W OF US91 AT CR XING","River/Stream",NA,"41.9168700000",41.91687,"-111.8293900000",-111.82939,"OK","16010202","UTAHDWQ_WQX-4904200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9168700000","-111.8293900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904200-0407-4-C/results/933790639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6937","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","11:10:00","MST","2021-04-07 18:10:00",NA,"0.691",691,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790642","UTAHDWQ_WQX-BRI210405-4904200-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CITY CK 3/4 MI W OF US91 AT CR XING","River/Stream",NA,"41.9168700000",41.91687,"-111.8293900000",-111.82939,"OK","16010202","UTAHDWQ_WQX-4904200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9168700000","-111.8293900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904200-0407-4-C/results/933790642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6938","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","11:40:00","MST","2021-04-07 18:40:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790683","UTAHDWQ_WQX-BRI210405-4904240-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904240-0407-4-C/results/933790683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6939","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","11:40:00","MST","2021-04-07 18:40:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790686","UTAHDWQ_WQX-BRI210405-4904240-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904240-0407-4-C/results/933790686/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6940","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","11:40:00","MST","2021-05-19 18:40:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790693","UTAHDWQ_WQX-BRI210503-4904240-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904240-0519-4-C/results/933790693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6941","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","11:40:00","MST","2021-05-19 18:40:00",NA,"0.418",418,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790696","UTAHDWQ_WQX-BRI210503-4904240-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904240-0519-4-C/results/933790696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6942","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","11:20:00","MST","2021-06-09 18:20:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790703","UTAHDWQ_WQX-BRI210607-4904240-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904240-0609-4-C/results/933790703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6943","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","11:20:00","MST","2021-06-09 18:20:00",NA,"1.82",1820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790706","UTAHDWQ_WQX-BRI210607-4904240-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904240-0609-4-C/results/933790706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6944","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","10:15:00","MST","2021-07-21 17:15:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790730","UTAHDWQ_WQX-BRI210719-4904240-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904240-0721-4-C/results/933790730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6945","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:15:00","MST","2021-07-21 17:15:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790733","UTAHDWQ_WQX-BRI210719-4904240-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904240-0721-4-C/results/933790733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6946","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","09:35:00","MST","2021-08-12 16:35:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790740","UTAHDWQ_WQX-BRI210809-4904240-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904240-0812-4-C/results/933790740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6947","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-12","09:35:00","MST","2021-08-12 16:35:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790743","UTAHDWQ_WQX-BRI210809-4904240-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904240-0812-4-C/results/933790743/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6948","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","11:45:00","MST","2021-09-23 18:45:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790767","UTAHDWQ_WQX-BRI210920-4904240-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904240-0923-4-C/results/933790767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6949","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","11:45:00","MST","2021-09-23 18:45:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790770","UTAHDWQ_WQX-BRI210920-4904240-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904240-0923-4-C/results/933790770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6950","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","11:45:00","MST","2021-04-07 18:45:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790776","UTAHDWQ_WQX-BRI210405-4904241-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904241-0407-4-C/results/933790776/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6951","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","11:45:00","MST","2021-04-07 18:45:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790779","UTAHDWQ_WQX-BRI210405-4904241-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904241-0407-4-C/results/933790779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6952","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","10:45:00","MST","2021-05-19 17:45:00",NA,"0.394",394,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790802","UTAHDWQ_WQX-BRI210503-4904241-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904241-0519-4-C/results/933790802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6953","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","10:45:00","MST","2021-05-19 17:45:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790805","UTAHDWQ_WQX-BRI210503-4904241-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904241-0519-4-C/results/933790805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6954","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","11:30:00","MST","2021-06-09 18:30:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790811","UTAHDWQ_WQX-BRI210607-4904241-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904241-0609-4-C/results/933790811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6955","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","11:30:00","MST","2021-06-09 18:30:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790814","UTAHDWQ_WQX-BRI210607-4904241-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904241-0609-4-C/results/933790814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6956","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","10:20:00","MST","2021-07-21 17:20:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790837","UTAHDWQ_WQX-BRI210719-4904241-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904241-0721-4-C/results/933790837/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6957","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:20:00","MST","2021-07-21 17:20:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790840","UTAHDWQ_WQX-BRI210719-4904241-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904241-0721-4-C/results/933790840/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6958","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","09:40:00","MST","2021-08-12 16:40:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790846","UTAHDWQ_WQX-BRI210809-4904241-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904241-0812-4-C/results/933790846/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6959","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-12","09:40:00","MST","2021-08-12 16:40:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790849","UTAHDWQ_WQX-BRI210809-4904241-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904241-0812-4-C/results/933790849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6960","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","11:50:00","MST","2021-09-23 18:50:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790872","UTAHDWQ_WQX-BRI210920-4904241-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904241-0923-4-C/results/933790872/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6961","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","11:50:00","MST","2021-09-23 18:50:00",NA,"1.73",1730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790875","UTAHDWQ_WQX-BRI210920-4904241-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","41.9436700000",41.94367,"-111.8380100000",-111.83801,"OK","16010202","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9436700000","-111.8380100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904241-0923-4-C/results/933790875/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6962","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:25:00","MST","2021-04-07 17:25:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790898","UTAHDWQ_WQX-BRI210405-4904250-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904250-0407-4-C/results/933790898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6963","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","10:25:00","MST","2021-04-07 17:25:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790901","UTAHDWQ_WQX-BRI210405-4904250-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904250-0407-4-C/results/933790901/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6964","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","10:40:00","MST","2021-05-19 17:40:00",NA,"0.44",440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790907","UTAHDWQ_WQX-BRI210503-4904250-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904250-0519-4-C/results/933790907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6965","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","10:40:00","MST","2021-05-19 17:40:00",NA,"0.452",452,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790910","UTAHDWQ_WQX-BRI210503-4904250-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904250-0519-4-C/results/933790910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6966","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","10:25:00","MST","2021-06-09 17:25:00",NA,"0.742",742,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790916","UTAHDWQ_WQX-BRI210607-4904250-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904250-0609-4-C/results/933790916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6967","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","10:25:00","MST","2021-06-09 17:25:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790919","UTAHDWQ_WQX-BRI210607-4904250-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904250-0609-4-C/results/933790919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6968","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","09:30:00","MST","2021-07-21 16:30:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790942","UTAHDWQ_WQX-BRI210719-4904250-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904250-0721-4-C/results/933790942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6969","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","09:30:00","MST","2021-07-21 16:30:00",NA,"0.775",775,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790945","UTAHDWQ_WQX-BRI210719-4904250-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904250-0721-4-C/results/933790945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6970","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","09:00:00","MST","2021-08-12 16:00:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790951","UTAHDWQ_WQX-BRI210809-4904250-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904250-0812-4-C/results/933790951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6971","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-12","09:00:00","MST","2021-08-12 16:00:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790954","UTAHDWQ_WQX-BRI210809-4904250-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904250-0812-4-C/results/933790954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6972","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","11:15:00","MST","2021-09-23 18:15:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790977","UTAHDWQ_WQX-BRI210920-4904250-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904250-0923-4-C/results/933790977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6973","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","11:15:00","MST","2021-09-23 18:15:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933790980","UTAHDWQ_WQX-BRI210920-4904250-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R AT U142 XING","River/Stream",NA,"41.9249200000",41.92492,"-111.8511700000",-111.85117,"OK","16010202","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9249200000","-111.8511700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904250-0923-4-C/results/933790980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6974","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","12:05:00","MST","2021-04-07 19:05:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791003","UTAHDWQ_WQX-BRI210405-4904300-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ U91 XING","River/Stream",NA,"41.9568700000",41.95687,"-111.8130100000",-111.81301,"OK","16010202","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9568700000","-111.8130100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904300-0407-4-C/results/933791003/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6975","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","12:05:00","MST","2021-04-07 19:05:00",NA,"0.355",355,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791006","UTAHDWQ_WQX-BRI210405-4904300-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ U91 XING","River/Stream",NA,"41.9568700000",41.95687,"-111.8130100000",-111.81301,"OK","16010202","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9568700000","-111.8130100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904300-0407-4-C/results/933791006/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6976","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","11:55:00","MST","2021-05-19 18:55:00",NA,"0.264",264,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791012","UTAHDWQ_WQX-BRI210503-4904300-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ U91 XING","River/Stream",NA,"41.9568700000",41.95687,"-111.8130100000",-111.81301,"OK","16010202","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9568700000","-111.8130100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904300-0519-4-C/results/933791012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6977","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","11:55:00","MST","2021-05-19 18:55:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791015","UTAHDWQ_WQX-BRI210503-4904300-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ U91 XING","River/Stream",NA,"41.9568700000",41.95687,"-111.8130100000",-111.81301,"OK","16010202","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9568700000","-111.8130100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904300-0519-4-C/results/933791015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6978","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","11:45:00","MST","2021-06-09 18:45:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791021","UTAHDWQ_WQX-BRI210607-4904300-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ U91 XING","River/Stream",NA,"41.9568700000",41.95687,"-111.8130100000",-111.81301,"OK","16010202","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9568700000","-111.8130100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904300-0609-4-C/results/933791021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6979","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","13:20:00","MST","2021-04-07 20:20:00",NA,"0.516",516,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791061","UTAHDWQ_WQX-BRI210405-4904310-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904310-0407-4-C/results/933791061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6980","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","13:20:00","MST","2021-04-07 20:20:00",NA,"0.647",647,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791064","UTAHDWQ_WQX-BRI210405-4904310-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904310-0407-4-C/results/933791064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6981","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","13:25:00","MST","2021-05-19 20:25:00",NA,"0.504",504,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791070","UTAHDWQ_WQX-BRI210503-4904310-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904310-0519-4-C/results/933791070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6982","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","13:25:00","MST","2021-05-19 20:25:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791073","UTAHDWQ_WQX-BRI210503-4904310-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904310-0519-4-C/results/933791073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6983","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","13:00:00","MST","2021-06-09 20:00:00",NA,"0.906",906,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791079","UTAHDWQ_WQX-BRI210607-4904310-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904310-0609-4-C/results/933791079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6984","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","13:00:00","MST","2021-06-09 20:00:00",NA,"0.93",930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791082","UTAHDWQ_WQX-BRI210607-4904310-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904310-0609-4-C/results/933791082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6985","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","12:55:00","MST","2021-08-23 19:55:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791105","UTAHDWQ_WQX-BRI210823-4904310-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904310-0823-4-C/results/933791105/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6986","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","12:55:00","MST","2021-08-23 19:55:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791108","UTAHDWQ_WQX-BRI210823-4904310-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904310-0823-4-C/results/933791108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6987","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","12:15:00","MST","2021-05-19 19:15:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791131","UTAHDWQ_WQX-BRI210503-4904330-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904330-0519-4-C/results/933791131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6988","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","12:15:00","MST","2021-05-19 19:15:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791134","UTAHDWQ_WQX-BRI210503-4904330-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904330-0519-4-C/results/933791134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6989","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","12:05:00","MST","2021-06-09 19:05:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791140","UTAHDWQ_WQX-BRI210607-4904330-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904330-0609-4-C/results/933791140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6990","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","12:05:00","MST","2021-06-09 19:05:00",NA,"0.195",195,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791143","UTAHDWQ_WQX-BRI210607-4904330-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904330-0609-4-C/results/933791143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6991","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","14:10:00","MST","2021-06-22 21:10:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791166","UTAHDWQ_WQX-BRI210621-4904330-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904330-0622-4-C/results/933791166/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6992","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","14:10:00","MST","2021-06-22 21:10:00",NA,"0.414",414,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791169","UTAHDWQ_WQX-BRI210621-4904330-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904330-0622-4-C/results/933791169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6993","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","12:15:00","MST","2021-07-06 19:15:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791192","UTAHDWQ_WQX-BRI210706-4904330-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4904330-0706-4-C/results/933791192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6994","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","12:15:00","MST","2021-07-06 19:15:00",NA,"0.674",674,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791195","UTAHDWQ_WQX-BRI210706-4904330-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4904330-0706-4-C/results/933791195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6995","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","10:45:00","MST","2021-07-21 17:45:00",NA,"0.325",325,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791218","UTAHDWQ_WQX-BRI210719-4904330-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904330-0721-4-C/results/933791218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6996","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:45:00","MST","2021-07-21 17:45:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791221","UTAHDWQ_WQX-BRI210719-4904330-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904330-0721-4-C/results/933791221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6997","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","10:00:00","MST","2021-08-12 17:00:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791227","UTAHDWQ_WQX-BRI210809-4904330-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904330-0812-4-C/results/933791227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6998","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-12","10:00:00","MST","2021-08-12 17:00:00",NA,"0.486",486,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791230","UTAHDWQ_WQX-BRI210809-4904330-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904330-0812-4-C/results/933791230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6999","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","12:25:00","MST","2021-08-23 19:25:00",NA,"0.126",126,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791253","UTAHDWQ_WQX-BRI210823-4904330-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904330-0823-4-C/results/933791253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7000","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","12:25:00","MST","2021-08-23 19:25:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791256","UTAHDWQ_WQX-BRI210823-4904330-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904330-0823-4-C/results/933791256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7001","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","12:10:00","MST","2021-09-23 19:10:00",NA,"0.145",145,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791279","UTAHDWQ_WQX-BRI210920-4904330-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904330-0923-4-C/results/933791279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7002","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","12:10:00","MST","2021-09-23 19:10:00",NA,"0.116",116,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791282","UTAHDWQ_WQX-BRI210920-4904330-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HIGH CK @ USFS BNDY","River/Stream",NA,"41.9764000000",41.9764,"-111.7562700000",-111.75627,"OK","16010202","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9764000000","-111.7562700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904330-0923-4-C/results/933791282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7003","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","12:28:00","MST","2021-04-07 19:28:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791305","UTAHDWQ_WQX-BRI210405-4904340-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904340-0407-4-C/results/933791305/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7004","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","12:28:00","MST","2021-04-07 19:28:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791308","UTAHDWQ_WQX-BRI210405-4904340-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904340-0407-4-C/results/933791308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7005","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","12:40:00","MST","2021-05-19 19:40:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791315","UTAHDWQ_WQX-BRI210503-4904340-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904340-0519-4-C/results/933791315/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7006","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","12:40:00","MST","2021-05-19 19:40:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791318","UTAHDWQ_WQX-BRI210503-4904340-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904340-0519-4-C/results/933791318/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7007","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","12:25:00","MST","2021-06-09 19:25:00",NA,"0.71",710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791324","UTAHDWQ_WQX-BRI210607-4904340-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904340-0609-4-C/results/933791324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7008","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","12:25:00","MST","2021-06-09 19:25:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791327","UTAHDWQ_WQX-BRI210607-4904340-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904340-0609-4-C/results/933791327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7009","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","11:05:00","MST","2021-07-21 18:05:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791351","UTAHDWQ_WQX-BRI210719-4904340-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904340-0721-4-C/results/933791351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7010","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","11:05:00","MST","2021-07-21 18:05:00",NA,"1.79",1790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791354","UTAHDWQ_WQX-BRI210719-4904340-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904340-0721-4-C/results/933791354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7011","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","10:25:00","MST","2021-08-12 17:25:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791360","UTAHDWQ_WQX-BRI210809-4904340-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904340-0812-4-C/results/933791360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7012","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-12","10:25:00","MST","2021-08-12 17:25:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791363","UTAHDWQ_WQX-BRI210809-4904340-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904340-0812-4-C/results/933791363/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7013","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","12:30:00","MST","2021-09-23 19:30:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791387","UTAHDWQ_WQX-BRI210920-4904340-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904340-0923-4-C/results/933791387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7014","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","12:30:00","MST","2021-09-23 19:30:00",NA,"1.62",1620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791390","UTAHDWQ_WQX-BRI210920-4904340-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUB R @ 800 South ab High Creek","River/Stream",NA,"41.9613200000",41.96132,"-111.8318900000",-111.83189,"OK","16010202","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9613200000","-111.8318900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904340-0923-4-C/results/933791390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7015","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","10:50:00","MST","2021-04-06 17:50:00",NA,"0.991",991,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791396","UTAHDWQ_WQX-BRI210405-4904490-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904490-0406-4-C/results/933791396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7016","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","10:50:00","MST","2021-04-06 17:50:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791399","UTAHDWQ_WQX-BRI210405-4904490-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904490-0406-4-C/results/933791399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7017","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","11:20:00","MST","2021-05-18 18:20:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791422","UTAHDWQ_WQX-BRI210503-4904490-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904490-0518-4-C/results/933791422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7018","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","11:20:00","MST","2021-05-18 18:20:00",NA,"0.7",700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791425","UTAHDWQ_WQX-BRI210503-4904490-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904490-0518-4-C/results/933791425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7019","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","11:15:00","MST","2021-06-08 18:15:00",NA,"0.51",510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791431","UTAHDWQ_WQX-BRI210607-4904490-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904490-0608-4-C/results/933791431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7020","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","11:15:00","MST","2021-06-08 18:15:00",NA,"0.569",569,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791434","UTAHDWQ_WQX-BRI210607-4904490-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904490-0608-4-C/results/933791434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7021","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","11:25:00","MST","2021-06-22 18:25:00",NA,"0.83",830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791457","UTAHDWQ_WQX-BRI210621-4904490-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904490-0622-4-C/results/933791457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7022","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","11:25:00","MST","2021-06-22 18:25:00",NA,"0.879",879,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791460","UTAHDWQ_WQX-BRI210621-4904490-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904490-0622-4-C/results/933791460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7023","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","10:30:00","MST","2021-07-20 17:30:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791483","UTAHDWQ_WQX-BRI210719-4904490-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904490-0720-4-C/results/933791483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7024","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","10:30:00","MST","2021-07-20 17:30:00",NA,"0.619",619,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791486","UTAHDWQ_WQX-BRI210719-4904490-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904490-0720-4-C/results/933791486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7025","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","09:40:00","MST","2021-08-11 16:40:00",NA,"0.456",456,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791492","UTAHDWQ_WQX-BRI210809-4904490-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904490-0811-4-C/results/933791492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7026","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","09:40:00","MST","2021-08-11 16:40:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791495","UTAHDWQ_WQX-BRI210809-4904490-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904490-0811-4-C/results/933791495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7027","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","10:35:00","MST","2021-09-22 17:35:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791518","UTAHDWQ_WQX-BRI210920-4904490-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904490-0922-4-C/results/933791518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7028","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","10:35:00","MST","2021-09-22 17:35:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791521","UTAHDWQ_WQX-BRI210920-4904490-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"41.8007600000",41.80076,"-111.9096700000",-111.90967,"OK","16010202","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8007600000","-111.9096700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904490-0922-4-C/results/933791521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7029","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","11:15:00","MST","2021-04-06 18:15:00",NA,"2.79",2790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791527","UTAHDWQ_WQX-BRI210405-4904510-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904510-0406-4-C/results/933791527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7030","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","11:15:00","MST","2021-04-06 18:15:00",NA,"2.63",2630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791530","UTAHDWQ_WQX-BRI210405-4904510-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904510-0406-4-C/results/933791530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7031","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","11:45:00","MST","2021-05-18 18:45:00",NA,"4.76",4760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791553","UTAHDWQ_WQX-BRI210503-4904510-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904510-0518-4-C/results/933791553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7032","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","11:45:00","MST","2021-05-18 18:45:00",NA,"4.96",4960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791556","UTAHDWQ_WQX-BRI210503-4904510-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904510-0518-4-C/results/933791556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7033","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","11:25:00","MST","2021-06-08 18:25:00",NA,"2.39",2390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791562","UTAHDWQ_WQX-BRI210607-4904510-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904510-0608-4-C/results/933791562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7034","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","11:25:00","MST","2021-06-08 18:25:00",NA,"2.74",2740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791565","UTAHDWQ_WQX-BRI210607-4904510-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904510-0608-4-C/results/933791565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7035","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","11:50:00","MST","2021-06-22 18:50:00",NA,"2.24",2240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791588","UTAHDWQ_WQX-BRI210621-4904510-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904510-0622-4-C/results/933791588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7036","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","11:50:00","MST","2021-06-22 18:50:00",NA,"2.33",2330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791591","UTAHDWQ_WQX-BRI210621-4904510-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904510-0622-4-C/results/933791591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7037","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","10:45:00","MST","2021-07-20 17:45:00",NA,"3.44",3440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791614","UTAHDWQ_WQX-BRI210719-4904510-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904510-0720-4-C/results/933791614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7038","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","10:45:00","MST","2021-07-20 17:45:00",NA,"3.61",3610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791617","UTAHDWQ_WQX-BRI210719-4904510-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904510-0720-4-C/results/933791617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7039","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","09:55:00","MST","2021-08-11 16:55:00",NA,"3.19",3190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791623","UTAHDWQ_WQX-BRI210809-4904510-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904510-0811-4-C/results/933791623/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7040","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","09:55:00","MST","2021-08-11 16:55:00",NA,"3.13",3130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791626","UTAHDWQ_WQX-BRI210809-4904510-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904510-0811-4-C/results/933791626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7041","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","10:50:00","MST","2021-09-22 17:50:00",NA,"0.839",839,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791649","UTAHDWQ_WQX-BRI210920-4904510-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904510-0922-4-C/results/933791649/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7042","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","10:50:00","MST","2021-09-22 17:50:00",NA,"0.832",832,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791652","UTAHDWQ_WQX-BRI210920-4904510-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"41.8013900000",41.80139,"-111.8917400000",-111.89174,"OK","16010202","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8013900000","-111.8917400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904510-0922-4-C/results/933791652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7043","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:15:00","MST","2021-04-06 21:15:00",NA,"2.65",2650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791658","UTAHDWQ_WQX-BRI210405-4904720-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904720-0406-4-C/results/933791658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7044","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:15:00","MST","2021-04-06 21:15:00",NA,"2.21",2210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791661","UTAHDWQ_WQX-BRI210405-4904720-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904720-0406-4-C/results/933791661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7045","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","13:45:00","MST","2021-05-18 20:45:00",NA,"0.868",868,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791684","UTAHDWQ_WQX-BRI210503-4904720-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904720-0518-4-C/results/933791684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7046","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","13:45:00","MST","2021-05-18 20:45:00",NA,"0.914",914,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791687","UTAHDWQ_WQX-BRI210503-4904720-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904720-0518-4-C/results/933791687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7047","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","13:55:00","MST","2021-06-08 20:55:00",NA,"6.06",6060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791693","UTAHDWQ_WQX-BRI210607-4904720-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904720-0608-4-C/results/933791693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7048","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","13:55:00","MST","2021-06-08 20:55:00",NA,"6.39",6390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791696","UTAHDWQ_WQX-BRI210607-4904720-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904720-0608-4-C/results/933791696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7049","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","12:45:00","MST","2021-06-22 19:45:00",NA,"0.919",919,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791719","UTAHDWQ_WQX-BRI210621-4904720-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904720-0622-4-C/results/933791719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7050","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","12:45:00","MST","2021-06-22 19:45:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791722","UTAHDWQ_WQX-BRI210621-4904720-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904720-0622-4-C/results/933791722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7051","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","12:55:00","MST","2021-07-20 19:55:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791745","UTAHDWQ_WQX-BRI210719-4904720-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904720-0720-4-C/results/933791745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7052","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","12:55:00","MST","2021-07-20 19:55:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791748","UTAHDWQ_WQX-BRI210719-4904720-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904720-0720-4-C/results/933791748/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7053","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","12:10:00","MST","2021-08-11 19:10:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791754","UTAHDWQ_WQX-BRI210809-4904720-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904720-0811-4-C/results/933791754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7054","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","12:10:00","MST","2021-08-11 19:10:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791757","UTAHDWQ_WQX-BRI210809-4904720-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904720-0811-4-C/results/933791757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7055","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","12:35:00","MST","2021-09-22 19:35:00",NA,"3.8",3800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791780","UTAHDWQ_WQX-BRI210920-4904720-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904720-0922-4-C/results/933791780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7056","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","12:35:00","MST","2021-09-22 19:35:00",NA,"2.17",2170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791783","UTAHDWQ_WQX-BRI210920-4904720-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"41.8307600000",41.83076,"-111.9418900000",-111.94189,"OK","16010202","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8307600000","-111.9418900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904720-0922-4-C/results/933791783/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7057","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","13:40:00","MST","2021-04-06 20:40:00",NA,"3.23",3230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791789","UTAHDWQ_WQX-BRI210405-4904724-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904724-0406-4-C/results/933791789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7058","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","13:40:00","MST","2021-04-06 20:40:00",NA,"2.57",2570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791792","UTAHDWQ_WQX-BRI210405-4904724-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904724-0406-4-C/results/933791792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7059","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","13:35:00","MST","2021-05-18 20:35:00",NA,"9.63",9630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791815","UTAHDWQ_WQX-BRI210503-4904724-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904724-0518-4-C/results/933791815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7060","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","13:35:00","MST","2021-05-18 20:35:00",NA,"10.1",10100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791818","UTAHDWQ_WQX-BRI210503-4904724-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904724-0518-4-C/results/933791818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7061","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","13:20:00","MST","2021-06-08 20:20:00",NA,"6.66",6660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791824","UTAHDWQ_WQX-BRI210607-4904724-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904724-0608-4-C/results/933791824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7062","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","13:20:00","MST","2021-06-08 20:20:00",NA,"6.74",6740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791827","UTAHDWQ_WQX-BRI210607-4904724-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904724-0608-4-C/results/933791827/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7063","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","12:30:00","MST","2021-06-22 19:30:00",NA,"8.84",8840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791850","UTAHDWQ_WQX-BRI210621-4904724-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904724-0622-4-C/results/933791850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7064","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","12:30:00","MST","2021-06-22 19:30:00",NA,"8.14",8140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791853","UTAHDWQ_WQX-BRI210621-4904724-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904724-0622-4-C/results/933791853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7065","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","12:20:00","MST","2021-07-20 19:20:00",NA,"3.17",3170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791876","UTAHDWQ_WQX-BRI210719-4904724-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904724-0720-4-C/results/933791876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7066","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","12:20:00","MST","2021-07-20 19:20:00",NA,"2.24",2240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791879","UTAHDWQ_WQX-BRI210719-4904724-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904724-0720-4-C/results/933791879/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7067","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","11:40:00","MST","2021-08-11 18:40:00",NA,"9.87",9870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791885","UTAHDWQ_WQX-BRI210809-4904724-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904724-0811-4-C/results/933791885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7068","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","11:40:00","MST","2021-08-11 18:40:00",NA,"3.3",3300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791888","UTAHDWQ_WQX-BRI210809-4904724-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904724-0811-4-C/results/933791888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7069","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","11:25:00","MST","2021-08-23 18:25:00",NA,"3.51",3510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791911","UTAHDWQ_WQX-BRI210823-4904724-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904724-0823-4-C/results/933791911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7070","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","11:25:00","MST","2021-08-23 18:25:00",NA,"2.27",2270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791914","UTAHDWQ_WQX-BRI210823-4904724-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904724-0823-4-C/results/933791914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7071","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","12:20:00","MST","2021-09-22 19:20:00",NA,"10.5",10500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791937","UTAHDWQ_WQX-BRI210920-4904724-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904724-0922-4-C/results/933791937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7072","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","12:20:00","MST","2021-09-22 19:20:00",NA,"3.74",3740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791940","UTAHDWQ_WQX-BRI210920-4904724-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"41.8451100000",41.84511,"-111.9329200000",-111.93292,"OK","16010202","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8451100000","-111.9329200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904724-0922-4-C/results/933791940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7073","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","13:55:00","MST","2021-04-06 20:55:00",NA,"2.78",2780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791946","UTAHDWQ_WQX-BRI210405-4904726-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904726-0406-4-C/results/933791946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7074","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","13:55:00","MST","2021-04-06 20:55:00",NA,"2.46",2460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791949","UTAHDWQ_WQX-BRI210405-4904726-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904726-0406-4-C/results/933791949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7075","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","13:40:00","MST","2021-05-18 20:40:00",NA,"5.16",5160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791972","UTAHDWQ_WQX-BRI210503-4904726-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904726-0518-4-C/results/933791972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7076","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","13:40:00","MST","2021-05-18 20:40:00",NA,"5.38",5380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791975","UTAHDWQ_WQX-BRI210503-4904726-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904726-0518-4-C/results/933791975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7077","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","13:35:00","MST","2021-06-08 20:35:00",NA,"4.09",4090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791981","UTAHDWQ_WQX-BRI210607-4904726-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904726-0608-4-C/results/933791981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7078","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","13:35:00","MST","2021-06-08 20:35:00",NA,"4.36",4360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933791984","UTAHDWQ_WQX-BRI210607-4904726-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904726-0608-4-C/results/933791984/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7079","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","13:00:00","MST","2021-06-22 20:00:00",NA,"3.88",3880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792007","UTAHDWQ_WQX-BRI210621-4904726-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904726-0622-4-C/results/933792007/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7080","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","13:00:00","MST","2021-06-22 20:00:00",NA,"4.07",4070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792010","UTAHDWQ_WQX-BRI210621-4904726-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904726-0622-4-C/results/933792010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7081","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","11:05:00","MST","2021-08-23 18:05:00",NA,"4.79",4790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792033","UTAHDWQ_WQX-BRI210823-4904726-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904726-0823-4-C/results/933792033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7082","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","11:05:00","MST","2021-08-23 18:05:00",NA,"4.82",4820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792036","UTAHDWQ_WQX-BRI210823-4904726-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904726-0823-4-C/results/933792036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7083","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","13:15:00","MST","2021-04-06 20:15:00",NA,"15.7",15700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792059","UTAHDWQ_WQX-BRI210405-4904740-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904740-0406-4-C/results/933792059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7084","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","13:15:00","MST","2021-04-06 20:15:00",NA,"15.8",15800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792062","UTAHDWQ_WQX-BRI210405-4904740-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904740-0406-4-C/results/933792062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7085","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","13:00:00","MST","2021-05-04 20:00:00",NA,"5.86",5860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792085","UTAHDWQ_WQX-BRI210503-4904740-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904740-0504-4-C/results/933792085/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7086","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","13:00:00","MST","2021-05-04 20:00:00",NA,"5.88",5880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792088","UTAHDWQ_WQX-BRI210503-4904740-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904740-0504-4-C/results/933792088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7087","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","13:00:00","MST","2021-06-08 20:00:00",NA,"9.35",9350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792094","UTAHDWQ_WQX-BRI210607-4904740-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904740-0608-4-C/results/933792094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7088","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","13:00:00","MST","2021-06-08 20:00:00",NA,"9.4",9400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792097","UTAHDWQ_WQX-BRI210607-4904740-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904740-0608-4-C/results/933792097/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7089","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","14:45:00","MST","2021-07-20 21:45:00",NA,"2.33",2330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792120","UTAHDWQ_WQX-BRI210719-4904740-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904740-0720-4-C/results/933792120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7090","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","14:45:00","MST","2021-07-20 21:45:00",NA,"2.68",2680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792123","UTAHDWQ_WQX-BRI210719-4904740-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904740-0720-4-C/results/933792123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7091","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","13:40:00","MST","2021-08-10 20:40:00",NA,"24.7",24700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792129","UTAHDWQ_WQX-BRI210809-4904740-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904740-0810-4-C/results/933792129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7092","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","13:40:00","MST","2021-08-10 20:40:00",NA,"25.1",25100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792132","UTAHDWQ_WQX-BRI210809-4904740-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904740-0810-4-C/results/933792132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7093","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","11:41:00","MST","2021-09-28 18:41:00",NA,"15.3",15300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792154","UTAHDWQ_WQX-BRI210920-4904740-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904740-0928-4-C/results/933792154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7094","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","11:41:00","MST","2021-09-28 18:41:00",NA,"15.3",15300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792157","UTAHDWQ_WQX-BRI210920-4904740-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"41.6642700000",41.66427,"-111.8906600000",-111.89066,"OK","16010203","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6642700000","-111.8906600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904740-0928-4-C/results/933792157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7095","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","09:40:00","MST","2021-04-07 16:40:00",NA,"37.5",37500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792180","UTAHDWQ_WQX-BRI210405-4904770-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904770-0407-4-C/results/933792180/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7096","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","09:40:00","MST","2021-04-07 16:40:00",NA,"37.9",37900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792183","UTAHDWQ_WQX-BRI210405-4904770-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904770-0407-4-C/results/933792183/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7097","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","10:00:00","MST","2021-05-05 17:00:00",NA,"19.9",19900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792189","UTAHDWQ_WQX-BRI210503-4904770-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904770-0505-4-C/results/933792189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7098","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","10:00:00","MST","2021-05-05 17:00:00",NA,"19.3",19300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792192","UTAHDWQ_WQX-BRI210503-4904770-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904770-0505-4-C/results/933792192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7099","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","11:00:00","MST","2021-06-10 18:00:00",NA,"34.7",34700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792198","UTAHDWQ_WQX-BRI210607-4904770-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904770-0610-4-C/results/933792198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7100","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","11:00:00","MST","2021-06-10 18:00:00",NA,"34.2",34200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792201","UTAHDWQ_WQX-BRI210607-4904770-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904770-0610-4-C/results/933792201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7101","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","09:15:00","MST","2021-07-21 16:15:00",NA,"4.54",4540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792224","UTAHDWQ_WQX-BRI210719-4904770-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904770-0721-4-C/results/933792224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7102","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","09:15:00","MST","2021-07-21 16:15:00",NA,"4.55",4550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792227","UTAHDWQ_WQX-BRI210719-4904770-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904770-0721-4-C/results/933792227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7103","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","12:25:00","MST","2021-08-11 19:25:00",NA,"79.6",79600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792233","UTAHDWQ_WQX-BRI210809-4904770-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904770-0811-4-C/results/933792233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7104","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","12:25:00","MST","2021-08-11 19:25:00",NA,"77.6",77600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792236","UTAHDWQ_WQX-BRI210809-4904770-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904770-0811-4-C/results/933792236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7105","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","12:00:00","MST","2021-09-29 19:00:00",NA,"15.8",15800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792259","UTAHDWQ_WQX-BRI210920-4904770-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904770-0929-4-C/results/933792259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7106","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","12:00:00","MST","2021-09-29 19:00:00",NA,"16.2",16200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792262","UTAHDWQ_WQX-BRI210920-4904770-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-6","River/Stream",NA,"41.6579900000",41.65799,"-111.8796700000",-111.87967,"OK","16010203","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6579900000","-111.8796700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904770-0929-4-C/results/933792262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7107","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","11:35:00","MST","2021-04-06 18:35:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792268","UTAHDWQ_WQX-BRI210405-4904800-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904800-0406-4-C/results/933792268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7108","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","11:35:00","MST","2021-04-06 18:35:00",NA,"0.961",961,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792271","UTAHDWQ_WQX-BRI210405-4904800-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904800-0406-4-C/results/933792271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7109","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","11:10:00","MST","2021-05-04 18:10:00",NA,"0.673",673,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792294","UTAHDWQ_WQX-BRI210503-4904800-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904800-0504-4-C/results/933792294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7110","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","11:10:00","MST","2021-05-04 18:10:00",NA,"0.999",999,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792297","UTAHDWQ_WQX-BRI210503-4904800-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904800-0504-4-C/results/933792297/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7111","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","11:20:00","MST","2021-06-08 18:20:00",NA,"0.775",775,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792303","UTAHDWQ_WQX-BRI210607-4904800-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904800-0608-4-C/results/933792303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7112","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","11:20:00","MST","2021-06-08 18:20:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792306","UTAHDWQ_WQX-BRI210607-4904800-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904800-0608-4-C/results/933792306/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7113","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:00:00","MST","2021-07-20 20:00:00",NA,"0.737",737,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792329","UTAHDWQ_WQX-BRI210719-4904800-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904800-0720-4-C/results/933792329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7114","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","13:00:00","MST","2021-07-20 20:00:00",NA,"0.757",757,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792332","UTAHDWQ_WQX-BRI210719-4904800-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904800-0720-4-C/results/933792332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7115","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","11:50:00","MST","2021-08-10 18:50:00",NA,"0.71",710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792338","UTAHDWQ_WQX-BRI210809-4904800-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904800-0810-4-C/results/933792338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7116","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","11:50:00","MST","2021-08-10 18:50:00",NA,"0.835",835,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792341","UTAHDWQ_WQX-BRI210809-4904800-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904800-0810-4-C/results/933792341/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7117","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","09:42:00","MST","2021-09-29 16:42:00",NA,"0.976",976,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792363","UTAHDWQ_WQX-BRI210920-4904800-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904800-0929-4-C/results/933792363/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7118","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","09:42:00","MST","2021-09-29 16:42:00",NA,"0.978",978,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792366","UTAHDWQ_WQX-BRI210920-4904800-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904800-0929-4-C/results/933792366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7119","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:00:00","MST","2021-04-07 17:00:00",NA,"8.35",8350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792373","UTAHDWQ_WQX-BRI210405-4904810-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904810-0407-4-C/results/933792373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7120","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","10:00:00","MST","2021-04-07 17:00:00",NA,"8.09",8090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792376","UTAHDWQ_WQX-BRI210405-4904810-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904810-0407-4-C/results/933792376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7121","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","10:15:00","MST","2021-05-05 17:15:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792400","UTAHDWQ_WQX-BRI210503-4904810-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904810-0505-4-C/results/933792400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7122","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","10:15:00","MST","2021-05-05 17:15:00",NA,"2.33",2330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792403","UTAHDWQ_WQX-BRI210503-4904810-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904810-0505-4-C/results/933792403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7123","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","11:15:00","MST","2021-06-10 18:15:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792409","UTAHDWQ_WQX-BRI210607-4904810-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904810-0610-4-C/results/933792409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7124","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","11:15:00","MST","2021-06-10 18:15:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792412","UTAHDWQ_WQX-BRI210607-4904810-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904810-0610-4-C/results/933792412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7125","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","09:25:00","MST","2021-07-21 16:25:00",NA,"8.47",8470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792436","UTAHDWQ_WQX-BRI210719-4904810-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904810-0721-4-C/results/933792436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7126","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","09:25:00","MST","2021-07-21 16:25:00",NA,"8.63",8630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792439","UTAHDWQ_WQX-BRI210719-4904810-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904810-0721-4-C/results/933792439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7127","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","12:40:00","MST","2021-08-11 19:40:00",NA,"2.48",2480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792446","UTAHDWQ_WQX-BRI210809-4904810-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904810-0811-4-C/results/933792446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7128","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","12:40:00","MST","2021-08-11 19:40:00",NA,"2.55",2550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792449","UTAHDWQ_WQX-BRI210809-4904810-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904810-0811-4-C/results/933792449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7129","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","12:13:00","MST","2021-09-29 19:13:00",NA,"4.69",4690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792473","UTAHDWQ_WQX-BRI210920-4904810-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904810-0929-4-C/results/933792473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7130","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","12:13:00","MST","2021-09-29 19:13:00",NA,"4.91",4910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792476","UTAHDWQ_WQX-BRI210920-4904810-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK SC-9","River/Stream",NA,"41.6520000000",41.652,"-111.8794200000",-111.87942,"OK","16010203","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520000000","-111.8794200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904810-0929-4-C/results/933792476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7131","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","09:50:00","MST","2021-05-05 16:50:00",NA,"3.5",3500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792483","UTAHDWQ_WQX-BRI210503-4904840-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DITCH AB EA MILLER SC-12","Canal Drainage",NA,"41.6555700000",41.65557,"-111.8690300000",-111.86903,"OK","16010203","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6555700000","-111.8690300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904840-0505-4-C/results/933792483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7132","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","09:50:00","MST","2021-05-05 16:50:00",NA,"3.61",3610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792486","UTAHDWQ_WQX-BRI210503-4904840-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DITCH AB EA MILLER SC-12","Canal Drainage",NA,"41.6555700000",41.65557,"-111.8690300000",-111.86903,"OK","16010203","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6555700000","-111.8690300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904840-0505-4-C/results/933792486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7133","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","13:20:00","MST","2021-04-06 20:20:00",NA,"4.39",4390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792492","UTAHDWQ_WQX-BRI210405-4904870-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904870-0406-4-C/results/933792492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7134","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","13:20:00","MST","2021-04-06 20:20:00",NA,"4.27",4270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792495","UTAHDWQ_WQX-BRI210405-4904870-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904870-0406-4-C/results/933792495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7135","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","13:20:00","MST","2021-05-04 20:20:00",NA,"0.502",502,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792518","UTAHDWQ_WQX-BRI210503-4904870-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904870-0504-4-C/results/933792518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7136","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","13:20:00","MST","2021-05-04 20:20:00",NA,"0.63",630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792521","UTAHDWQ_WQX-BRI210503-4904870-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904870-0504-4-C/results/933792521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7137","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","13:10:00","MST","2021-06-08 20:10:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792527","UTAHDWQ_WQX-BRI210607-4904870-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904870-0608-4-C/results/933792527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7138","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","13:10:00","MST","2021-06-08 20:10:00",NA,"0.496",496,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792530","UTAHDWQ_WQX-BRI210607-4904870-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904870-0608-4-C/results/933792530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7139","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","14:00:00","MST","2021-08-10 21:00:00",NA,"0.284",284,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792553","UTAHDWQ_WQX-BRI210809-4904870-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904870-0810-4-C/results/933792553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7140","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","14:00:00","MST","2021-08-10 21:00:00",NA,"0.487",487,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792556","UTAHDWQ_WQX-BRI210809-4904870-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904870-0810-4-C/results/933792556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7141","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","14:20:00","MST","2021-08-23 21:20:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792578","UTAHDWQ_WQX-BRI210823-4904870-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904870-0823-4-C/results/933792578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7142","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","14:20:00","MST","2021-08-23 21:20:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792581","UTAHDWQ_WQX-BRI210823-4904870-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904870-0823-4-C/results/933792581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7143","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","11:28:00","MST","2021-09-28 18:28:00",NA,"0.3",300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792604","UTAHDWQ_WQX-BRI210920-4904870-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904870-0928-4-C/results/933792604/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7144","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","11:28:00","MST","2021-09-28 18:28:00",NA,"0.31",310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792607","UTAHDWQ_WQX-BRI210920-4904870-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"41.6752500000",41.67525,"-111.8750200000",-111.87502,"OK","16010203","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6752500000","-111.8750200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904870-0928-4-C/results/933792607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7145","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","11:20:00","MST","2021-04-06 18:20:00",NA,"2.59",2590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792613","UTAHDWQ_WQX-BRI210405-4904900-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904900-0406-4-C/results/933792613/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7146","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","11:20:00","MST","2021-04-06 18:20:00",NA,"2.54",2540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792616","UTAHDWQ_WQX-BRI210405-4904900-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904900-0406-4-C/results/933792616/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7147","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","10:45:00","MST","2021-05-04 17:45:00",NA,"0.933",933,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792639","UTAHDWQ_WQX-BRI210503-4904900-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904900-0504-4-C/results/933792639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7148","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","10:45:00","MST","2021-05-04 17:45:00",NA,"0.988",988,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792642","UTAHDWQ_WQX-BRI210503-4904900-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904900-0504-4-C/results/933792642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7149","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","11:00:00","MST","2021-06-08 18:00:00",NA,"0.933",933,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792648","UTAHDWQ_WQX-BRI210607-4904900-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904900-0608-4-C/results/933792648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7150","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","11:00:00","MST","2021-06-08 18:00:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792651","UTAHDWQ_WQX-BRI210607-4904900-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904900-0608-4-C/results/933792651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7151","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","12:40:00","MST","2021-07-20 19:40:00",NA,"0.581",581,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792674","UTAHDWQ_WQX-BRI210719-4904900-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904900-0720-4-C/results/933792674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7152","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","12:40:00","MST","2021-07-20 19:40:00",NA,"0.645",645,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792677","UTAHDWQ_WQX-BRI210719-4904900-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904900-0720-4-C/results/933792677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7153","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","11:35:00","MST","2021-08-10 18:35:00",NA,"3.29",3290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792683","UTAHDWQ_WQX-BRI210809-4904900-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904900-0810-4-C/results/933792683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7154","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","11:35:00","MST","2021-08-10 18:35:00",NA,"3.12",3120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792686","UTAHDWQ_WQX-BRI210809-4904900-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904900-0810-4-C/results/933792686/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7155","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","14:45:00","MST","2021-09-28 21:45:00",NA,"2.04",2040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792708","UTAHDWQ_WQX-BRI210920-4904900-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904900-0928-4-C/results/933792708/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7156","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","14:45:00","MST","2021-09-28 21:45:00",NA,"2.04",2040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792711","UTAHDWQ_WQX-BRI210920-4904900-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"41.7207200000",41.72072,"-111.9273100000",-111.92731,"OK","16010203","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7207200000","-111.9273100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904900-0928-4-C/results/933792711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7157","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:40:00","MST","2021-04-06 19:40:00",NA,"11.3",11300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792717","UTAHDWQ_WQX-BRI210405-4904920-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904920-0406-4-C/results/933792717/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7158","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","12:40:00","MST","2021-04-06 19:40:00",NA,"11.5",11500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792720","UTAHDWQ_WQX-BRI210405-4904920-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904920-0406-4-C/results/933792720/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7159","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","12:15:00","MST","2021-05-04 19:15:00",NA,"2.25",2250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792743","UTAHDWQ_WQX-BRI210503-4904920-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904920-0504-4-C/results/933792743/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7160","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","12:15:00","MST","2021-05-04 19:15:00",NA,"2.15",2150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792746","UTAHDWQ_WQX-BRI210503-4904920-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904920-0504-4-C/results/933792746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7161","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","12:30:00","MST","2021-06-08 19:30:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792752","UTAHDWQ_WQX-BRI210607-4904920-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904920-0608-4-C/results/933792752/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7162","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","12:30:00","MST","2021-06-08 19:30:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792755","UTAHDWQ_WQX-BRI210607-4904920-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904920-0608-4-C/results/933792755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7163","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","14:15:00","MST","2021-07-20 21:15:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792778","UTAHDWQ_WQX-BRI210719-4904920-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904920-0720-4-C/results/933792778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7164","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","14:15:00","MST","2021-07-20 21:15:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792781","UTAHDWQ_WQX-BRI210719-4904920-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904920-0720-4-C/results/933792781/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7165","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","12:55:00","MST","2021-08-10 19:55:00",NA,"8.75",8750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792787","UTAHDWQ_WQX-BRI210809-4904920-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904920-0810-4-C/results/933792787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7166","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","12:55:00","MST","2021-08-10 19:55:00",NA,"8.56",8560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792790","UTAHDWQ_WQX-BRI210809-4904920-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904920-0810-4-C/results/933792790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7167","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","10:47:00","MST","2021-09-29 17:47:00",NA,"5.26",5260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792812","UTAHDWQ_WQX-BRI210920-4904920-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904920-0929-4-C/results/933792812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7168","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","10:47:00","MST","2021-09-29 17:47:00",NA,"5.57",5570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792815","UTAHDWQ_WQX-BRI210920-4904920-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"41.6924300000",41.69243,"-111.9132800000",-111.91328,"OK","16010203","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6924300000","-111.9132800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904920-0929-4-C/results/933792815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7169","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","13:00:00","MST","2021-04-06 20:00:00",NA,"19.3",19300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792821","UTAHDWQ_WQX-BRI210405-4904940-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904940-0406-4-C/results/933792821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7170","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","13:00:00","MST","2021-04-06 20:00:00",NA,"17.6",17600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792824","UTAHDWQ_WQX-BRI210405-4904940-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904940-0406-4-C/results/933792824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7171","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","12:45:00","MST","2021-05-04 19:45:00",NA,"5.56",5560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792847","UTAHDWQ_WQX-BRI210503-4904940-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904940-0504-4-C/results/933792847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7172","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","12:45:00","MST","2021-05-04 19:45:00",NA,"5.9",5900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792850","UTAHDWQ_WQX-BRI210503-4904940-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904940-0504-4-C/results/933792850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7173","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","12:50:00","MST","2021-06-08 19:50:00",NA,"11.7",11700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792856","UTAHDWQ_WQX-BRI210607-4904940-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904940-0608-4-C/results/933792856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7174","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","12:50:00","MST","2021-06-08 19:50:00",NA,"11.9",11900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792859","UTAHDWQ_WQX-BRI210607-4904940-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904940-0608-4-C/results/933792859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7175","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","14:35:00","MST","2021-07-20 21:35:00",NA,"1.84",1840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792882","UTAHDWQ_WQX-BRI210719-4904940-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904940-0720-4-C/results/933792882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7176","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","14:35:00","MST","2021-07-20 21:35:00",NA,"2.01",2010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792885","UTAHDWQ_WQX-BRI210719-4904940-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904940-0720-4-C/results/933792885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7177","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","13:25:00","MST","2021-08-10 20:25:00",NA,"25.3",25300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792891","UTAHDWQ_WQX-BRI210809-4904940-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904940-0810-4-C/results/933792891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7178","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","13:25:00","MST","2021-08-10 20:25:00",NA,"25",25000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792894","UTAHDWQ_WQX-BRI210809-4904940-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904940-0810-4-C/results/933792894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7179","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","11:11:00","MST","2021-09-29 18:11:00",NA,"13.2",13200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792916","UTAHDWQ_WQX-BRI210920-4904940-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904940-0929-4-C/results/933792916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7180","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","11:11:00","MST","2021-09-29 18:11:00",NA,"14.1",14100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792919","UTAHDWQ_WQX-BRI210920-4904940-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK @ US 89 XING","River/Stream",NA,"41.6679800000",41.66798,"-111.8905100000",-111.89051,"OK","16010203","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6679800000","-111.8905100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904940-0929-4-C/results/933792919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7181","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:20:00","MST","2021-04-07 17:20:00",NA,"3.61",3610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792942","UTAHDWQ_WQX-BRI210405-4904943-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904943-0407-4-C/results/933792942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7182","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","10:20:00","MST","2021-04-07 17:20:00",NA,"3.6",3600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792945","UTAHDWQ_WQX-BRI210405-4904943-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904943-0407-4-C/results/933792945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7183","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","10:30:00","MST","2021-05-05 17:30:00",NA,"3.89",3890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792951","UTAHDWQ_WQX-BRI210503-4904943-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904943-0505-4-C/results/933792951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7184","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","10:30:00","MST","2021-05-05 17:30:00",NA,"3.96",3960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792954","UTAHDWQ_WQX-BRI210503-4904943-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904943-0505-4-C/results/933792954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7185","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","11:30:00","MST","2021-06-10 18:30:00",NA,"2.72",2720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792960","UTAHDWQ_WQX-BRI210607-4904943-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904943-0610-4-C/results/933792960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7186","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","11:30:00","MST","2021-06-10 18:30:00",NA,"2.45",2450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792963","UTAHDWQ_WQX-BRI210607-4904943-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904943-0610-4-C/results/933792963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7187","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","09:40:00","MST","2021-07-21 16:40:00",NA,"3.22",3220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792986","UTAHDWQ_WQX-BRI210719-4904943-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904943-0721-4-C/results/933792986/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7188","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","09:40:00","MST","2021-07-21 16:40:00",NA,"3.19",3190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792989","UTAHDWQ_WQX-BRI210719-4904943-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904943-0721-4-C/results/933792989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7189","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","12:50:00","MST","2021-08-11 19:50:00",NA,"2.62",2620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792995","UTAHDWQ_WQX-BRI210809-4904943-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904943-0811-4-C/results/933792995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7190","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","12:50:00","MST","2021-08-11 19:50:00",NA,"2.33",2330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933792998","UTAHDWQ_WQX-BRI210809-4904943-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904943-0811-4-C/results/933792998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7191","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","12:30:00","MST","2021-09-29 19:30:00",NA,"4",4000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793021","UTAHDWQ_WQX-BRI210920-4904943-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904943-0929-4-C/results/933793021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7192","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","12:30:00","MST","2021-09-29 19:30:00",NA,"4.34",4340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793024","UTAHDWQ_WQX-BRI210920-4904943-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"41.6541000000",41.6541,"-111.8888400000",-111.88884,"OK","16010203","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6541000000","-111.8888400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904943-0929-4-C/results/933793024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7193","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:20:00","MST","2021-04-06 19:20:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793030","UTAHDWQ_WQX-BRI210405-4904965-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904965-0406-4-C/results/933793030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7194","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","12:20:00","MST","2021-04-06 19:20:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793033","UTAHDWQ_WQX-BRI210405-4904965-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904965-0406-4-C/results/933793033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7195","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","12:00:00","MST","2021-05-04 19:00:00",NA,"0.832",832,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793056","UTAHDWQ_WQX-BRI210503-4904965-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904965-0504-4-C/results/933793056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7196","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","12:00:00","MST","2021-05-04 19:00:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793059","UTAHDWQ_WQX-BRI210503-4904965-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904965-0504-4-C/results/933793059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7197","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","12:20:00","MST","2021-06-08 19:20:00",NA,"0.839",839,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793065","UTAHDWQ_WQX-BRI210607-4904965-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904965-0608-4-C/results/933793065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7198","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","12:20:00","MST","2021-06-08 19:20:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793068","UTAHDWQ_WQX-BRI210607-4904965-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904965-0608-4-C/results/933793068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7199","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","14:00:00","MST","2021-07-20 21:00:00",NA,"0.62",620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793091","UTAHDWQ_WQX-BRI210719-4904965-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904965-0720-4-C/results/933793091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7200","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","14:00:00","MST","2021-07-20 21:00:00",NA,"0.644",644,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793094","UTAHDWQ_WQX-BRI210719-4904965-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904965-0720-4-C/results/933793094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7201","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","12:45:00","MST","2021-08-10 19:45:00",NA,"4.04",4040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793100","UTAHDWQ_WQX-BRI210809-4904965-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904965-0810-4-C/results/933793100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7202","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","12:45:00","MST","2021-08-10 19:45:00",NA,"4.24",4240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793103","UTAHDWQ_WQX-BRI210809-4904965-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904965-0810-4-C/results/933793103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7203","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","10:35:00","MST","2021-09-29 17:35:00",NA,"3.56",3560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793125","UTAHDWQ_WQX-BRI210920-4904965-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904965-0929-4-C/results/933793125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7204","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","10:35:00","MST","2021-09-29 17:35:00",NA,"3.34",3340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793128","UTAHDWQ_WQX-BRI210920-4904965-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"41.6999100000",41.69991,"-111.9026700000",-111.90267,"OK","16010203","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6999100000","-111.9026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904965-0929-4-C/results/933793128/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7205","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:10:00","MST","2021-04-06 19:10:00",NA,"0.975",975,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793134","UTAHDWQ_WQX-BRI210405-4904990-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904990-0406-4-C/results/933793134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7206","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","12:10:00","MST","2021-04-06 19:10:00",NA,"0.891",891,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793137","UTAHDWQ_WQX-BRI210405-4904990-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904990-0406-4-C/results/933793137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7207","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","11:50:00","MST","2021-05-04 18:50:00",NA,"0.884",884,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793160","UTAHDWQ_WQX-BRI210503-4904990-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904990-0504-4-C/results/933793160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7208","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","11:50:00","MST","2021-05-04 18:50:00",NA,"0.951",951,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793163","UTAHDWQ_WQX-BRI210503-4904990-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904990-0504-4-C/results/933793163/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7209","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","12:00:00","MST","2021-06-08 19:00:00",NA,"0.86",860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793169","UTAHDWQ_WQX-BRI210607-4904990-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904990-0608-4-C/results/933793169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7210","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","12:00:00","MST","2021-06-08 19:00:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793172","UTAHDWQ_WQX-BRI210607-4904990-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904990-0608-4-C/results/933793172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7211","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:55:00","MST","2021-07-20 20:55:00",NA,"0.873",873,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793195","UTAHDWQ_WQX-BRI210719-4904990-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904990-0720-4-C/results/933793195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7212","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","13:55:00","MST","2021-07-20 20:55:00",NA,"0.898",898,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793198","UTAHDWQ_WQX-BRI210719-4904990-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904990-0720-4-C/results/933793198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7213","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","12:30:00","MST","2021-08-10 19:30:00",NA,"0.898",898,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793204","UTAHDWQ_WQX-BRI210809-4904990-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904990-0810-4-C/results/933793204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7214","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","12:30:00","MST","2021-08-10 19:30:00",NA,"0.886",886,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793207","UTAHDWQ_WQX-BRI210809-4904990-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904990-0810-4-C/results/933793207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7215","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","10:15:00","MST","2021-09-29 17:15:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793229","UTAHDWQ_WQX-BRI210920-4904990-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904990-0929-4-C/results/933793229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7216","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","10:15:00","MST","2021-09-29 17:15:00",NA,"1.75",1750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793232","UTAHDWQ_WQX-BRI210920-4904990-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"41.6979900000",41.69799,"-111.8810500000",-111.88105,"OK","16010203","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6979900000","-111.8810500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904990-0929-4-C/results/933793232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7217","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","11:30:00","MST","2021-04-06 18:30:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793238","UTAHDWQ_WQX-BRI210405-4905000-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905000-0406-4-C/results/933793238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7218","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","11:30:00","MST","2021-04-06 18:30:00",NA,"0.99",990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793241","UTAHDWQ_WQX-BRI210405-4905000-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905000-0406-4-C/results/933793241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7219","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","11:00:00","MST","2021-05-04 18:00:00",NA,"0.658",658,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793264","UTAHDWQ_WQX-BRI210503-4905000-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905000-0504-4-C/results/933793264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7220","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","11:00:00","MST","2021-05-04 18:00:00",NA,"0.651",651,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793267","UTAHDWQ_WQX-BRI210503-4905000-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905000-0504-4-C/results/933793267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7221","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","11:10:00","MST","2021-06-08 18:10:00",NA,"0.861",861,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793273","UTAHDWQ_WQX-BRI210607-4905000-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905000-0608-4-C/results/933793273/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7222","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","11:10:00","MST","2021-06-08 18:10:00",NA,"0.785",785,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793276","UTAHDWQ_WQX-BRI210607-4905000-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905000-0608-4-C/results/933793276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7223","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","13:15:00","MST","2021-06-15 20:15:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793303","UTAHDWQ_WQX-LAKES210614-4905000-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4905000-0615-4-C/results/933793303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7224","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","13:15:00","MST","2021-06-15 20:15:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793307","UTAHDWQ_WQX-LAKES210614-4905000-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4905000-0615-4-C/results/933793307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7225","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","12:50:00","MST","2021-07-20 19:50:00",NA,"0.743",743,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793330","UTAHDWQ_WQX-BRI210719-4905000-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905000-0720-4-C/results/933793330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7226","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","12:50:00","MST","2021-07-20 19:50:00",NA,"0.749",749,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793333","UTAHDWQ_WQX-BRI210719-4905000-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905000-0720-4-C/results/933793333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7227","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","11:45:00","MST","2021-08-10 18:45:00",NA,"0.755",755,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793339","UTAHDWQ_WQX-BRI210809-4905000-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905000-0810-4-C/results/933793339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7228","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","11:45:00","MST","2021-08-10 18:45:00",NA,"0.888",888,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793342","UTAHDWQ_WQX-BRI210809-4905000-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905000-0810-4-C/results/933793342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7229","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:45:00","MST","2021-09-14 20:45:00",NA,"0.454",454,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793368","UTAHDWQ_WQX-LAKES210913-4905000-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905000-0914-4-C/results/933793368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7230","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","13:45:00","MST","2021-09-14 20:45:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793372","UTAHDWQ_WQX-LAKES210913-4905000-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905000-0914-4-C/results/933793372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7231","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","09:30:00","MST","2021-09-29 16:30:00",NA,"0.892",892,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793395","UTAHDWQ_WQX-BRI210920-4905000-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905000-0929-4-C/results/933793395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7232","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","09:30:00","MST","2021-09-29 16:30:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793398","UTAHDWQ_WQX-BRI210920-4905000-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905000-0929-4-C/results/933793398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7233","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","11:10:00","MST","2021-04-06 18:10:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793404","UTAHDWQ_WQX-BRI210405-4905040-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905040-0406-4-C/results/933793404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7234","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","11:10:00","MST","2021-04-06 18:10:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793407","UTAHDWQ_WQX-BRI210405-4905040-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905040-0406-4-C/results/933793407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7235","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","12:00:00","MST","2021-04-06 19:00:00",NA,"0.495",495,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793427","UTAHDWQ_WQX-BRI210405-4905400-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905400-0406-4-C/results/933793427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7236","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:00:00","MST","2021-04-06 19:00:00",NA,"0.479",479,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793433","UTAHDWQ_WQX-BRI210405-4905400-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905400-0406-4-C/results/933793433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7237","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","10:30:00","MST","2021-05-04 17:30:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793456","UTAHDWQ_WQX-BRI210503-4905040-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905040-0504-4-C/results/933793456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7238","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","10:30:00","MST","2021-05-04 17:30:00",NA,"0.704",704,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793459","UTAHDWQ_WQX-BRI210503-4905040-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905040-0504-4-C/results/933793459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7239","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","10:50:00","MST","2021-06-08 17:50:00",NA,"0.474",474,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793465","UTAHDWQ_WQX-BRI210607-4905040-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905040-0608-4-C/results/933793465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7240","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","10:50:00","MST","2021-06-08 17:50:00",NA,"0.521",521,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793468","UTAHDWQ_WQX-BRI210607-4905040-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905040-0608-4-C/results/933793468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7241","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","13:35:00","MST","2021-06-15 20:35:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793495","UTAHDWQ_WQX-LAKES210614-4905040-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4905040-0615-4-C/results/933793495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7242","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","13:35:00","MST","2021-06-15 20:35:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793499","UTAHDWQ_WQX-LAKES210614-4905040-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4905040-0615-4-C/results/933793499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7243","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","11:45:00","MST","2021-06-22 18:45:00",NA,"2.73",2730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793522","UTAHDWQ_WQX-LOGANRV210622-4905040-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905040-0622-4-C/results/933793522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7244","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","12:25:00","MST","2021-07-20 19:25:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793528","UTAHDWQ_WQX-BRI210719-4905040-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905040-0720-4-C/results/933793528/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7245","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","12:25:00","MST","2021-07-20 19:25:00",NA,"1.87",1870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793531","UTAHDWQ_WQX-BRI210719-4905040-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905040-0720-4-C/results/933793531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7246","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","11:25:00","MST","2021-08-10 18:25:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793537","UTAHDWQ_WQX-BRI210809-4905040-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905040-0810-4-C/results/933793537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7247","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","11:25:00","MST","2021-08-10 18:25:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793540","UTAHDWQ_WQX-BRI210809-4905040-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905040-0810-4-C/results/933793540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7248","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","13:15:00","MST","2021-08-24 20:15:00",NA,"0.631",631,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793562","UTAHDWQ_WQX-LOGANRV210824-4905040-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905040-0824-4-C/results/933793562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7249","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","14:00:00","MST","2021-09-14 21:00:00",NA,"0.753",753,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793572","UTAHDWQ_WQX-LAKES210913-4905040-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905040-0914-4-C/results/933793572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7250","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","14:00:00","MST","2021-09-14 21:00:00",NA,"0.797",797,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793576","UTAHDWQ_WQX-LAKES210913-4905040-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905040-0914-4-C/results/933793576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7251","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","14:34:00","MST","2021-09-28 21:34:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793599","UTAHDWQ_WQX-BRI210920-4905040-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905040-0928-4-C/results/933793599/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7252","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","14:34:00","MST","2021-09-28 21:34:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793602","UTAHDWQ_WQX-BRI210920-4905040-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905040-0928-4-C/results/933793602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7253","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","11:00:00","MST","2021-04-06 18:00:00",NA,"11.9",11900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793608","UTAHDWQ_WQX-BRI210405-4905050-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905050-0406-4-C/results/933793608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7254","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","11:00:00","MST","2021-04-06 18:00:00",NA,"11.5",11500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793611","UTAHDWQ_WQX-BRI210405-4905050-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905050-0406-4-C/results/933793611/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7255","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","10:00:00","MST","2021-05-04 17:00:00",NA,"6.15",6150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793651","UTAHDWQ_WQX-BRI210503-4905050-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905050-0504-4-C/results/933793651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7256","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","10:00:00","MST","2021-05-04 17:00:00",NA,"6.78",6780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793654","UTAHDWQ_WQX-BRI210503-4905050-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905050-0504-4-C/results/933793654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7257","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","10:20:00","MST","2021-06-08 17:20:00",NA,"2.45",2450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793694","UTAHDWQ_WQX-BRI210607-4905050-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905050-0608-4-C/results/933793694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7258","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","10:20:00","MST","2021-06-08 17:20:00",NA,"2.44",2440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793697","UTAHDWQ_WQX-BRI210607-4905050-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905050-0608-4-C/results/933793697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7259","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","12:00:00","MST","2021-07-20 19:00:00",NA,"0.743",743,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793771","UTAHDWQ_WQX-BRI210719-4905050-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905050-0720-4-C/results/933793771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7260","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","12:00:00","MST","2021-07-20 19:00:00",NA,"0.788",788,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793774","UTAHDWQ_WQX-BRI210719-4905050-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905050-0720-4-C/results/933793774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7261","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","11:00:00","MST","2021-08-10 18:00:00",NA,"2.49",2490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793780","UTAHDWQ_WQX-BRI210809-4905050-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905050-0810-4-C/results/933793780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7262","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","11:00:00","MST","2021-08-10 18:00:00",NA,"2.52",2520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793783","UTAHDWQ_WQX-BRI210809-4905050-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905050-0810-4-C/results/933793783/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7263","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","14:05:00","MST","2021-09-28 21:05:00",NA,"0.427",427,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793822","UTAHDWQ_WQX-BRI210920-4905050-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905050-0928-4-C/results/933793822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7264","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","14:05:00","MST","2021-09-28 21:05:00",NA,"0.475",475,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793825","UTAHDWQ_WQX-BRI210920-4905050-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"41.7708100000",41.77081,"-111.9118600000",-111.91186,"OK","16010203","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7708100000","-111.9118600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905050-0928-4-C/results/933793825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7265","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","10:40:00","MST","2021-04-06 17:40:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793866","UTAHDWQ_WQX-BRI210405-4905052-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905052-0406-4-C/results/933793866/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7266","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","10:40:00","MST","2021-04-06 17:40:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793869","UTAHDWQ_WQX-BRI210405-4905052-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905052-0406-4-C/results/933793869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7267","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","09:40:00","MST","2021-05-04 16:40:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793910","UTAHDWQ_WQX-BRI210503-4905052-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905052-0504-4-C/results/933793910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7268","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","09:40:00","MST","2021-05-04 16:40:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793913","UTAHDWQ_WQX-BRI210503-4905052-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905052-0504-4-C/results/933793913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7269","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","10:15:00","MST","2021-06-08 17:15:00",NA,"1.5",1500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793954","UTAHDWQ_WQX-BRI210607-4905052-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905052-0608-4-C/results/933793954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7270","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","10:15:00","MST","2021-06-08 17:15:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933793957","UTAHDWQ_WQX-BRI210607-4905052-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905052-0608-4-C/results/933793957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7271","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","11:50:00","MST","2021-07-20 18:50:00",NA,"0.486",486,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794033","UTAHDWQ_WQX-BRI210719-4905052-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905052-0720-4-C/results/933794033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7272","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","11:50:00","MST","2021-07-20 18:50:00",NA,"0.692",692,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794036","UTAHDWQ_WQX-BRI210719-4905052-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905052-0720-4-C/results/933794036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7273","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","10:45:00","MST","2021-08-10 17:45:00",NA,"2.38",2380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794043","UTAHDWQ_WQX-BRI210809-4905052-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905052-0810-4-C/results/933794043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7274","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","10:45:00","MST","2021-08-10 17:45:00",NA,"2.73",2730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794046","UTAHDWQ_WQX-BRI210809-4905052-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905052-0810-4-C/results/933794046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7275","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","13:54:00","MST","2021-09-28 20:54:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794086","UTAHDWQ_WQX-BRI210920-4905052-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905052-0928-4-C/results/933794086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7276","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","13:54:00","MST","2021-09-28 20:54:00",NA,"0.385",385,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794089","UTAHDWQ_WQX-BRI210920-4905052-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"41.7714200000",41.77142,"-111.9110600000",-111.91106,"OK","16010203","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7714200000","-111.9110600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905052-0928-4-C/results/933794089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7277","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","10:10:00","MST","2021-04-06 17:10:00",NA,"22.6",22600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794130","UTAHDWQ_WQX-BRI210405-4905070-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905070-0406-4-C/results/933794130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7278","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","10:10:00","MST","2021-04-06 17:10:00",NA,"21.3",21300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794133","UTAHDWQ_WQX-BRI210405-4905070-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905070-0406-4-C/results/933794133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7279","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","09:15:00","MST","2021-05-04 16:15:00",NA,"16.4",16400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794174","UTAHDWQ_WQX-BRI210503-4905070-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905070-0504-4-C/results/933794174/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7280","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","09:15:00","MST","2021-05-04 16:15:00",NA,"15.3",15300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794177","UTAHDWQ_WQX-BRI210503-4905070-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905070-0504-4-C/results/933794177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7281","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","09:45:00","MST","2021-06-08 16:45:00",NA,"15",15000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794217","UTAHDWQ_WQX-BRI210607-4905070-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905070-0608-4-C/results/933794217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7282","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","09:45:00","MST","2021-06-08 16:45:00",NA,"14.6",14600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794220","UTAHDWQ_WQX-BRI210607-4905070-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905070-0608-4-C/results/933794220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7283","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","10:50:00","MST","2021-07-06 17:50:00",NA,"16.4",16400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794261","UTAHDWQ_WQX-BRI210706-4905070-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905070-0706-4-C/results/933794261/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7284","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","10:50:00","MST","2021-07-06 17:50:00",NA,"17",17000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794264","UTAHDWQ_WQX-BRI210706-4905070-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905070-0706-4-C/results/933794264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7285","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","11:10:00","MST","2021-07-20 18:10:00",NA,"16.1",16100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794339","UTAHDWQ_WQX-BRI210719-4905070-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905070-0720-4-C/results/933794339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7286","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","11:10:00","MST","2021-07-20 18:10:00",NA,"16.8",16800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794342","UTAHDWQ_WQX-BRI210719-4905070-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905070-0720-4-C/results/933794342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7287","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","10:15:00","MST","2021-08-10 17:15:00",NA,"14.8",14800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794349","UTAHDWQ_WQX-BRI210809-4905070-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905070-0810-4-C/results/933794349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7288","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","10:15:00","MST","2021-08-10 17:15:00",NA,"15.2",15200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794352","UTAHDWQ_WQX-BRI210809-4905070-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905070-0810-4-C/results/933794352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7289","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","13:22:00","MST","2021-09-28 20:22:00",NA,"16.4",16400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794392","UTAHDWQ_WQX-BRI210920-4905070-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905070-0928-4-C/results/933794392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7290","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","13:22:00","MST","2021-09-28 20:22:00",NA,"16.9",16900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794395","UTAHDWQ_WQX-BRI210920-4905070-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN LAGOONS 001","Facility Other",NA,"41.7397300000",41.73973,"-111.8994400000",-111.89944,"OK","16010203","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7397300000","-111.8994400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905070-0928-4-C/results/933794395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7291","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","10:30:00","MST","2021-04-06 17:30:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794436","UTAHDWQ_WQX-BRI210405-4905078-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905078-0406-4-C/results/933794436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7292","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","10:30:00","MST","2021-04-06 17:30:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794439","UTAHDWQ_WQX-BRI210405-4905078-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905078-0406-4-C/results/933794439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7293","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","09:30:00","MST","2021-05-04 16:30:00",NA,"0.501",501,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794480","UTAHDWQ_WQX-BRI210503-4905078-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905078-0504-4-C/results/933794480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7294","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","09:30:00","MST","2021-05-04 16:30:00",NA,"0.711",711,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794483","UTAHDWQ_WQX-BRI210503-4905078-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905078-0504-4-C/results/933794483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7295","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","09:30:00","MST","2021-06-08 16:30:00",NA,"0.264",264,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794524","UTAHDWQ_WQX-BRI210607-4905078-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905078-0608-4-C/results/933794524/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7296","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","09:30:00","MST","2021-06-08 16:30:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794527","UTAHDWQ_WQX-BRI210607-4905078-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905078-0608-4-C/results/933794527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7297","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","11:00:00","MST","2021-07-06 18:00:00",NA,"11.5",11500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794568","UTAHDWQ_WQX-BRI210706-4905078-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905078-0706-4-C/results/933794568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7298","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","11:00:00","MST","2021-07-06 18:00:00",NA,"11.6",11600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794571","UTAHDWQ_WQX-BRI210706-4905078-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905078-0706-4-C/results/933794571/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7299","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","11:25:00","MST","2021-07-20 18:25:00",NA,"7.05",7050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794646","UTAHDWQ_WQX-BRI210719-4905078-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905078-0720-4-C/results/933794646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7300","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","11:25:00","MST","2021-07-20 18:25:00",NA,"7.58",7580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794649","UTAHDWQ_WQX-BRI210719-4905078-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905078-0720-4-C/results/933794649/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7301","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","10:25:00","MST","2021-08-10 17:25:00",NA,"6.99",6990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794656","UTAHDWQ_WQX-BRI210809-4905078-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905078-0810-4-C/results/933794656/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7302","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","10:25:00","MST","2021-08-10 17:25:00",NA,"7.57",7570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794659","UTAHDWQ_WQX-BRI210809-4905078-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905078-0810-4-C/results/933794659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7303","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","13:32:00","MST","2021-09-28 20:32:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794699","UTAHDWQ_WQX-BRI210920-4905078-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905078-0928-4-C/results/933794699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7304","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","13:32:00","MST","2021-09-28 20:32:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794702","UTAHDWQ_WQX-BRI210920-4905078-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"41.7382600000",41.73826,"-111.8971000000",-111.8971,"OK","16010203","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7382600000","-111.8971000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905078-0928-4-C/results/933794702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7305","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","10:50:00","MST","2021-04-06 17:50:00",NA,"16.9",16900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794743","UTAHDWQ_WQX-BRI210405-4905090-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905090-0406-4-C/results/933794743/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7306","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","10:50:00","MST","2021-04-06 17:50:00",NA,"16.5",16500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794746","UTAHDWQ_WQX-BRI210405-4905090-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905090-0406-4-C/results/933794746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7307","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","09:50:00","MST","2021-05-04 16:50:00",NA,"11.2",11200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794787","UTAHDWQ_WQX-BRI210503-4905090-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905090-0504-4-C/results/933794787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7308","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","09:50:00","MST","2021-05-04 16:50:00",NA,"11.4",11400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794790","UTAHDWQ_WQX-BRI210503-4905090-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905090-0504-4-C/results/933794790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7309","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","10:00:00","MST","2021-06-08 17:00:00",NA,"6.61",6610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794831","UTAHDWQ_WQX-BRI210607-4905090-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905090-0608-4-C/results/933794831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7310","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","10:00:00","MST","2021-06-08 17:00:00",NA,"6.58",6580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794834","UTAHDWQ_WQX-BRI210607-4905090-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan Lagoons 002","Facility Other",NA,"41.7710500000",41.77105,"-111.9111300000",-111.91113,"OK","16010203","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7710500000","-111.9111300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905090-0608-4-C/results/933794834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7311","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","12:35:00","MST","2021-06-22 19:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794874","UTAHDWQ_WQX-LOGANRV210622-4905135-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905135-0622-4-C/results/933794874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7312","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","13:50:00","MST","2021-08-24 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794880","UTAHDWQ_WQX-LOGANRV210824-4905135-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905135-0824-4-C/results/933794880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7313","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","12:30:00","MST","2021-06-22 19:30:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794886","UTAHDWQ_WQX-LOGANRV210622-4905137-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"41.7430900000",41.74309,"-111.9198600000",-111.91986,"OK","16010203","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7430900000","-111.9198600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905137-0622-4-C/results/933794886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7314","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","13:45:00","MST","2021-08-24 20:45:00",NA,"0.676",676,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794892","UTAHDWQ_WQX-LOGANRV210824-4905137-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"41.7430900000",41.74309,"-111.9198600000",-111.91986,"OK","16010203","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7430900000","-111.9198600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905137-0824-4-C/results/933794892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7315","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","10:30:00","MST","2021-06-22 17:30:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794898","UTAHDWQ_WQX-LOGANRV210622-4905140-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905140-0622-4-C/results/933794898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7316","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","10:24:00","MST","2021-06-22 17:24:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794906","UTAHDWQ_WQX-UCASE2021-4905140-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905140-0622-4-C/results/933794906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7317","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","10:24:00","MST","2021-06-22 17:24:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794909","UTAHDWQ_WQX-UCASE2021-4905140-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905140-0622-4-C/results/933794909/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7318","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","11:30:00","MST","2021-08-24 18:30:00",NA,"0.453",453,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794933","UTAHDWQ_WQX-LOGANRV210824-4905140-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905140-0824-4-C/results/933794933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7319","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","10:30:00","MST","2021-06-22 17:30:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794939","UTAHDWQ_WQX-LOGANRV210622-4905142-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905142-0622-4-C/results/933794939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7320","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","11:45:00","MST","2021-08-24 18:45:00",NA,"0.428",428,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794945","UTAHDWQ_WQX-LOGANRV210824-4905142-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905142-0824-4-C/results/933794945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7321","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","09:45:00","MST","2021-06-22 16:45:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794951","UTAHDWQ_WQX-LOGANRV210622-4905188-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905188-0622-4-C/results/933794951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7322","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-23","11:17:00","MST","2021-06-23 18:17:00",NA,"0.798",798,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794959","UTAHDWQ_WQX-UCASE2021-4905188-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905188-0623-4-C/results/933794959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7323","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","11:17:00","MST","2021-06-23 18:17:00",NA,"0.797",797,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794962","UTAHDWQ_WQX-UCASE2021-4905188-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905188-0623-4-C/results/933794962/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7324","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","10:45:00","MST","2021-08-24 17:45:00",NA,"0.698",698,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794986","UTAHDWQ_WQX-LOGANRV210824-4905188-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905188-0824-4-C/results/933794986/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7325","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","09:30:00","MST","2021-06-22 16:30:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794992","UTAHDWQ_WQX-LOGANRV210622-4905192-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905192-0622-4-C/results/933794992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7326","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","10:30:00","MST","2021-08-24 17:30:00",NA,"0.287",287,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933794998","UTAHDWQ_WQX-LOGANRV210824-4905192-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905192-0824-4-C/results/933794998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7327","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-07","14:30:00","MST","2021-09-07 21:30:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795006","UTAHDWQ_WQX-UCASE2021-4905192-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905192-0907-4-C/results/933795006/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7328","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-07","14:30:00","MST","2021-09-07 21:30:00",NA,"0.258",258,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795009","UTAHDWQ_WQX-UCASE2021-4905192-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905192-0907-4-C/results/933795009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7329","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","14:00:00","MST","2021-06-21 21:00:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795034","UTAHDWQ_WQX-UCASE2021-4905195-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905195-0621-4-C/results/933795034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7330","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","14:00:00","MST","2021-06-21 21:00:00",NA,"0.403",403,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795037","UTAHDWQ_WQX-UCASE2021-4905195-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905195-0621-4-C/results/933795037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7331","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","08:45:00","MST","2021-06-22 15:45:00",NA,"0.22",220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795061","UTAHDWQ_WQX-LOGANRV210622-4905195-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905195-0622-4-C/results/933795061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7332","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","09:45:00","MST","2021-08-24 16:45:00",NA,"0.305",305,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795067","UTAHDWQ_WQX-LOGANRV210824-4905195-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905195-0824-4-C/results/933795067/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7333","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","08:30:00","MST","2021-06-22 15:30:00",NA,"0.118",118,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795073","UTAHDWQ_WQX-LOGANRV210622-4905198-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905198-0622-4-C/results/933795073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7334","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","09:00:00","MST","2021-08-24 16:00:00",NA,"0.177",177,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795079","UTAHDWQ_WQX-LOGANRV210824-4905198-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905198-0824-4-C/results/933795079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7335","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","14:00:00","MST","2021-09-01 21:00:00",NA,"0.305",305,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795087","UTAHDWQ_WQX-UCASE2021-4905198-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905198-0901-4-C/results/933795087/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7336","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","14:00:00","MST","2021-09-01 21:00:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795090","UTAHDWQ_WQX-UCASE2021-4905198-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905198-0901-4-C/results/933795090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7337","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","15:45:00","MST","2021-04-05 22:45:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795114","UTAHDWQ_WQX-BRI210405-4905200-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905200-0405-4-C/results/933795114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7338","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","15:45:00","MST","2021-04-05 22:45:00",NA,"0.379",379,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795117","UTAHDWQ_WQX-BRI210405-4905200-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905200-0405-4-C/results/933795117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7339","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","08:50:00","MST","2021-05-04 15:50:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795140","UTAHDWQ_WQX-BRI210503-4905200-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905200-0504-4-C/results/933795140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7340","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","08:50:00","MST","2021-05-04 15:50:00",NA,"0.34",340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795143","UTAHDWQ_WQX-BRI210503-4905200-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905200-0504-4-C/results/933795143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7341","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","09:08:00","MST","2021-06-08 16:08:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795149","UTAHDWQ_WQX-BRI210607-4905200-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905200-0608-4-C/results/933795149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7342","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","09:08:00","MST","2021-06-08 16:08:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795152","UTAHDWQ_WQX-BRI210607-4905200-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905200-0608-4-C/results/933795152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7343","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","10:00:00","MST","2021-07-20 17:00:00",NA,"0.171",171,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795175","UTAHDWQ_WQX-BRI210719-4905200-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905200-0720-4-C/results/933795175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7344","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","10:00:00","MST","2021-07-20 17:00:00",NA,"0.147",147,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795178","UTAHDWQ_WQX-BRI210719-4905200-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905200-0720-4-C/results/933795178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7345","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","09:40:00","MST","2021-08-10 16:40:00",NA,"0.128",128,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795184","UTAHDWQ_WQX-BRI210809-4905200-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905200-0810-4-C/results/933795184/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7346","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","09:40:00","MST","2021-08-10 16:40:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795187","UTAHDWQ_WQX-BRI210809-4905200-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905200-0810-4-C/results/933795187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7347","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","12:52:00","MST","2021-09-28 19:52:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795209","UTAHDWQ_WQX-BRI210920-4905200-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905200-0928-4-C/results/933795209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7348","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","12:52:00","MST","2021-09-28 19:52:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795212","UTAHDWQ_WQX-BRI210920-4905200-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905200-0928-4-C/results/933795212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7349","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","15:50:00","MST","2021-04-05 22:50:00",NA,"0.206",206,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795218","UTAHDWQ_WQX-BRI210405-4905301-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905301-0405-4-C/results/933795218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7350","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","15:50:00","MST","2021-04-05 22:50:00",NA,"0.196",196,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795221","UTAHDWQ_WQX-BRI210405-4905301-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905301-0405-4-C/results/933795221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7351","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","09:00:00","MST","2021-05-04 16:00:00",NA,"0.303",303,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795244","UTAHDWQ_WQX-BRI210503-4905301-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905301-0504-4-C/results/933795244/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7352","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","09:00:00","MST","2021-05-04 16:00:00",NA,"0.49",490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795247","UTAHDWQ_WQX-BRI210503-4905301-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905301-0504-4-C/results/933795247/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7353","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","09:11:00","MST","2021-06-08 16:11:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795253","UTAHDWQ_WQX-BRI210607-4905301-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905301-0608-4-C/results/933795253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7354","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","09:11:00","MST","2021-06-08 16:11:00",NA,"0.206",206,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795256","UTAHDWQ_WQX-BRI210607-4905301-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905301-0608-4-C/results/933795256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7355","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","10:05:00","MST","2021-07-20 17:05:00",NA,"0.143",143,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795279","UTAHDWQ_WQX-BRI210719-4905301-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905301-0720-4-C/results/933795279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7356","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","10:05:00","MST","2021-07-20 17:05:00",NA,"0.509",509,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795282","UTAHDWQ_WQX-BRI210719-4905301-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905301-0720-4-C/results/933795282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7357","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","09:45:00","MST","2021-08-10 16:45:00",NA,"0.137",137,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795288","UTAHDWQ_WQX-BRI210809-4905301-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905301-0810-4-C/results/933795288/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7358","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","09:45:00","MST","2021-08-10 16:45:00",NA,"0.144",144,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795291","UTAHDWQ_WQX-BRI210809-4905301-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905301-0810-4-C/results/933795291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7359","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","12:56:00","MST","2021-09-28 19:56:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795313","UTAHDWQ_WQX-BRI210920-4905301-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905301-0928-4-C/results/933795313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7360","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","12:56:00","MST","2021-09-28 19:56:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795316","UTAHDWQ_WQX-BRI210920-4905301-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","41.7435600000",41.74356,"-111.7845000000",-111.7845,"OK","16010203","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7435600000","-111.7845000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905301-0928-4-C/results/933795316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7361","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","11:30:00","MST","2021-05-04 18:30:00",NA,"0.641",641,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795322","UTAHDWQ_WQX-BRI210503-4905400-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905400-0504-4-C/results/933795322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7362","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","11:30:00","MST","2021-05-04 18:30:00",NA,"0.874",874,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795325","UTAHDWQ_WQX-BRI210503-4905400-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905400-0504-4-C/results/933795325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","11:40:00","MST","2021-06-08 18:40:00",NA,"0.723",723,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795331","UTAHDWQ_WQX-BRI210607-4905400-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905400-0608-4-C/results/933795331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7364","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","11:40:00","MST","2021-06-08 18:40:00",NA,"0.931",931,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795334","UTAHDWQ_WQX-BRI210607-4905400-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905400-0608-4-C/results/933795334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7365","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","10:00:00","MST","2021-06-22 17:00:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795357","UTAHDWQ_WQX-LOGANRV210622-4905400-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905400-0622-4-C/results/933795357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7366","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-24","12:49:00","MST","2021-06-24 19:49:00",NA,"0.216",216,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795365","UTAHDWQ_WQX-UCASE2021-4905400-0624-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905400-0624-4-C/results/933795365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7367","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-24","12:49:00","MST","2021-06-24 19:49:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795368","UTAHDWQ_WQX-UCASE2021-4905400-0624-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905400-0624-4-C/results/933795368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7368","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:20:00","MST","2021-07-20 20:20:00",NA,"0.197",197,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795392","UTAHDWQ_WQX-BRI210719-4905400-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905400-0720-4-C/results/933795392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7369","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","13:20:00","MST","2021-07-20 20:20:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795395","UTAHDWQ_WQX-BRI210719-4905400-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905400-0720-4-C/results/933795395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7370","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","12:20:00","MST","2021-08-10 19:20:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795401","UTAHDWQ_WQX-BRI210809-4905400-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905400-0810-4-C/results/933795401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7371","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","12:20:00","MST","2021-08-10 19:20:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795404","UTAHDWQ_WQX-BRI210809-4905400-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905400-0810-4-C/results/933795404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7372","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","11:00:00","MST","2021-08-24 18:00:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795426","UTAHDWQ_WQX-LOGANRV210824-4905400-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905400-0824-4-C/results/933795426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7373","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","10:04:00","MST","2021-09-29 17:04:00",NA,"0.336",336,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795432","UTAHDWQ_WQX-BRI210920-4905400-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905400-0929-4-C/results/933795432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7374","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","10:04:00","MST","2021-09-29 17:04:00",NA,"0.461",461,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795435","UTAHDWQ_WQX-BRI210920-4905400-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905400-0929-4-C/results/933795435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7375","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:00:00","MST","2021-04-06 21:00:00",NA,"0.597",597,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795441","UTAHDWQ_WQX-BRI210405-4905440-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905440-0406-4-C/results/933795441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7376","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:00:00","MST","2021-04-06 21:00:00",NA,"0.679",679,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795444","UTAHDWQ_WQX-BRI210405-4905440-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905440-0406-4-C/results/933795444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7377","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","14:00:00","MST","2021-05-04 21:00:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795467","UTAHDWQ_WQX-BRI210503-4905440-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905440-0504-4-C/results/933795467/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7378","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","14:00:00","MST","2021-05-04 21:00:00",NA,"0.679",679,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795470","UTAHDWQ_WQX-BRI210503-4905440-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905440-0504-4-C/results/933795470/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7379","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","13:50:00","MST","2021-06-08 20:50:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795476","UTAHDWQ_WQX-BRI210607-4905440-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905440-0608-4-C/results/933795476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7380","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","13:50:00","MST","2021-06-08 20:50:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795479","UTAHDWQ_WQX-BRI210607-4905440-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905440-0608-4-C/results/933795479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7381","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","15:30:00","MST","2021-07-20 22:30:00",NA,"0.132",132,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795502","UTAHDWQ_WQX-BRI210719-4905440-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905440-0720-4-C/results/933795502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7382","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","15:30:00","MST","2021-07-20 22:30:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795505","UTAHDWQ_WQX-BRI210719-4905440-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905440-0720-4-C/results/933795505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7383","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","09:25:00","MST","2021-08-11 16:25:00",NA,"0.105",105,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795511","UTAHDWQ_WQX-BRI210809-4905440-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905440-0811-4-C/results/933795511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7384","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","09:25:00","MST","2021-08-11 16:25:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795514","UTAHDWQ_WQX-BRI210809-4905440-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905440-0811-4-C/results/933795514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7385","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","10:45:00","MST","2021-09-28 17:45:00",NA,"0.258",258,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795537","UTAHDWQ_WQX-BRI210920-4905440-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905440-0928-4-C/results/933795537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7386","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","10:45:00","MST","2021-09-28 17:45:00",NA,"0.222",222,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795540","UTAHDWQ_WQX-BRI210920-4905440-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905440-0928-4-C/results/933795540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7387","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:15:00","MST","2021-04-06 21:15:00",NA,"0.31",310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795546","UTAHDWQ_WQX-BRI210405-4905441-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905441-0406-4-C/results/933795546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7388","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:15:00","MST","2021-04-06 21:15:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795549","UTAHDWQ_WQX-BRI210405-4905441-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905441-0406-4-C/results/933795549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7389","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","14:10:00","MST","2021-05-04 21:10:00",NA,"0.239",239,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795572","UTAHDWQ_WQX-BRI210503-4905441-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905441-0504-4-C/results/933795572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7390","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","14:10:00","MST","2021-05-04 21:10:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795575","UTAHDWQ_WQX-BRI210503-4905441-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905441-0504-4-C/results/933795575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7391","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","14:00:00","MST","2021-06-08 21:00:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795581","UTAHDWQ_WQX-BRI210607-4905441-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905441-0608-4-C/results/933795581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7392","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","14:00:00","MST","2021-06-08 21:00:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795584","UTAHDWQ_WQX-BRI210607-4905441-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905441-0608-4-C/results/933795584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7393","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","15:35:00","MST","2021-07-20 22:35:00",NA,"0.139",139,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795607","UTAHDWQ_WQX-BRI210719-4905441-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905441-0720-4-C/results/933795607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7394","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","15:35:00","MST","2021-07-20 22:35:00",NA,"0.527",527,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795610","UTAHDWQ_WQX-BRI210719-4905441-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905441-0720-4-C/results/933795610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7395","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","09:30:00","MST","2021-08-11 16:30:00",NA,"0.105",105,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795616","UTAHDWQ_WQX-BRI210809-4905441-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905441-0811-4-C/results/933795616/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7396","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","09:30:00","MST","2021-08-11 16:30:00",NA,"0.103",103,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795619","UTAHDWQ_WQX-BRI210809-4905441-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905441-0811-4-C/results/933795619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7397","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","10:55:00","MST","2021-09-28 17:55:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795642","UTAHDWQ_WQX-BRI210920-4905441-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905441-0928-4-C/results/933795642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7398","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","10:55:00","MST","2021-09-28 17:55:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795645","UTAHDWQ_WQX-BRI210920-4905441-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","41.6265900000",41.62659,"-111.8007800000",-111.80078,"OK","16010203","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6265900000","-111.8007800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905441-0928-4-C/results/933795645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7399","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:10:00","MST","2021-04-07 17:10:00",NA,"4.46",4460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795669","UTAHDWQ_WQX-BRI210405-4905520-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905520-0407-4-C/results/933795669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7400","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","10:10:00","MST","2021-04-07 17:10:00",NA,"4.39",4390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795672","UTAHDWQ_WQX-BRI210405-4905520-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905520-0407-4-C/results/933795672/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7401","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","10:40:00","MST","2021-05-05 17:40:00",NA,"7.59",7590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795679","UTAHDWQ_WQX-BRI210503-4905520-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905520-0505-4-C/results/933795679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7402","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","10:40:00","MST","2021-05-05 17:40:00",NA,"7.19",7190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795682","UTAHDWQ_WQX-BRI210503-4905520-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM WWTP","Facility Other",NA,"41.6520200000",41.65202,"-111.8807200000",-111.88072,"OK","16010203","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6520200000","-111.8807200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905520-0505-4-C/results/933795682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7403","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","09:30:00","MST","2021-04-07 16:30:00",NA,"45.7",45700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795706","UTAHDWQ_WQX-BRI210405-4905540-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905540-0407-4-C/results/933795706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7404","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","09:30:00","MST","2021-04-07 16:30:00",NA,"45.7",45700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795709","UTAHDWQ_WQX-BRI210405-4905540-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905540-0407-4-C/results/933795709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7405","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","09:30:00","MST","2021-05-05 16:30:00",NA,"36.5",36500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795716","UTAHDWQ_WQX-BRI210503-4905540-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905540-0505-4-C/results/933795716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7406","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","09:30:00","MST","2021-05-05 16:30:00",NA,"36.5",36500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795719","UTAHDWQ_WQX-BRI210503-4905540-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905540-0505-4-C/results/933795719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7407","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","10:50:00","MST","2021-06-10 17:50:00",NA,"37.6",37600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795726","UTAHDWQ_WQX-BRI210607-4905540-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905540-0610-4-C/results/933795726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7408","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","10:50:00","MST","2021-06-10 17:50:00",NA,"38",38000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795729","UTAHDWQ_WQX-BRI210607-4905540-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905540-0610-4-C/results/933795729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7409","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","12:05:00","MST","2021-08-11 19:05:00",NA,"132",132000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795753","UTAHDWQ_WQX-BRI210809-4905540-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905540-0811-4-C/results/933795753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7410","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","12:05:00","MST","2021-08-11 19:05:00",NA,"128",128000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795756","UTAHDWQ_WQX-BRI210809-4905540-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905540-0811-4-C/results/933795756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7411","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","11:44:00","MST","2021-09-29 18:44:00",NA,"96.9",96900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795780","UTAHDWQ_WQX-BRI210920-4905540-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905540-0929-4-C/results/933795780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7412","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","11:44:00","MST","2021-09-29 18:44:00",NA,"97.5",97500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795783","UTAHDWQ_WQX-BRI210920-4905540-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E. A. MILLER CO. EFFLUENT","Facility Other",NA,"41.6556700000",41.65567,"-111.8689400000",-111.86894,"OK","16010203","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6556700000","-111.8689400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905540-0929-4-C/results/933795783/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7413","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","11:40:00","MST","2021-04-07 18:40:00",NA,"0.993",993,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795807","UTAHDWQ_WQX-BRI210405-4905580-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905580-0407-4-C/results/933795807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7414","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","11:40:00","MST","2021-04-07 18:40:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795810","UTAHDWQ_WQX-BRI210405-4905580-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905580-0407-4-C/results/933795810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7415","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","12:30:00","MST","2021-05-05 19:30:00",NA,"0.736",736,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795817","UTAHDWQ_WQX-BRI210503-4905580-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905580-0505-4-C/results/933795817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7416","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","12:30:00","MST","2021-05-05 19:30:00",NA,"0.854",854,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795820","UTAHDWQ_WQX-BRI210503-4905580-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905580-0505-4-C/results/933795820/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7417","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","13:00:00","MST","2021-06-10 20:00:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795826","UTAHDWQ_WQX-BRI210607-4905580-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905580-0610-4-C/results/933795826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7418","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","13:00:00","MST","2021-06-10 20:00:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795829","UTAHDWQ_WQX-BRI210607-4905580-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905580-0610-4-C/results/933795829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7419","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","14:25:00","MST","2021-08-11 21:25:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795852","UTAHDWQ_WQX-BRI210809-4905580-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905580-0811-4-C/results/933795852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7420","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","14:25:00","MST","2021-08-11 21:25:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795855","UTAHDWQ_WQX-BRI210809-4905580-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905580-0811-4-C/results/933795855/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7421","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","15:05:00","MST","2021-08-23 22:05:00",NA,"0.817",817,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795878","UTAHDWQ_WQX-BRI210823-4905580-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905580-0823-4-C/results/933795878/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7422","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","15:05:00","MST","2021-08-23 22:05:00",NA,"0.975",975,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795881","UTAHDWQ_WQX-BRI210823-4905580-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905580-0823-4-C/results/933795881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7423","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","11:30:00","MST","2021-04-07 18:30:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795904","UTAHDWQ_WQX-BRI210405-4905590-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905590-0407-4-C/results/933795904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7424","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","11:30:00","MST","2021-04-07 18:30:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795907","UTAHDWQ_WQX-BRI210405-4905590-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905590-0407-4-C/results/933795907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7425","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","12:15:00","MST","2021-05-05 19:15:00",NA,"0.869",869,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795930","UTAHDWQ_WQX-BRI210503-4905590-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905590-0505-4-C/results/933795930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7426","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","12:15:00","MST","2021-05-05 19:15:00",NA,"0.963",963,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795933","UTAHDWQ_WQX-BRI210503-4905590-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905590-0505-4-C/results/933795933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7427","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","12:45:00","MST","2021-06-10 19:45:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795939","UTAHDWQ_WQX-BRI210607-4905590-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905590-0610-4-C/results/933795939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7428","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","12:45:00","MST","2021-06-10 19:45:00",NA,"0.979",979,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795942","UTAHDWQ_WQX-BRI210607-4905590-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905590-0610-4-C/results/933795942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7429","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","14:20:00","MST","2021-08-11 21:20:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795965","UTAHDWQ_WQX-BRI210809-4905590-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905590-0811-4-C/results/933795965/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7430","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","14:20:00","MST","2021-08-11 21:20:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795968","UTAHDWQ_WQX-BRI210809-4905590-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905590-0811-4-C/results/933795968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7431","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","15:45:00","MST","2021-08-23 22:45:00",NA,"0.922",922,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795991","UTAHDWQ_WQX-BRI210823-4905590-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905590-0823-4-C/results/933795991/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7432","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","15:45:00","MST","2021-08-23 22:45:00",NA,"0.964",964,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933795994","UTAHDWQ_WQX-BRI210823-4905590-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905590-0823-4-C/results/933795994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7433","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:40:00","MST","2021-04-07 17:40:00",NA,"0.514",514,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796034","UTAHDWQ_WQX-BRI210405-4905630-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905630-0407-4-C/results/933796034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7434","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","10:40:00","MST","2021-04-07 17:40:00",NA,"0.485",485,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796037","UTAHDWQ_WQX-BRI210405-4905630-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905630-0407-4-C/results/933796037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7435","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","11:30:00","MST","2021-05-05 18:30:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796043","UTAHDWQ_WQX-BRI210503-4905630-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905630-0505-4-C/results/933796043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7436","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","11:30:00","MST","2021-05-05 18:30:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796046","UTAHDWQ_WQX-BRI210503-4905630-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905630-0505-4-C/results/933796046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7437","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","12:00:00","MST","2021-06-10 19:00:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796052","UTAHDWQ_WQX-BRI210607-4905630-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905630-0610-4-C/results/933796052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7438","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","12:00:00","MST","2021-06-10 19:00:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796055","UTAHDWQ_WQX-BRI210607-4905630-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905630-0610-4-C/results/933796055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7439","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","10:05:00","MST","2021-07-21 17:05:00",NA,"0.571",571,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796061","UTAHDWQ_WQX-BRI210719-4905630-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905630-0721-4-C/results/933796061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7440","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:05:00","MST","2021-07-21 17:05:00",NA,"0.597",597,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796064","UTAHDWQ_WQX-BRI210719-4905630-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905630-0721-4-C/results/933796064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7441","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","13:40:00","MST","2021-08-11 20:40:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796070","UTAHDWQ_WQX-BRI210809-4905630-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905630-0811-4-C/results/933796070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7442","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","13:40:00","MST","2021-08-11 20:40:00",NA,"0.965",965,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796073","UTAHDWQ_WQX-BRI210809-4905630-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905630-0811-4-C/results/933796073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7443","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","13:08:00","MST","2021-09-29 20:08:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796096","UTAHDWQ_WQX-BRI210920-4905630-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905630-0929-4-C/results/933796096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7444","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","13:08:00","MST","2021-09-29 20:08:00",NA,"0.603",603,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796099","UTAHDWQ_WQX-BRI210920-4905630-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905630-0929-4-C/results/933796099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7445","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:50:00","MST","2021-04-07 17:50:00",NA,"0.548",548,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796122","UTAHDWQ_WQX-BRI210405-4905631-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905631-0407-4-C/results/933796122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7446","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","10:50:00","MST","2021-04-07 17:50:00",NA,"0.657",657,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796125","UTAHDWQ_WQX-BRI210405-4905631-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905631-0407-4-C/results/933796125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7447","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","11:40:00","MST","2021-05-05 18:40:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796131","UTAHDWQ_WQX-BRI210503-4905631-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905631-0505-4-C/results/933796131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7448","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","11:40:00","MST","2021-05-05 18:40:00",NA,"0.647",647,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796134","UTAHDWQ_WQX-BRI210503-4905631-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905631-0505-4-C/results/933796134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7449","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","12:15:00","MST","2021-06-10 19:15:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796140","UTAHDWQ_WQX-BRI210607-4905631-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905631-0610-4-C/results/933796140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7450","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","12:15:00","MST","2021-06-10 19:15:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796143","UTAHDWQ_WQX-BRI210607-4905631-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905631-0610-4-C/results/933796143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7451","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","10:10:00","MST","2021-07-21 17:10:00",NA,"0.633",633,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796166","UTAHDWQ_WQX-BRI210719-4905631-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905631-0721-4-C/results/933796166/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7452","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:10:00","MST","2021-07-21 17:10:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796169","UTAHDWQ_WQX-BRI210719-4905631-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905631-0721-4-C/results/933796169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7453","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","13:45:00","MST","2021-08-11 20:45:00",NA,"0.485",485,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796175","UTAHDWQ_WQX-BRI210809-4905631-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905631-0811-4-C/results/933796175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7454","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","13:45:00","MST","2021-08-11 20:45:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796178","UTAHDWQ_WQX-BRI210809-4905631-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905631-0811-4-C/results/933796178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7455","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","13:13:00","MST","2021-09-29 20:13:00",NA,"0.405",405,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796201","UTAHDWQ_WQX-BRI210920-4905631-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905631-0929-4-C/results/933796201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7456","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","13:13:00","MST","2021-09-29 20:13:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796204","UTAHDWQ_WQX-BRI210920-4905631-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","41.6433900000",41.64339,"-111.9172500000",-111.91725,"OK","16010203","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6433900000","-111.9172500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905631-0929-4-C/results/933796204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7457","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","11:20:00","MST","2021-04-07 18:20:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796227","UTAHDWQ_WQX-BRI210405-4905640-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905640-0407-4-C/results/933796227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7458","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","11:20:00","MST","2021-04-07 18:20:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796230","UTAHDWQ_WQX-BRI210405-4905640-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905640-0407-4-C/results/933796230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7459","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","12:00:00","MST","2021-05-05 19:00:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796236","UTAHDWQ_WQX-BRI210503-4905640-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905640-0505-4-C/results/933796236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7460","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","12:00:00","MST","2021-05-05 19:00:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796239","UTAHDWQ_WQX-BRI210503-4905640-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905640-0505-4-C/results/933796239/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7461","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","12:45:00","MST","2021-06-10 19:45:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796245","UTAHDWQ_WQX-BRI210607-4905640-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905640-0610-4-C/results/933796245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7462","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","12:45:00","MST","2021-06-10 19:45:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796248","UTAHDWQ_WQX-BRI210607-4905640-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905640-0610-4-C/results/933796248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7463","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","16:00:00","MST","2021-06-22 23:00:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796271","UTAHDWQ_WQX-BRI210621-4905640-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4905640-0622-4-C/results/933796271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7464","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","16:00:00","MST","2021-06-22 23:00:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796274","UTAHDWQ_WQX-BRI210621-4905640-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4905640-0622-4-C/results/933796274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7465","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","10:25:00","MST","2021-07-21 17:25:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796297","UTAHDWQ_WQX-BRI210719-4905640-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905640-0721-4-C/results/933796297/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7466","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:25:00","MST","2021-07-21 17:25:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796300","UTAHDWQ_WQX-BRI210719-4905640-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905640-0721-4-C/results/933796300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7467","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","14:00:00","MST","2021-08-11 21:00:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796306","UTAHDWQ_WQX-BRI210809-4905640-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905640-0811-4-C/results/933796306/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7468","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","14:00:00","MST","2021-08-11 21:00:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796309","UTAHDWQ_WQX-BRI210809-4905640-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905640-0811-4-C/results/933796309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7469","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","13:20:00","MST","2021-08-11 20:20:00",NA,"0.803",803,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796330","UTAHDWQ_WQX-BRI210809-4905650-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905650-0811-4-C/results/933796330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7470","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","13:20:00","MST","2021-08-11 20:20:00",NA,"0.935",935,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796335","UTAHDWQ_WQX-BRI210809-4905650-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905650-0811-4-C/results/933796335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7471","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","14:55:00","MST","2021-08-23 21:55:00",NA,"0.963",963,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796358","UTAHDWQ_WQX-BRI210823-4905640-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905640-0823-4-C/results/933796358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7472","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","14:55:00","MST","2021-08-23 21:55:00",NA,"0.869",869,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796361","UTAHDWQ_WQX-BRI210823-4905640-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905640-0823-4-C/results/933796361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7473","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","13:33:00","MST","2021-09-29 20:33:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796384","UTAHDWQ_WQX-BRI210920-4905640-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905640-0929-4-C/results/933796384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7474","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","13:33:00","MST","2021-09-29 20:33:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796387","UTAHDWQ_WQX-BRI210920-4905640-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"41.6464000000",41.6464,"-111.9257800000",-111.92578,"OK","16010203","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6464000000","-111.9257800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905640-0929-4-C/results/933796387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7475","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","10:30:00","MST","2021-04-07 17:30:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796409","UTAHDWQ_WQX-BRI210405-4905650-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905650-0407-4-C/results/933796409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7476","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","11:00:00","MST","2021-05-05 18:00:00",NA,"0.524",524,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796415","UTAHDWQ_WQX-BRI210503-4905650-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905650-0505-4-C/results/933796415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7477","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","11:00:00","MST","2021-05-05 18:00:00",NA,"0.769",769,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796418","UTAHDWQ_WQX-BRI210503-4905650-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905650-0505-4-C/results/933796418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7478","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","11:45:00","MST","2021-06-10 18:45:00",NA,"1.62",1620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796424","UTAHDWQ_WQX-BRI210607-4905650-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905650-0610-4-C/results/933796424/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7479","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","11:45:00","MST","2021-06-10 18:45:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796427","UTAHDWQ_WQX-BRI210607-4905650-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905650-0610-4-C/results/933796427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7480","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","09:55:00","MST","2021-07-21 16:55:00",NA,"0.705",705,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796450","UTAHDWQ_WQX-BRI210719-4905650-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905650-0721-4-C/results/933796450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7481","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","09:55:00","MST","2021-07-21 16:55:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796453","UTAHDWQ_WQX-BRI210719-4905650-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905650-0721-4-C/results/933796453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7482","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","12:53:00","MST","2021-09-29 19:53:00",NA,"0.671",671,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796459","UTAHDWQ_WQX-BRI210920-4905650-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905650-0929-4-C/results/933796459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7483","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","12:53:00","MST","2021-09-29 19:53:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796462","UTAHDWQ_WQX-BRI210920-4905650-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"41.6335400000",41.63354,"-111.8905000000",-111.8905,"OK","16010203","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6335400000","-111.8905000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905650-0929-4-C/results/933796462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7484","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:20:00","MST","2021-04-06 21:20:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796468","UTAHDWQ_WQX-BRI210405-4905670-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905670-0406-4-C/results/933796468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7485","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:20:00","MST","2021-04-06 21:20:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796471","UTAHDWQ_WQX-BRI210405-4905670-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905670-0406-4-C/results/933796471/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7486","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","14:30:00","MST","2021-05-04 21:30:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796494","UTAHDWQ_WQX-BRI210503-4905670-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905670-0504-4-C/results/933796494/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7487","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","14:30:00","MST","2021-05-04 21:30:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796497","UTAHDWQ_WQX-BRI210503-4905670-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905670-0504-4-C/results/933796497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7488","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","13:20:00","MST","2021-06-01 20:20:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796507","UTAHDWQ_WQX-LAKES210531-4905670-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905670-0601-4-C/results/933796507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7489","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","13:20:00","MST","2021-06-01 20:20:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796511","UTAHDWQ_WQX-LAKES210531-4905670-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905670-0601-4-C/results/933796511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7490","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","15:55:00","MST","2021-07-20 22:55:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796536","UTAHDWQ_WQX-BRI210719-4905670-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905670-0720-4-C/results/933796536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7491","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","15:55:00","MST","2021-07-20 22:55:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796539","UTAHDWQ_WQX-BRI210719-4905670-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905670-0720-4-C/results/933796539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7492","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","09:55:00","MST","2021-08-11 16:55:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796545","UTAHDWQ_WQX-BRI210809-4905670-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905670-0811-4-C/results/933796545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7493","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","09:55:00","MST","2021-08-11 16:55:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796548","UTAHDWQ_WQX-BRI210809-4905670-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905670-0811-4-C/results/933796548/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7494","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","10:35:00","MST","2021-09-15 17:35:00",NA,"0.85",850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796575","UTAHDWQ_WQX-LAKES210913-4905670-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905670-0915-4-C/results/933796575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7495","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","10:35:00","MST","2021-09-15 17:35:00",NA,"0.911",911,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796579","UTAHDWQ_WQX-LAKES210913-4905670-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905670-0915-4-C/results/933796579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7496","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","10:24:00","MST","2021-09-28 17:24:00",NA,"0.886",886,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796602","UTAHDWQ_WQX-BRI210920-4905670-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905670-0928-4-C/results/933796602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7497","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","10:24:00","MST","2021-09-28 17:24:00",NA,"0.829",829,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796605","UTAHDWQ_WQX-BRI210920-4905670-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"41.5757600000",41.57576,"-111.8543900000",-111.85439,"OK","16010203","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5757600000","-111.8543900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905670-0928-4-C/results/933796605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7498","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:30:00","MST","2021-04-06 21:30:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796611","UTAHDWQ_WQX-BRI210405-4905700-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905700-0406-4-C/results/933796611/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7499","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:30:00","MST","2021-04-06 21:30:00",NA,"0.43",430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796614","UTAHDWQ_WQX-BRI210405-4905700-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905700-0406-4-C/results/933796614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7500","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","14:50:00","MST","2021-05-04 21:50:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796637","UTAHDWQ_WQX-BRI210503-4905700-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905700-0504-4-C/results/933796637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7501","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","14:50:00","MST","2021-05-04 21:50:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796640","UTAHDWQ_WQX-BRI210503-4905700-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905700-0504-4-C/results/933796640/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7502","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","14:30:00","MST","2021-06-08 21:30:00",NA,"0.457",457,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796646","UTAHDWQ_WQX-BRI210607-4905700-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905700-0608-4-C/results/933796646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7503","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","14:30:00","MST","2021-06-08 21:30:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796649","UTAHDWQ_WQX-BRI210607-4905700-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905700-0608-4-C/results/933796649/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7504","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","16:10:00","MST","2021-07-20 23:10:00",NA,"0.434",434,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796672","UTAHDWQ_WQX-BRI210719-4905700-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905700-0720-4-C/results/933796672/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7505","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","16:10:00","MST","2021-07-20 23:10:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796675","UTAHDWQ_WQX-BRI210719-4905700-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905700-0720-4-C/results/933796675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7506","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","11:30:00","MST","2021-08-11 18:30:00",NA,"0.462",462,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796681","UTAHDWQ_WQX-BRI210809-4905700-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905700-0811-4-C/results/933796681/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7507","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","11:30:00","MST","2021-08-11 18:30:00",NA,"0.543",543,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796684","UTAHDWQ_WQX-BRI210809-4905700-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905700-0811-4-C/results/933796684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7508","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","10:05:00","MST","2021-09-28 17:05:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796707","UTAHDWQ_WQX-BRI210920-4905700-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905700-0928-4-C/results/933796707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7509","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","10:05:00","MST","2021-09-28 17:05:00",NA,"0.276",276,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796710","UTAHDWQ_WQX-BRI210920-4905700-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"41.5360400000",41.53604,"-111.8306400000",-111.83064,"OK","16010203","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5360400000","-111.8306400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905700-0928-4-C/results/933796710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7510","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","15:15:00","MST","2021-04-06 22:15:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796716","UTAHDWQ_WQX-BRI210405-4905740-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905740-0406-4-C/results/933796716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7511","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","15:15:00","MST","2021-04-06 22:15:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796719","UTAHDWQ_WQX-BRI210405-4905740-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905740-0406-4-C/results/933796719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7512","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","15:45:00","MST","2021-05-04 22:45:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796742","UTAHDWQ_WQX-BRI210503-4905740-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905740-0504-4-C/results/933796742/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7513","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","15:45:00","MST","2021-05-04 22:45:00",NA,"0.497",497,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796745","UTAHDWQ_WQX-BRI210503-4905740-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905740-0504-4-C/results/933796745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7514","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","15:20:00","MST","2021-06-08 22:20:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796751","UTAHDWQ_WQX-BRI210607-4905740-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905740-0608-4-C/results/933796751/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7515","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","15:20:00","MST","2021-06-08 22:20:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796754","UTAHDWQ_WQX-BRI210607-4905740-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905740-0608-4-C/results/933796754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7516","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","16:45:00","MST","2021-07-20 23:45:00",NA,"0.196",196,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796777","UTAHDWQ_WQX-BRI210719-4905740-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905740-0720-4-C/results/933796777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7517","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","16:45:00","MST","2021-07-20 23:45:00",NA,"0.143",143,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796780","UTAHDWQ_WQX-BRI210719-4905740-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905740-0720-4-C/results/933796780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7518","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","10:55:00","MST","2021-08-11 17:55:00",NA,"0.129",129,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796786","UTAHDWQ_WQX-BRI210809-4905740-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905740-0811-4-C/results/933796786/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7519","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","10:55:00","MST","2021-08-11 17:55:00",NA,"0.086",86,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796789","UTAHDWQ_WQX-BRI210809-4905740-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"41.5146900000",41.51469,"-111.8127900000",-111.81279,"OK","16010203","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5146900000","-111.8127900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905740-0811-4-C/results/933796789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7520","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:40:00","MST","2021-04-06 21:40:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796812","UTAHDWQ_WQX-BRI210405-4905750-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905750-0406-4-C/results/933796812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7521","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:40:00","MST","2021-04-06 21:40:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796815","UTAHDWQ_WQX-BRI210405-4905750-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905750-0406-4-C/results/933796815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7522","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","15:00:00","MST","2021-05-04 22:00:00",NA,"0.304",304,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796838","UTAHDWQ_WQX-BRI210503-4905750-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905750-0504-4-C/results/933796838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7523","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","15:00:00","MST","2021-05-04 22:00:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796841","UTAHDWQ_WQX-BRI210503-4905750-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905750-0504-4-C/results/933796841/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7524","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","14:45:00","MST","2021-06-08 21:45:00",NA,"0.912",912,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796847","UTAHDWQ_WQX-BRI210607-4905750-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905750-0608-4-C/results/933796847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7525","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","14:45:00","MST","2021-06-08 21:45:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796850","UTAHDWQ_WQX-BRI210607-4905750-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905750-0608-4-C/results/933796850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7526","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","16:20:00","MST","2021-07-20 23:20:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796873","UTAHDWQ_WQX-BRI210719-4905750-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905750-0720-4-C/results/933796873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7527","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","16:20:00","MST","2021-07-20 23:20:00",NA,"0.143",143,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796876","UTAHDWQ_WQX-BRI210719-4905750-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905750-0720-4-C/results/933796876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7528","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","10:15:00","MST","2021-08-11 17:15:00",NA,"0.172",172,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796882","UTAHDWQ_WQX-BRI210809-4905750-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905750-0811-4-C/results/933796882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7529","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","10:15:00","MST","2021-08-11 17:15:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796885","UTAHDWQ_WQX-BRI210809-4905750-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905750-0811-4-C/results/933796885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7530","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","09:53:00","MST","2021-09-28 16:53:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796908","UTAHDWQ_WQX-BRI210920-4905750-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905750-0928-4-C/results/933796908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7531","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","09:53:00","MST","2021-09-28 16:53:00",NA,"0.125",125,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796911","UTAHDWQ_WQX-BRI210920-4905750-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"41.5296600000",41.52966,"-111.8129900000",-111.81299,"OK","16010203","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5296600000","-111.8129900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905750-0928-4-C/results/933796911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7532","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","15:40:00","MST","2021-06-08 22:40:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796917","UTAHDWQ_WQX-BRI210607-4905770-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905770-0608-4-C/results/933796917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7533","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","15:40:00","MST","2021-06-08 22:40:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796920","UTAHDWQ_WQX-BRI210607-4905770-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905770-0608-4-C/results/933796920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7534","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","15:15:00","MST","2021-06-22 22:15:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796943","UTAHDWQ_WQX-BRI210621-4905770-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4905770-0622-4-C/results/933796943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7535","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","15:15:00","MST","2021-06-22 22:15:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796946","UTAHDWQ_WQX-BRI210621-4905770-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4905770-0622-4-C/results/933796946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7536","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","13:30:00","MST","2021-07-06 20:30:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796969","UTAHDWQ_WQX-BRI210706-4905770-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905770-0706-4-C/results/933796969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7537","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","13:30:00","MST","2021-07-06 20:30:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796972","UTAHDWQ_WQX-BRI210706-4905770-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905770-0706-4-C/results/933796972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7538","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","17:00:00","MST","2021-07-21 00:00:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796995","UTAHDWQ_WQX-BRI210719-4905770-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905770-0720-4-C/results/933796995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7539","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","17:00:00","MST","2021-07-21 00:00:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933796998","UTAHDWQ_WQX-BRI210719-4905770-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905770-0720-4-C/results/933796998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7540","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","11:10:00","MST","2021-08-11 18:10:00",NA,"0.13",130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797004","UTAHDWQ_WQX-BRI210809-4905770-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905770-0811-4-C/results/933797004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7541","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","11:10:00","MST","2021-08-11 18:10:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797007","UTAHDWQ_WQX-BRI210809-4905770-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905770-0811-4-C/results/933797007/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7542","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","16:45:00","MST","2021-08-23 23:45:00",NA,"0.191",191,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797030","UTAHDWQ_WQX-BRI210823-4905770-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905770-0823-4-C/results/933797030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7543","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","16:45:00","MST","2021-08-23 23:45:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797033","UTAHDWQ_WQX-BRI210823-4905770-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905770-0823-4-C/results/933797033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7544","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","09:12:00","MST","2021-09-28 16:12:00",NA,"0.155",155,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797056","UTAHDWQ_WQX-BRI210920-4905770-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905770-0928-4-C/results/933797056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7545","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","09:12:00","MST","2021-09-28 16:12:00",NA,"0.115",115,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797059","UTAHDWQ_WQX-BRI210920-4905770-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905770-0928-4-C/results/933797059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7546","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:55:00","MST","2021-04-06 21:55:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797065","UTAHDWQ_WQX-BRI210405-4905780-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905780-0406-4-C/results/933797065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7547","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:55:00","MST","2021-04-06 21:55:00",NA,"0.31",310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797068","UTAHDWQ_WQX-BRI210405-4905780-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905780-0406-4-C/results/933797068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7548","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","15:30:00","MST","2021-05-04 22:30:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797091","UTAHDWQ_WQX-BRI210503-4905780-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905780-0504-4-C/results/933797091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7549","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","15:30:00","MST","2021-05-04 22:30:00",NA,"0.618",618,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797094","UTAHDWQ_WQX-BRI210503-4905780-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905780-0504-4-C/results/933797094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7550","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","15:00:00","MST","2021-06-08 22:00:00",NA,"0.644",644,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797100","UTAHDWQ_WQX-BRI210607-4905780-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905780-0608-4-C/results/933797100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7551","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","15:00:00","MST","2021-06-08 22:00:00",NA,"0.653",653,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797103","UTAHDWQ_WQX-BRI210607-4905780-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905780-0608-4-C/results/933797103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7552","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","16:35:00","MST","2021-07-20 23:35:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797126","UTAHDWQ_WQX-BRI210719-4905780-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905780-0720-4-C/results/933797126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7553","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","16:35:00","MST","2021-07-20 23:35:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797129","UTAHDWQ_WQX-BRI210719-4905780-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905780-0720-4-C/results/933797129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7554","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","10:35:00","MST","2021-08-11 17:35:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797135","UTAHDWQ_WQX-BRI210809-4905780-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905780-0811-4-C/results/933797135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7555","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","10:35:00","MST","2021-08-11 17:35:00",NA,"0.497",497,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797138","UTAHDWQ_WQX-BRI210809-4905780-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905780-0811-4-C/results/933797138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7556","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","09:36:00","MST","2021-09-28 16:36:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797161","UTAHDWQ_WQX-BRI210920-4905780-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905780-0928-4-C/results/933797161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7557","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","09:36:00","MST","2021-09-28 16:36:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797164","UTAHDWQ_WQX-BRI210920-4905780-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"41.5191000000",41.5191,"-111.7504900000",-111.75049,"OK","16010203","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5191000000","-111.7504900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905780-0928-4-C/results/933797164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7558","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","10:45:00","MST","2021-06-03 17:45:00",NA,"0.205",205,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797174","UTAHDWQ_WQX-LAKES210531-4905790-0603-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-2-C/results/933797174/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7559","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","10:45:00","MST","2021-06-03 17:45:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797178","UTAHDWQ_WQX-LAKES210531-4905790-0603-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-2-C/results/933797178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7560","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","10:50:00","MST","2021-06-03 17:50:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","8.03",8.03,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797183","UTAHDWQ_WQX-LAKES210531-4905790-0603-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-23-C/results/933797183/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7561","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","10:50:00","MST","2021-06-03 17:50:00",NA,"0.115",115,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","8.03",8.03,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797187","UTAHDWQ_WQX-LAKES210531-4905790-0603-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-23-C/results/933797187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7562","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","10:55:00","MST","2021-06-03 17:55:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13.03",13.03,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797192","UTAHDWQ_WQX-LAKES210531-4905790-0603-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-27-C/results/933797192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7563","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","10:55:00","MST","2021-06-03 17:55:00",NA,"0.136",136,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13.03",13.03,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797196","UTAHDWQ_WQX-LAKES210531-4905790-0603-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-27-C/results/933797196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7564","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","11:00:00","MST","2021-06-03 18:00:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","24.52",24.52,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797201","UTAHDWQ_WQX-LAKES210531-4905790-0603-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-29-C/results/933797201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7565","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","11:00:00","MST","2021-06-03 18:00:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","24.52",24.52,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797205","UTAHDWQ_WQX-LAKES210531-4905790-0603-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-29-C/results/933797205/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7566","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:40:00","MST","2021-09-13 18:40:00",NA,"0.298",298,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797232","UTAHDWQ_WQX-LAKES210913-4905790-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905790-0913-2-C/results/933797232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7567","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","11:40:00","MST","2021-09-13 18:40:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797236","UTAHDWQ_WQX-LAKES210913-4905790-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905790-0913-2-C/results/933797236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7568","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:55:00","MST","2021-09-13 18:55:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","10.01",10.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797241","UTAHDWQ_WQX-LAKES210913-4905790-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905790-0913-29-C/results/933797241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7569","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","11:55:00","MST","2021-09-13 18:55:00",NA,"0.41",410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","10.01",10.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797245","UTAHDWQ_WQX-LAKES210913-4905790-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES AB DAM 01","Lake",NA,"41.5188300000",41.51883,"-111.7457700000",-111.74577,"OK","16010203","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5188300000","-111.7457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905790-0913-29-C/results/933797245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7570","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","10:05:00","MST","2021-06-03 17:05:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797272","UTAHDWQ_WQX-LAKES210531-4905800-0603-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"41.5177200000",41.51772,"-111.7324400000",-111.73244,"OK","16010203","UTAHDWQ_WQX-4905800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5177200000","-111.7324400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905800-0603-2-C/results/933797272/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7571","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","10:05:00","MST","2021-06-03 17:05:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797276","UTAHDWQ_WQX-LAKES210531-4905800-0603-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"41.5177200000",41.51772,"-111.7324400000",-111.73244,"OK","16010203","UTAHDWQ_WQX-4905800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5177200000","-111.7324400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905800-0603-2-C/results/933797276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7572","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","10:10:00","MST","2021-06-03 17:10:00",NA,"0.138",138,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","10.03",10.03,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797281","UTAHDWQ_WQX-LAKES210531-4905800-0603-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"41.5177200000",41.51772,"-111.7324400000",-111.73244,"OK","16010203","UTAHDWQ_WQX-4905800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5177200000","-111.7324400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905800-0603-29-C/results/933797281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7573","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","10:10:00","MST","2021-06-03 17:10:00",NA,"0.146",146,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","10.03",10.03,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797285","UTAHDWQ_WQX-LAKES210531-4905800-0603-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","PORCUPINE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"41.5177200000",41.51772,"-111.7324400000",-111.73244,"OK","16010203","UTAHDWQ_WQX-4905800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5177200000","-111.7324400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905800-0603-29-C/results/933797285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7574","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","09:45:00","MST","2021-06-03 16:45:00",NA,"0.163",163,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797295","UTAHDWQ_WQX-LAKES210531-4905830-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB PORCUPINE RES","River/Stream",NA,"41.5182700000",41.51827,"-111.7138200000",-111.71382,"OK","16010203","UTAHDWQ_WQX-4905830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5182700000","-111.7138200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905830-0603-4-C/results/933797295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7575","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","09:45:00","MST","2021-06-03 16:45:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797299","UTAHDWQ_WQX-LAKES210531-4905830-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB PORCUPINE RES","River/Stream",NA,"41.5182700000",41.51827,"-111.7138200000",-111.71382,"OK","16010203","UTAHDWQ_WQX-4905830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5182700000","-111.7138200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905830-0603-4-C/results/933797299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7576","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","10:50:00","MST","2021-09-13 17:50:00",NA,"0.325",325,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797326","UTAHDWQ_WQX-LAKES210913-4905830-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB PORCUPINE RES","River/Stream",NA,"41.5182700000",41.51827,"-111.7138200000",-111.71382,"OK","16010203","UTAHDWQ_WQX-4905830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5182700000","-111.7138200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905830-0913-4-C/results/933797326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7577","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","10:50:00","MST","2021-09-13 17:50:00",NA,"0.417",417,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797330","UTAHDWQ_WQX-LAKES210913-4905830-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","E FK LITTLE BEAR R AB PORCUPINE RES","River/Stream",NA,"41.5182700000",41.51827,"-111.7138200000",-111.71382,"OK","16010203","UTAHDWQ_WQX-4905830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5182700000","-111.7138200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905830-0913-4-C/results/933797330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7578","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","11:00:00","MST","2021-04-07 18:00:00",NA,"3.65",3650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797353","UTAHDWQ_WQX-BRI210405-4905940-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905940-0407-4-C/results/933797353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7579","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","11:00:00","MST","2021-04-07 18:00:00",NA,"3.73",3730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797356","UTAHDWQ_WQX-BRI210405-4905940-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905940-0407-4-C/results/933797356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7580","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","11:50:00","MST","2021-05-05 18:50:00",NA,"3.77",3770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797379","UTAHDWQ_WQX-BRI210503-4905940-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905940-0505-4-C/results/933797379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7581","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","11:50:00","MST","2021-05-05 18:50:00",NA,"3.59",3590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797382","UTAHDWQ_WQX-BRI210503-4905940-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905940-0505-4-C/results/933797382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7582","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","12:30:00","MST","2021-06-10 19:30:00",NA,"2.66",2660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797388","UTAHDWQ_WQX-BRI210607-4905940-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905940-0610-4-C/results/933797388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7583","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","12:30:00","MST","2021-06-10 19:30:00",NA,"2.68",2680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797391","UTAHDWQ_WQX-BRI210607-4905940-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905940-0610-4-C/results/933797391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7584","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","10:20:00","MST","2021-07-21 17:20:00",NA,"2.03",2030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797414","UTAHDWQ_WQX-BRI210719-4905940-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905940-0721-4-C/results/933797414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7585","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","10:20:00","MST","2021-07-21 17:20:00",NA,"2.27",2270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797417","UTAHDWQ_WQX-BRI210719-4905940-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905940-0721-4-C/results/933797417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7586","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-11","13:50:00","MST","2021-08-11 20:50:00",NA,"2.65",2650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797423","UTAHDWQ_WQX-BRI210809-4905940-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905940-0811-4-C/results/933797423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7587","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-11","13:50:00","MST","2021-08-11 20:50:00",NA,"3.22",3220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797426","UTAHDWQ_WQX-BRI210809-4905940-0811-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905940-0811-4-C/results/933797426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7588","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","13:21:00","MST","2021-09-29 20:21:00",NA,"1.97",1970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797449","UTAHDWQ_WQX-BRI210920-4905940-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905940-0929-4-C/results/933797449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7589","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","13:21:00","MST","2021-09-29 20:21:00",NA,"2.34",2340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797452","UTAHDWQ_WQX-BRI210920-4905940-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","WELLSVILLE CK @ U101 XING","River/Stream",NA,"41.6385400000",41.63854,"-111.9246700000",-111.92467,"OK","16010203","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6385400000","-111.9246700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905940-0929-4-C/results/933797452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7590","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","13:30:00","MST","2021-04-06 20:30:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797668","UTAHDWQ_WQX-BRI210405-4906400-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4906400-0406-4-C/results/933797668/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7591","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","13:30:00","MST","2021-04-06 20:30:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797671","UTAHDWQ_WQX-BRI210405-4906400-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4906400-0406-4-C/results/933797671/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7592","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","13:40:00","MST","2021-05-04 20:40:00",NA,"0.705",705,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797694","UTAHDWQ_WQX-BRI210503-4906400-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4906400-0504-4-C/results/933797694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7593","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","13:40:00","MST","2021-05-04 20:40:00",NA,"0.85",850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797697","UTAHDWQ_WQX-BRI210503-4906400-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4906400-0504-4-C/results/933797697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7594","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","13:30:00","MST","2021-06-08 20:30:00",NA,"0.809",809,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797703","UTAHDWQ_WQX-BRI210607-4906400-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4906400-0608-4-C/results/933797703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7595","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","13:30:00","MST","2021-06-08 20:30:00",NA,"0.886",886,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797706","UTAHDWQ_WQX-BRI210607-4906400-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4906400-0608-4-C/results/933797706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7596","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","14:15:00","MST","2021-08-10 21:15:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797729","UTAHDWQ_WQX-BRI210809-4906400-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4906400-0810-4-C/results/933797729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7597","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","14:15:00","MST","2021-08-10 21:15:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797732","UTAHDWQ_WQX-BRI210809-4906400-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4906400-0810-4-C/results/933797732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7598","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","11:12:00","MST","2021-09-28 18:12:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797754","UTAHDWQ_WQX-BRI210920-4906400-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4906400-0928-4-C/results/933797754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7599","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","11:12:00","MST","2021-09-28 18:12:00",NA,"0.996",996,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797757","UTAHDWQ_WQX-BRI210920-4906400-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"41.6800000000",41.68,"-111.8308400000",-111.83084,"Imprecise_lessthan3decimaldigits","16010203","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6800000000","-111.8308400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4906400-0928-4-C/results/933797757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7600","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","15:40:00","MST","2021-06-21 22:40:00",NA,"0.479",479,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797958","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907010-0621-2-C/results/933797958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7601","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","15:40:00","MST","2021-06-21 22:40:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797961","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907010-0621-2-C/results/933797961/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7602","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","17:15:00","MST","2021-06-22 00:15:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797965","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907010-0621-29-C/results/933797965/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7603","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","17:15:00","MST","2021-06-22 00:15:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797968","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907010-0621-29-C/results/933797968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7604","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","13:15:00","MST","2021-07-26 20:15:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797978","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907010-0726-2-C/results/933797978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7605","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","13:15:00","MST","2021-07-26 20:15:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797981","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907010-0726-2-C/results/933797981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7606","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","13:45:00","MST","2021-07-26 20:45:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.05",32.05,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797985","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907010-0726-29-C/results/933797985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7607","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","13:45:00","MST","2021-07-26 20:45:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.05",32.05,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797988","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907010-0726-29-C/results/933797988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7608","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","13:47:00","MST","2021-09-01 20:47:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933797998","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907010-0901-2-C/results/933797998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7609","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","13:47:00","MST","2021-09-01 20:47:00",NA,"0.196",196,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798001","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907010-0901-2-C/results/933798001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7610","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","14:08:00","MST","2021-09-01 21:08:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","37",37,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798005","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907010-0901-29-C/results/933798005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7611","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","14:08:00","MST","2021-09-01 21:08:00",NA,"0.167",167,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","37",37,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798008","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907010-0901-29-C/results/933798008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7612","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","13:55:00","MST","2021-09-27 20:55:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798018","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907010-0927-2-C/results/933798018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7613","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","13:55:00","MST","2021-09-27 20:55:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798021","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907010-0927-2-C/results/933798021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7614","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","14:15:00","MST","2021-09-27 21:15:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","37",37,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798025","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907010-0927-29-C/results/933798025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7615","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","14:15:00","MST","2021-09-27 21:15:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","37",37,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798028","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 3 mi ESE of SP Marina","Lake",NA,"41.9553600000",41.95536,"-111.3344800000",-111.33448,"OK","16010201","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9553600000","-111.3344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907010-0927-29-C/results/933798028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7616","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","13:20:00","MST","2021-05-25 20:20:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798038","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907088-0525-2-C/results/933798038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7617","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","13:20:00","MST","2021-05-25 20:20:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798041","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907088-0525-2-C/results/933798041/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7618","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","13:50:00","MST","2021-05-25 20:50:00",NA,"0.206",206,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","47.14",47.14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798045","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907088-0525-29-C/results/933798045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7619","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","13:50:00","MST","2021-05-25 20:50:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","47.14",47.14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798048","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907088-0525-29-C/results/933798048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7620","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","13:10:00","MST","2021-06-21 20:10:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798058","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-2-C/results/933798058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7621","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","13:10:00","MST","2021-06-21 20:10:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798061","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-2-C/results/933798061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7622","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","13:40:00","MST","2021-06-21 20:40:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"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,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798071","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-PZ-C/results/933798071/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7623","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","13:40:00","MST","2021-06-21 20:40:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"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,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798074","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-PZ-C/results/933798074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7624","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","14:00:00","MST","2021-06-21 21:00:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","57.1",57.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798078","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-29-C/results/933798078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7625","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","14:00:00","MST","2021-06-21 21:00:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","57.1",57.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798081","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-29-C/results/933798081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7626","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","12:15:00","MST","2021-07-26 19:15:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798091","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907088-0726-2-C/results/933798091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7627","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","12:15:00","MST","2021-07-26 19:15:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798094","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907088-0726-2-C/results/933798094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7628","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","12:40:00","MST","2021-07-26 19:40:00",NA,"0.216",216,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","57.1",57.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798098","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907088-0726-29-C/results/933798098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7629","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","12:40:00","MST","2021-07-26 19:40:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","57.1",57.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798101","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907088-0726-29-C/results/933798101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7630","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","10:40:00","MST","2021-09-01 17:40:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798111","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-2-C/results/933798111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7631","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","10:40:00","MST","2021-09-01 17:40:00",NA,"0.187",187,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798114","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-2-C/results/933798114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7632","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","11:00:00","MST","2021-09-01 18:00:00",NA,"0.236",236,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"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,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798124","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-PZ-C/results/933798124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7633","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","11:00:00","MST","2021-09-01 18:00:00",NA,"0.181",181,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL","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,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798127","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-PZ-C/results/933798127/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7634","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","11:17:00","MST","2021-09-01 18:17:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","56.01",56.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798131","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-29-C/results/933798131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7635","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","11:17:00","MST","2021-09-01 18:17:00",NA,"0.186",186,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","56.01",56.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798134","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-29-C/results/933798134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7636","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","11:45:00","MST","2021-09-27 18:45:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798144","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907088-0927-2-C/results/933798144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7637","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","11:45:00","MST","2021-09-27 18:45:00",NA,"0.244",244,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798147","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907088-0927-2-C/results/933798147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7638","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","12:00:00","MST","2021-09-27 19:00:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","54.05",54.05,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798151","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907088-0927-29-C/results/933798151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7639","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","12:00:00","MST","2021-09-27 19:00:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","54.05",54.05,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798154","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"41.9451100000",41.94511,"-111.2907600000",-111.29076,"OK","16010201","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9451100000","-111.2907600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907088-0927-29-C/results/933798154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7640","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","13:10:00","MST","2021-05-25 20:10:00",NA,"0.618",618,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798164","UTAHDWQ_WQX-IDEQBL210525-4907100-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907100-0525-4-C/results/933798164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7641","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","13:10:00","MST","2021-05-25 20:10:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798167","UTAHDWQ_WQX-IDEQBL210525-4907100-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907100-0525-4-C/results/933798167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7642","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","13:13:00","MST","2021-06-21 20:13:00",NA,"0.867",867,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798177","UTAHDWQ_WQX-IDEQBL210621-4907100-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907100-0621-4-C/results/933798177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7643","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","13:13:00","MST","2021-06-21 20:13:00",NA,"0.712",712,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798180","UTAHDWQ_WQX-IDEQBL210621-4907100-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907100-0621-4-C/results/933798180/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7644","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","12:55:00","MST","2021-07-26 19:55:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798189","UTAHDWQ_WQX-IDEQBL210726-4907100-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907100-0726-4-C/results/933798189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7645","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","12:55:00","MST","2021-07-26 19:55:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798192","UTAHDWQ_WQX-IDEQBL210726-4907100-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907100-0726-4-C/results/933798192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7646","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","10:01:00","MST","2021-09-01 17:01:00",NA,"0.623",623,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798201","UTAHDWQ_WQX-IDEQBL210901-4907100-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907100-0901-4-C/results/933798201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7647","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","10:01:00","MST","2021-09-01 17:01:00",NA,"0.69",690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798204","UTAHDWQ_WQX-IDEQBL210901-4907100-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907100-0901-4-C/results/933798204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7648","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","11:03:00","MST","2021-09-27 18:03:00",NA,"0.373",373,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798214","UTAHDWQ_WQX-IDEQBL210927-4907100-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907100-0927-4-C/results/933798214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7649","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","11:03:00","MST","2021-09-27 18:03:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798217","UTAHDWQ_WQX-IDEQBL210927-4907100-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907100-0927-4-C/results/933798217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7650","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","11:32:00","MST","2021-05-25 18:32:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798227","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907180-0525-2-C/results/933798227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7651","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","11:32:00","MST","2021-05-25 18:32:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798230","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907180-0525-2-C/results/933798230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7652","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","12:15:00","MST","2021-05-25 19:15:00",NA,"0.221",221,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","40.06",40.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798234","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907180-0525-29-C/results/933798234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7653","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","12:15:00","MST","2021-05-25 19:15:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","40.06",40.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798237","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907180-0525-29-C/results/933798237/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7654","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","10:55:00","MST","2021-06-21 17:55:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798264","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907180-0621-2-C/results/933798264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7655","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","10:55:00","MST","2021-06-21 17:55:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798267","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907180-0621-2-C/results/933798267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7656","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","11:35:00","MST","2021-06-21 18:35:00",NA,"0.473",473,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","46.04",46.04,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798271","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907180-0621-29-C/results/933798271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7657","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","11:35:00","MST","2021-06-21 18:35:00",NA,"0.246",246,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","46.04",46.04,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798274","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907180-0621-29-C/results/933798274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7658","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","14:15:00","MST","2021-07-26 21:15:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798301","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907180-0726-2-C/results/933798301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7659","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","14:15:00","MST","2021-07-26 21:15:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798304","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907180-0726-2-C/results/933798304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7660","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","14:30:00","MST","2021-07-26 21:30:00",NA,"0.186",186,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","45.09",45.09,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798308","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907180-0726-29-C/results/933798308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7661","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","14:30:00","MST","2021-07-26 21:30:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","45.09",45.09,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798311","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907180-0726-29-C/results/933798311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7662","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","09:00:00","MST","2021-09-01 16:00:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798337","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907180-0901-2-C/results/933798337/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7663","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","09:00:00","MST","2021-09-01 16:00:00",NA,"0.303",303,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798340","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907180-0901-2-C/results/933798340/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7664","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","09:45:00","MST","2021-09-01 16:45:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","46.13",46.13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798344","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907180-0901-29-C/results/933798344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7665","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","09:45:00","MST","2021-09-01 16:45:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","46.13",46.13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798347","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907180-0901-29-C/results/933798347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7666","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","10:30:00","MST","2021-09-27 17:30:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798374","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-2-C/results/933798374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7667","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","10:30:00","MST","2021-09-27 17:30:00",NA,"0.262",262,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798377","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-2-C/results/933798377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7668","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","10:55:00","MST","2021-09-27 17:55:00",NA,"0.289",289,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","13.1",13.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798381","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-23-C/results/933798381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7669","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","10:55:00","MST","2021-09-27 17:55:00",NA,"0.264",264,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","13.1",13.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798384","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-23-C/results/933798384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7670","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","11:10:00","MST","2021-09-27 18:10:00",NA,"0.318",318,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","45.12",45.12,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798388","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-29-C/results/933798388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7671","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","11:10:00","MST","2021-09-27 18:10:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","45.12",45.12,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798391","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-29-C/results/933798391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7672","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","12:10:00","MST","2021-05-25 19:10:00",NA,"0.246",246,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798418","UTAHDWQ_WQX-IDEQBL210525-4907200-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907200-0525-4-C/results/933798418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7673","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","12:10:00","MST","2021-05-25 19:10:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798421","UTAHDWQ_WQX-IDEQBL210525-4907200-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907200-0525-4-C/results/933798421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7674","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","12:07:00","MST","2021-06-21 19:07:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798431","UTAHDWQ_WQX-IDEQBL210621-4907200-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907200-0621-4-C/results/933798431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7675","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","12:07:00","MST","2021-06-21 19:07:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798434","UTAHDWQ_WQX-IDEQBL210621-4907200-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907200-0621-4-C/results/933798434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7676","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","11:32:00","MST","2021-07-26 18:32:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798443","UTAHDWQ_WQX-IDEQBL210726-4907200-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907200-0726-4-C/results/933798443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7677","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","11:32:00","MST","2021-07-26 18:32:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798446","UTAHDWQ_WQX-IDEQBL210726-4907200-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907200-0726-4-C/results/933798446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7678","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","11:28:00","MST","2021-09-01 18:28:00",NA,"0.163",163,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798455","UTAHDWQ_WQX-IDEQBL210901-4907200-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907200-0901-4-C/results/933798455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7679","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","11:28:00","MST","2021-09-01 18:28:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798458","UTAHDWQ_WQX-IDEQBL210901-4907200-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907200-0901-4-C/results/933798458/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7680","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","12:09:00","MST","2021-09-27 19:09:00",NA,"0.413",413,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798468","UTAHDWQ_WQX-IDEQBL210927-4907200-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907200-0927-4-C/results/933798468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7681","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","12:09:00","MST","2021-09-27 19:09:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798471","UTAHDWQ_WQX-IDEQBL210927-4907200-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907200-0927-4-C/results/933798471/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7682","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","14:00:00","MST","2021-04-05 21:00:00",NA,"0.391",391,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798729","UTAHDWQ_WQX-BRI210405-4908100-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908100-0405-4-C/results/933798729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7683","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","14:00:00","MST","2021-04-05 21:00:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798732","UTAHDWQ_WQX-BRI210405-4908100-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908100-0405-4-C/results/933798732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7684","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","14:15:00","MST","2021-05-03 21:15:00",NA,"0.7",700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798755","UTAHDWQ_WQX-BRI210503-4908100-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908100-0503-4-C/results/933798755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7685","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","14:15:00","MST","2021-05-03 21:15:00",NA,"0.72",720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798758","UTAHDWQ_WQX-BRI210503-4908100-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908100-0503-4-C/results/933798758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7686","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","15:30:00","MST","2021-06-07 22:30:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798764","UTAHDWQ_WQX-BRI210607-4908100-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908100-0607-4-C/results/933798764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7687","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","15:30:00","MST","2021-06-07 22:30:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798767","UTAHDWQ_WQX-BRI210607-4908100-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908100-0607-4-C/results/933798767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7688","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","15:15:00","MST","2021-06-21 22:15:00",NA,"0.651",651,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798790","UTAHDWQ_WQX-BRI210621-4908100-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908100-0621-4-C/results/933798790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7689","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","15:15:00","MST","2021-06-21 22:15:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798793","UTAHDWQ_WQX-BRI210621-4908100-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908100-0621-4-C/results/933798793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7690","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-08","12:40:00","MST","2021-07-08 19:40:00",NA,"0.496",496,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798816","UTAHDWQ_WQX-BRI210706-4908100-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908100-0708-4-C/results/933798816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7691","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-08","12:40:00","MST","2021-07-08 19:40:00",NA,"0.35",350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798819","UTAHDWQ_WQX-BRI210706-4908100-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908100-0708-4-C/results/933798819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7692","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:40:00","MST","2021-07-19 21:40:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798842","UTAHDWQ_WQX-BRI210719-4908100-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908100-0719-4-C/results/933798842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7693","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","14:40:00","MST","2021-07-19 21:40:00",NA,"0.548",548,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798845","UTAHDWQ_WQX-BRI210719-4908100-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908100-0719-4-C/results/933798845/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7694","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","14:45:00","MST","2021-08-09 21:45:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798851","UTAHDWQ_WQX-BRI210809-4908100-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908100-0809-4-C/results/933798851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7695","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","14:45:00","MST","2021-08-09 21:45:00",NA,"0.552",552,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798854","UTAHDWQ_WQX-BRI210809-4908100-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908100-0809-4-C/results/933798854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7696","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","11:35:00","MST","2021-08-23 18:35:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798877","UTAHDWQ_WQX-BRI210823-4908100-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908100-0823-4-C/results/933798877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7697","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","11:35:00","MST","2021-08-23 18:35:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798880","UTAHDWQ_WQX-BRI210823-4908100-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908100-0823-4-C/results/933798880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7698","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","15:40:00","MST","2021-09-27 22:40:00",NA,"0.335",335,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798903","UTAHDWQ_WQX-BRI210920-4908100-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908100-0927-4-C/results/933798903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7699","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","15:40:00","MST","2021-09-27 22:40:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798906","UTAHDWQ_WQX-BRI210920-4908100-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"41.7771600000",41.77716,"-111.0735200000",-111.07352,"OK","16010101","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7771600000","-111.0735200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908100-0927-4-C/results/933798906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7700","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","11:40:00","MST","2021-04-05 18:40:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798912","UTAHDWQ_WQX-BRI210405-4908130-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908130-0405-4-C/results/933798912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7701","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","11:40:00","MST","2021-04-05 18:40:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798915","UTAHDWQ_WQX-BRI210405-4908130-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908130-0405-4-C/results/933798915/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7702","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","11:50:00","MST","2021-05-03 18:50:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798938","UTAHDWQ_WQX-BRI210503-4908130-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908130-0503-4-C/results/933798938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7703","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","11:50:00","MST","2021-05-03 18:50:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798941","UTAHDWQ_WQX-BRI210503-4908130-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908130-0503-4-C/results/933798941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7704","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","12:20:00","MST","2021-06-07 19:20:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798947","UTAHDWQ_WQX-BRI210607-4908130-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908130-0607-4-C/results/933798947/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7705","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","12:20:00","MST","2021-06-07 19:20:00",NA,"0.258",258,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798950","UTAHDWQ_WQX-BRI210607-4908130-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908130-0607-4-C/results/933798950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7706","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","14:00:00","MST","2021-06-21 21:00:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798973","UTAHDWQ_WQX-BRI210621-4908130-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908130-0621-4-C/results/933798973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7707","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","14:00:00","MST","2021-06-21 21:00:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798976","UTAHDWQ_WQX-BRI210621-4908130-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908130-0621-4-C/results/933798976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7708","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","12:30:00","MST","2021-07-19 19:30:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933798999","UTAHDWQ_WQX-BRI210719-4908130-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908130-0719-4-C/results/933798999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7709","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","12:30:00","MST","2021-07-19 19:30:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799002","UTAHDWQ_WQX-BRI210719-4908130-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908130-0719-4-C/results/933799002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7710","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","12:35:00","MST","2021-08-09 19:35:00",NA,"0.184",184,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799008","UTAHDWQ_WQX-BRI210809-4908130-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908130-0809-4-C/results/933799008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7711","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","12:35:00","MST","2021-08-09 19:35:00",NA,"0.398",398,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799011","UTAHDWQ_WQX-BRI210809-4908130-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908130-0809-4-C/results/933799011/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7712","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","13:30:00","MST","2021-09-27 20:30:00",NA,"0.194",194,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799034","UTAHDWQ_WQX-BRI210920-4908130-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908130-0927-4-C/results/933799034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7713","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","13:30:00","MST","2021-09-27 20:30:00",NA,"0.888",888,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799037","UTAHDWQ_WQX-BRI210920-4908130-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"41.5901000000",41.5901,"-111.3037700000",-111.30377,"OK","16010101","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5901000000","-111.3037700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908130-0927-4-C/results/933799037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7714","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","11:30:00","MST","2021-04-05 18:30:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799043","UTAHDWQ_WQX-BRI210405-4908140-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908140-0405-4-C/results/933799043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7715","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","11:30:00","MST","2021-04-05 18:30:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799046","UTAHDWQ_WQX-BRI210405-4908140-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908140-0405-4-C/results/933799046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7716","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","11:30:00","MST","2021-05-03 18:30:00",NA,"0.22",220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799069","UTAHDWQ_WQX-BRI210503-4908140-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908140-0503-4-C/results/933799069/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7717","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","11:30:00","MST","2021-05-03 18:30:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799072","UTAHDWQ_WQX-BRI210503-4908140-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908140-0503-4-C/results/933799072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7718","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","12:15:00","MST","2021-06-07 19:15:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799078","UTAHDWQ_WQX-BRI210607-4908140-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908140-0607-4-C/results/933799078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7719","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","12:15:00","MST","2021-06-07 19:15:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799081","UTAHDWQ_WQX-BRI210607-4908140-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908140-0607-4-C/results/933799081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7720","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","13:50:00","MST","2021-06-21 20:50:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799104","UTAHDWQ_WQX-BRI210621-4908140-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908140-0621-4-C/results/933799104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7721","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","13:50:00","MST","2021-06-21 20:50:00",NA,"0.439",439,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799107","UTAHDWQ_WQX-BRI210621-4908140-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908140-0621-4-C/results/933799107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7722","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-08","10:35:00","MST","2021-07-08 17:35:00",NA,"0.246",246,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799130","UTAHDWQ_WQX-BRI210706-4908140-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908140-0708-4-C/results/933799130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7723","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-08","10:35:00","MST","2021-07-08 17:35:00",NA,"0.191",191,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799133","UTAHDWQ_WQX-BRI210706-4908140-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908140-0708-4-C/results/933799133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7724","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","12:20:00","MST","2021-07-19 19:20:00",NA,"0.174",174,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799156","UTAHDWQ_WQX-BRI210719-4908140-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908140-0719-4-C/results/933799156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7725","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","12:20:00","MST","2021-07-19 19:20:00",NA,"0.58",580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799159","UTAHDWQ_WQX-BRI210719-4908140-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908140-0719-4-C/results/933799159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7726","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","12:15:00","MST","2021-08-09 19:15:00",NA,"0.099",99,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799165","UTAHDWQ_WQX-BRI210809-4908140-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908140-0809-4-C/results/933799165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7727","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","12:15:00","MST","2021-08-09 19:15:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799168","UTAHDWQ_WQX-BRI210809-4908140-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908140-0809-4-C/results/933799168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7728","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","12:50:00","MST","2021-08-23 19:50:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799191","UTAHDWQ_WQX-BRI210823-4908140-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908140-0823-4-C/results/933799191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7729","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","12:50:00","MST","2021-08-23 19:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799194","UTAHDWQ_WQX-BRI210823-4908140-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908140-0823-4-C/results/933799194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7730","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","13:11:00","MST","2021-09-27 20:11:00",NA,"0.794",794,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799217","UTAHDWQ_WQX-BRI210920-4908140-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908140-0927-4-C/results/933799217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7731","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","13:11:00","MST","2021-09-27 20:11:00",NA,"0.118",118,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799220","UTAHDWQ_WQX-BRI210920-4908140-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"41.5954800000",41.59548,"-111.3073800000",-111.30738,"OK","16010101","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5954800000","-111.3073800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908140-0927-4-C/results/933799220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7732","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","14:20:00","MST","2021-04-05 21:20:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799226","UTAHDWQ_WQX-BRI210405-4908152-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908152-0405-4-C/results/933799226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7733","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","14:20:00","MST","2021-04-05 21:20:00",NA,"0.64",640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799229","UTAHDWQ_WQX-BRI210405-4908152-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908152-0405-4-C/results/933799229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7734","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","14:40:00","MST","2021-05-03 21:40:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799252","UTAHDWQ_WQX-BRI210503-4908152-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908152-0503-4-C/results/933799252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7735","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","14:40:00","MST","2021-05-03 21:40:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799255","UTAHDWQ_WQX-BRI210503-4908152-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908152-0503-4-C/results/933799255/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7736","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","15:40:00","MST","2021-06-21 22:40:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799261","UTAHDWQ_WQX-BRI210621-4908152-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908152-0621-4-C/results/933799261/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7737","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","15:40:00","MST","2021-06-21 22:40:00",NA,"0.761",761,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799264","UTAHDWQ_WQX-BRI210621-4908152-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908152-0621-4-C/results/933799264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7738","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-08","13:00:00","MST","2021-07-08 20:00:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799287","UTAHDWQ_WQX-BRI210706-4908152-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908152-0708-4-C/results/933799287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7739","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-08","13:00:00","MST","2021-07-08 20:00:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799290","UTAHDWQ_WQX-BRI210706-4908152-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908152-0708-4-C/results/933799290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7740","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","15:00:00","MST","2021-07-19 22:00:00",NA,"0.644",644,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799313","UTAHDWQ_WQX-BRI210719-4908152-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908152-0719-4-C/results/933799313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7741","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","15:00:00","MST","2021-07-19 22:00:00",NA,"0.647",647,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799316","UTAHDWQ_WQX-BRI210719-4908152-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908152-0719-4-C/results/933799316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7742","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","15:20:00","MST","2021-08-09 22:20:00",NA,"0.428",428,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799322","UTAHDWQ_WQX-BRI210809-4908152-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908152-0809-4-C/results/933799322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7743","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","15:20:00","MST","2021-08-09 22:20:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799325","UTAHDWQ_WQX-BRI210809-4908152-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908152-0809-4-C/results/933799325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7744","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","11:20:00","MST","2021-08-23 18:20:00",NA,"0.77",770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799348","UTAHDWQ_WQX-BRI210823-4908152-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908152-0823-4-C/results/933799348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7745","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","11:20:00","MST","2021-08-23 18:20:00",NA,"0.727",727,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799351","UTAHDWQ_WQX-BRI210823-4908152-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908152-0823-4-C/results/933799351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7746","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","16:05:00","MST","2021-09-27 23:05:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799374","UTAHDWQ_WQX-BRI210920-4908152-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908152-0927-4-C/results/933799374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7747","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","16:05:00","MST","2021-09-27 23:05:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799377","UTAHDWQ_WQX-BRI210920-4908152-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908152-0927-4-C/results/933799377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7748","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","13:30:00","MST","2021-04-05 20:30:00",NA,"0.189",189,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799383","UTAHDWQ_WQX-BRI210405-4908160-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908160-0405-4-C/results/933799383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7749","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","13:30:00","MST","2021-04-05 20:30:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799386","UTAHDWQ_WQX-BRI210405-4908160-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908160-0405-4-C/results/933799386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7750","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","14:00:00","MST","2021-05-03 21:00:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799409","UTAHDWQ_WQX-BRI210503-4908160-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908160-0503-4-C/results/933799409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7751","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","14:00:00","MST","2021-05-03 21:00:00",NA,"0.504",504,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799412","UTAHDWQ_WQX-BRI210503-4908160-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908160-0503-4-C/results/933799412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7752","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","14:50:00","MST","2021-06-07 21:50:00",NA,"0.304",304,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799418","UTAHDWQ_WQX-BRI210607-4908160-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908160-0607-4-C/results/933799418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7753","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","14:50:00","MST","2021-06-07 21:50:00",NA,"0.295",295,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799421","UTAHDWQ_WQX-BRI210607-4908160-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908160-0607-4-C/results/933799421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7754","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:05:00","MST","2021-07-19 21:05:00",NA,"0.138",138,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799444","UTAHDWQ_WQX-BRI210719-4908160-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908160-0719-4-C/results/933799444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7755","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","14:05:00","MST","2021-07-19 21:05:00",NA,"0.538",538,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799447","UTAHDWQ_WQX-BRI210719-4908160-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908160-0719-4-C/results/933799447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7756","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","14:15:00","MST","2021-08-09 21:15:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799453","UTAHDWQ_WQX-BRI210809-4908160-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908160-0809-4-C/results/933799453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7757","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","14:15:00","MST","2021-08-09 21:15:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799456","UTAHDWQ_WQX-BRI210809-4908160-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908160-0809-4-C/results/933799456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7758","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","15:07:00","MST","2021-09-27 22:07:00",NA,"0.209",209,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799479","UTAHDWQ_WQX-BRI210920-4908160-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908160-0927-4-C/results/933799479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7759","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","15:07:00","MST","2021-09-27 22:07:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799482","UTAHDWQ_WQX-BRI210920-4908160-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"41.7021600000",41.70216,"-111.2580600000",-111.25806,"OK","16010101","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7021600000","-111.2580600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908160-0927-4-C/results/933799482/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7760","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","12:45:00","MST","2021-04-05 19:45:00",NA,"0.551",551,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799488","UTAHDWQ_WQX-BRI210405-4908165-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908165-0405-4-C/results/933799488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7761","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","12:45:00","MST","2021-04-05 19:45:00",NA,"0.486",486,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799491","UTAHDWQ_WQX-BRI210405-4908165-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908165-0405-4-C/results/933799491/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7762","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","13:00:00","MST","2021-05-03 20:00:00",NA,"0.617",617,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799514","UTAHDWQ_WQX-BRI210503-4908165-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908165-0503-4-C/results/933799514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7763","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","13:00:00","MST","2021-05-03 20:00:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799517","UTAHDWQ_WQX-BRI210503-4908165-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908165-0503-4-C/results/933799517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7764","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","14:20:00","MST","2021-06-07 21:20:00",NA,"0.395",395,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799523","UTAHDWQ_WQX-BRI210607-4908165-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908165-0607-4-C/results/933799523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7765","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","14:20:00","MST","2021-06-07 21:20:00",NA,"0.667",667,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799526","UTAHDWQ_WQX-BRI210607-4908165-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908165-0607-4-C/results/933799526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7766","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:30:00","MST","2021-07-19 20:30:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799549","UTAHDWQ_WQX-BRI210719-4908165-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908165-0719-4-C/results/933799549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7767","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","13:30:00","MST","2021-07-19 20:30:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799552","UTAHDWQ_WQX-BRI210719-4908165-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908165-0719-4-C/results/933799552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7768","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","13:40:00","MST","2021-08-09 20:40:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799558","UTAHDWQ_WQX-BRI210809-4908165-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908165-0809-4-C/results/933799558/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7769","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","13:40:00","MST","2021-08-09 20:40:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799561","UTAHDWQ_WQX-BRI210809-4908165-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908165-0809-4-C/results/933799561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7770","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","14:30:00","MST","2021-09-27 21:30:00",NA,"0.301",301,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799584","UTAHDWQ_WQX-BRI210920-4908165-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908165-0927-4-C/results/933799584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7771","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","14:30:00","MST","2021-09-27 21:30:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799587","UTAHDWQ_WQX-BRI210920-4908165-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"41.7098700000",41.70987,"-111.1889600000",-111.18896,"OK","16010101","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7098700000","-111.1889600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908165-0927-4-C/results/933799587/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7772","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","13:25:00","MST","2021-04-05 20:25:00",NA,"0.109",109,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799593","UTAHDWQ_WQX-BRI210405-4908168-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908168-0405-4-C/results/933799593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7773","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","13:25:00","MST","2021-04-05 20:25:00",NA,"0.141",141,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799596","UTAHDWQ_WQX-BRI210405-4908168-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908168-0405-4-C/results/933799596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7774","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","13:50:00","MST","2021-05-03 20:50:00",NA,"0.165",165,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799619","UTAHDWQ_WQX-BRI210503-4908168-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908168-0503-4-C/results/933799619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7775","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","13:50:00","MST","2021-05-03 20:50:00",NA,"0.131",131,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799622","UTAHDWQ_WQX-BRI210503-4908168-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908168-0503-4-C/results/933799622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7776","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","14:40:00","MST","2021-06-07 21:40:00",NA,"0.193",193,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799628","UTAHDWQ_WQX-BRI210607-4908168-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908168-0607-4-C/results/933799628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7777","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","14:40:00","MST","2021-06-07 21:40:00",NA,"0.194",194,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799631","UTAHDWQ_WQX-BRI210607-4908168-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908168-0607-4-C/results/933799631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7778","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:00:00","MST","2021-07-19 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799654","UTAHDWQ_WQX-BRI210719-4908168-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908168-0719-4-C/results/933799654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7779","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","14:00:00","MST","2021-07-19 21:00:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799657","UTAHDWQ_WQX-BRI210719-4908168-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908168-0719-4-C/results/933799657/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7780","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","14:10:00","MST","2021-08-09 21:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799663","UTAHDWQ_WQX-BRI210809-4908168-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908168-0809-4-C/results/933799663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7781","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","14:10:00","MST","2021-08-09 21:10:00",NA,"0.13",130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799666","UTAHDWQ_WQX-BRI210809-4908168-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908168-0809-4-C/results/933799666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7782","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","14:46:00","MST","2021-09-27 21:46:00",NA,"0.133",133,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799689","UTAHDWQ_WQX-BRI210920-4908168-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908168-0927-4-C/results/933799689/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7783","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","14:46:00","MST","2021-09-27 21:46:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799692","UTAHDWQ_WQX-BRI210920-4908168-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"41.7152200000",41.71522,"-111.2565900000",-111.25659,"OK","16010101","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7152200000","-111.2565900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908168-0927-4-C/results/933799692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7784","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","13:10:00","MST","2021-04-05 20:10:00",NA,"0.756",756,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799698","UTAHDWQ_WQX-BRI210405-4908170-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908170-0405-4-C/results/933799698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7785","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","13:10:00","MST","2021-04-05 20:10:00",NA,"0.797",797,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799701","UTAHDWQ_WQX-BRI210405-4908170-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908170-0405-4-C/results/933799701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7786","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","13:30:00","MST","2021-05-03 20:30:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799724","UTAHDWQ_WQX-BRI210503-4908170-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908170-0503-4-C/results/933799724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7787","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","13:30:00","MST","2021-05-03 20:30:00",NA,"0.413",413,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799727","UTAHDWQ_WQX-BRI210503-4908170-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908170-0503-4-C/results/933799727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7788","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","14:30:00","MST","2021-06-07 21:30:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799733","UTAHDWQ_WQX-BRI210607-4908170-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908170-0607-4-C/results/933799733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7789","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","14:30:00","MST","2021-06-07 21:30:00",NA,"0.616",616,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799736","UTAHDWQ_WQX-BRI210607-4908170-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908170-0607-4-C/results/933799736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7790","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:50:00","MST","2021-07-19 20:50:00",NA,"0.163",163,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799759","UTAHDWQ_WQX-BRI210719-4908170-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908170-0719-4-C/results/933799759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7791","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","13:50:00","MST","2021-07-19 20:50:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799762","UTAHDWQ_WQX-BRI210719-4908170-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908170-0719-4-C/results/933799762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7792","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","14:00:00","MST","2021-08-09 21:00:00",NA,"0.11",110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799768","UTAHDWQ_WQX-BRI210809-4908170-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908170-0809-4-C/results/933799768/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7793","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","14:00:00","MST","2021-08-09 21:00:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799771","UTAHDWQ_WQX-BRI210809-4908170-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908170-0809-4-C/results/933799771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7794","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","14:46:00","MST","2021-09-27 21:46:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799794","UTAHDWQ_WQX-BRI210920-4908170-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908170-0927-4-C/results/933799794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7795","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","14:46:00","MST","2021-09-27 21:46:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799797","UTAHDWQ_WQX-BRI210920-4908170-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"41.7268900000",41.72689,"-111.2552000000",-111.2552,"OK","16010101","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7268900000","-111.2552000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908170-0927-4-C/results/933799797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7796","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","09:30:00","MST","2021-05-03 16:30:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799803","UTAHDWQ_WQX-BRI210503-4908200-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","GENES CK @ U-16 XING","River/Stream",NA,"41.5238300000",41.52383,"-111.1560300000",-111.15603,"OK","16010101","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5238300000","-111.1560300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908200-0503-4-C/results/933799803/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7797","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","09:30:00","MST","2021-05-03 16:30:00",NA,"0.405",405,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799806","UTAHDWQ_WQX-BRI210503-4908200-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","GENES CK @ U-16 XING","River/Stream",NA,"41.5238300000",41.52383,"-111.1560300000",-111.15603,"OK","16010101","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5238300000","-111.1560300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908200-0503-4-C/results/933799806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7798","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","09:30:00","MST","2021-06-07 16:30:00",NA,"0.29",290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799812","UTAHDWQ_WQX-BRI210607-4908200-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","GENES CK @ U-16 XING","River/Stream",NA,"41.5238300000",41.52383,"-111.1560300000",-111.15603,"OK","16010101","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5238300000","-111.1560300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908200-0607-4-C/results/933799812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7799","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","09:30:00","MST","2021-06-07 16:30:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799815","UTAHDWQ_WQX-BRI210607-4908200-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","GENES CK @ U-16 XING","River/Stream",NA,"41.5238300000",41.52383,"-111.1560300000",-111.15603,"OK","16010101","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5238300000","-111.1560300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908200-0607-4-C/results/933799815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7800","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","12:15:00","MST","2021-04-05 19:15:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799838","UTAHDWQ_WQX-BRI210405-4908280-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908280-0405-4-C/results/933799838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7801","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","12:15:00","MST","2021-04-05 19:15:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799841","UTAHDWQ_WQX-BRI210405-4908280-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908280-0405-4-C/results/933799841/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7802","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","12:30:00","MST","2021-05-03 19:30:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799864","UTAHDWQ_WQX-BRI210503-4908280-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908280-0503-4-C/results/933799864/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7803","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","12:30:00","MST","2021-05-03 19:30:00",NA,"0.732",732,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799867","UTAHDWQ_WQX-BRI210503-4908280-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908280-0503-4-C/results/933799867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7804","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","13:20:00","MST","2021-06-07 20:20:00",NA,"0.961",961,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799873","UTAHDWQ_WQX-BRI210607-4908280-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908280-0607-4-C/results/933799873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7805","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","13:20:00","MST","2021-06-07 20:20:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799876","UTAHDWQ_WQX-BRI210607-4908280-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908280-0607-4-C/results/933799876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7806","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","14:45:00","MST","2021-06-21 21:45:00",NA,"0.316",316,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799899","UTAHDWQ_WQX-BRI210621-4908280-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908280-0621-4-C/results/933799899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7807","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","14:45:00","MST","2021-06-21 21:45:00",NA,"0.305",305,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799902","UTAHDWQ_WQX-BRI210621-4908280-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908280-0621-4-C/results/933799902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7808","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-08","11:20:00","MST","2021-07-08 18:20:00",NA,"0.29",290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799925","UTAHDWQ_WQX-BRI210706-4908280-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908280-0708-4-C/results/933799925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7809","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-08","11:20:00","MST","2021-07-08 18:20:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799928","UTAHDWQ_WQX-BRI210706-4908280-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908280-0708-4-C/results/933799928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7810","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:00:00","MST","2021-07-19 20:00:00",NA,"0.206",206,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799951","UTAHDWQ_WQX-BRI210719-4908280-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908280-0719-4-C/results/933799951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7811","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","13:00:00","MST","2021-07-19 20:00:00",NA,"0.239",239,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799954","UTAHDWQ_WQX-BRI210719-4908280-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908280-0719-4-C/results/933799954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7812","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","13:10:00","MST","2021-08-09 20:10:00",NA,"0.305",305,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799960","UTAHDWQ_WQX-BRI210809-4908280-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908280-0809-4-C/results/933799960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7813","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","13:10:00","MST","2021-08-09 20:10:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799963","UTAHDWQ_WQX-BRI210809-4908280-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908280-0809-4-C/results/933799963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7814","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","14:06:00","MST","2021-09-27 21:06:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799986","UTAHDWQ_WQX-BRI210920-4908280-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908280-0927-4-C/results/933799986/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7815","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","14:06:00","MST","2021-09-27 21:06:00",NA,"0.187",187,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799989","UTAHDWQ_WQX-BRI210920-4908280-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908280-0927-4-C/results/933799989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7816","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","12:20:00","MST","2021-04-05 19:20:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799995","UTAHDWQ_WQX-BRI210405-4908281-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908281-0405-4-C/results/933799995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7817","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","12:20:00","MST","2021-04-05 19:20:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933799998","UTAHDWQ_WQX-BRI210405-4908281-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908281-0405-4-C/results/933799998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7818","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","12:40:00","MST","2021-05-03 19:40:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800021","UTAHDWQ_WQX-BRI210503-4908281-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908281-0503-4-C/results/933800021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7819","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","12:40:00","MST","2021-05-03 19:40:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800024","UTAHDWQ_WQX-BRI210503-4908281-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908281-0503-4-C/results/933800024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7820","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","13:30:00","MST","2021-06-07 20:30:00",NA,"0.999",999,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800030","UTAHDWQ_WQX-BRI210607-4908281-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908281-0607-4-C/results/933800030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7821","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","13:30:00","MST","2021-06-07 20:30:00",NA,"0.836",836,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800033","UTAHDWQ_WQX-BRI210607-4908281-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908281-0607-4-C/results/933800033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7822","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","15:00:00","MST","2021-06-21 22:00:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800056","UTAHDWQ_WQX-BRI210621-4908281-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908281-0621-4-C/results/933800056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7823","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","15:00:00","MST","2021-06-21 22:00:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800059","UTAHDWQ_WQX-BRI210621-4908281-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908281-0621-4-C/results/933800059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7824","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-08","11:25:00","MST","2021-07-08 18:25:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800082","UTAHDWQ_WQX-BRI210706-4908281-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908281-0708-4-C/results/933800082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7825","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-08","11:25:00","MST","2021-07-08 18:25:00",NA,"0.313",313,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800085","UTAHDWQ_WQX-BRI210706-4908281-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908281-0708-4-C/results/933800085/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7826","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:10:00","MST","2021-07-19 20:10:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800108","UTAHDWQ_WQX-BRI210719-4908281-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908281-0719-4-C/results/933800108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7827","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","13:10:00","MST","2021-07-19 20:10:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800111","UTAHDWQ_WQX-BRI210719-4908281-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908281-0719-4-C/results/933800111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7828","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","13:15:00","MST","2021-08-09 20:15:00",NA,"0.29",290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800117","UTAHDWQ_WQX-BRI210809-4908281-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908281-0809-4-C/results/933800117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7829","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","13:15:00","MST","2021-08-09 20:15:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800120","UTAHDWQ_WQX-BRI210809-4908281-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908281-0809-4-C/results/933800120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7830","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","14:12:00","MST","2021-09-27 21:12:00",NA,"0.222",222,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800143","UTAHDWQ_WQX-BRI210920-4908281-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908281-0927-4-C/results/933800143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7831","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","14:12:00","MST","2021-09-27 21:12:00",NA,"0.153",153,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800146","UTAHDWQ_WQX-BRI210920-4908281-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","41.6964200000",41.69642,"-111.1172900000",-111.11729,"OK","16010101","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6964200000","-111.1172900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908281-0927-4-C/results/933800146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7832","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","10:45:00","MST","2021-04-05 17:45:00",NA,"0.597",597,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800152","UTAHDWQ_WQX-BRI210405-4908350-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908350-0405-4-C/results/933800152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7833","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","10:45:00","MST","2021-04-05 17:45:00",NA,"0.572",572,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800155","UTAHDWQ_WQX-BRI210405-4908350-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908350-0405-4-C/results/933800155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7834","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","10:40:00","MST","2021-05-03 17:40:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800178","UTAHDWQ_WQX-BRI210503-4908350-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908350-0503-4-C/results/933800178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7835","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","10:40:00","MST","2021-05-03 17:40:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800181","UTAHDWQ_WQX-BRI210503-4908350-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908350-0503-4-C/results/933800181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7836","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","11:10:00","MST","2021-06-07 18:10:00",NA,"0.766",766,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800187","UTAHDWQ_WQX-BRI210607-4908350-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908350-0607-4-C/results/933800187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7837","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","11:10:00","MST","2021-06-07 18:10:00",NA,"0.772",772,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800190","UTAHDWQ_WQX-BRI210607-4908350-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908350-0607-4-C/results/933800190/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7838","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","11:40:00","MST","2021-07-19 18:40:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800213","UTAHDWQ_WQX-BRI210719-4908350-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908350-0719-4-C/results/933800213/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7839","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","11:40:00","MST","2021-07-19 18:40:00",NA,"0.427",427,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800216","UTAHDWQ_WQX-BRI210719-4908350-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908350-0719-4-C/results/933800216/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7840","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","11:30:00","MST","2021-08-09 18:30:00",NA,"0.457",457,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800222","UTAHDWQ_WQX-BRI210809-4908350-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908350-0809-4-C/results/933800222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7841","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","11:30:00","MST","2021-08-09 18:30:00",NA,"0.649",649,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800225","UTAHDWQ_WQX-BRI210809-4908350-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908350-0809-4-C/results/933800225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7842","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","12:28:00","MST","2021-09-27 19:28:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800248","UTAHDWQ_WQX-BRI210920-4908350-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908350-0927-4-C/results/933800248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7843","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","12:28:00","MST","2021-09-27 19:28:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800251","UTAHDWQ_WQX-BRI210920-4908350-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"41.5941100000",41.59411,"-111.1374100000",-111.13741,"OK","16010101","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5941100000","-111.1374100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908350-0927-4-C/results/933800251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7844","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","10:00:00","MST","2021-04-05 17:00:00",NA,"0.845",845,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800257","UTAHDWQ_WQX-BRI210405-4908500-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908500-0405-4-C/results/933800257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7845","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","10:00:00","MST","2021-04-05 17:00:00",NA,"0.428",428,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800260","UTAHDWQ_WQX-BRI210405-4908500-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908500-0405-4-C/results/933800260/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7846","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","09:15:00","MST","2021-05-03 16:15:00",NA,"0.573",573,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800283","UTAHDWQ_WQX-BRI210503-4908500-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908500-0503-4-C/results/933800283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7847","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","09:15:00","MST","2021-05-03 16:15:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800286","UTAHDWQ_WQX-BRI210503-4908500-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908500-0503-4-C/results/933800286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7848","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","09:45:00","MST","2021-06-07 16:45:00",NA,"0.95",950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800292","UTAHDWQ_WQX-BRI210607-4908500-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908500-0607-4-C/results/933800292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7849","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","09:45:00","MST","2021-06-07 16:45:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800295","UTAHDWQ_WQX-BRI210607-4908500-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908500-0607-4-C/results/933800295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7850","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","12:40:00","MST","2021-06-21 19:40:00",NA,"0.596",596,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800318","UTAHDWQ_WQX-BRI210621-4908500-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908500-0621-4-C/results/933800318/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7851","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","12:40:00","MST","2021-06-21 19:40:00",NA,"0.539",539,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800321","UTAHDWQ_WQX-BRI210621-4908500-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908500-0621-4-C/results/933800321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7852","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-08","09:30:00","MST","2021-07-08 16:30:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800344","UTAHDWQ_WQX-BRI210706-4908500-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908500-0708-4-C/results/933800344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7853","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-08","09:30:00","MST","2021-07-08 16:30:00",NA,"0.393",393,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800347","UTAHDWQ_WQX-BRI210706-4908500-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908500-0708-4-C/results/933800347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7854","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","10:30:00","MST","2021-07-19 17:30:00",NA,"0.573",573,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800370","UTAHDWQ_WQX-BRI210719-4908500-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908500-0719-4-C/results/933800370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7855","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","10:30:00","MST","2021-07-19 17:30:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800373","UTAHDWQ_WQX-BRI210719-4908500-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908500-0719-4-C/results/933800373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7856","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","10:10:00","MST","2021-08-09 17:10:00",NA,"0.464",464,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800379","UTAHDWQ_WQX-BRI210809-4908500-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908500-0809-4-C/results/933800379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7857","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","10:10:00","MST","2021-08-09 17:10:00",NA,"0.491",491,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800382","UTAHDWQ_WQX-BRI210809-4908500-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908500-0809-4-C/results/933800382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7858","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","11:33:00","MST","2021-09-27 18:33:00",NA,"0.951",951,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800405","UTAHDWQ_WQX-BRI210920-4908500-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908500-0927-4-C/results/933800405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7859","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","11:33:00","MST","2021-09-27 18:33:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800408","UTAHDWQ_WQX-BRI210920-4908500-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BEAR R E OF WOODRUFF","River/Stream",NA,"41.5320700000",41.53207,"-111.1321400000",-111.13214,"OK","16010101","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5320700000","-111.1321400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908500-0927-4-C/results/933800408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7860","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","11:10:00","MST","2021-04-05 18:10:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800414","UTAHDWQ_WQX-BRI210405-4908697-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908697-0405-4-C/results/933800414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7861","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","11:10:00","MST","2021-04-05 18:10:00",NA,"0.504",504,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800417","UTAHDWQ_WQX-BRI210405-4908697-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908697-0405-4-C/results/933800417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7862","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","11:10:00","MST","2021-05-03 18:10:00",NA,"0.174",174,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800440","UTAHDWQ_WQX-BRI210503-4908697-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908697-0503-4-C/results/933800440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7863","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","11:10:00","MST","2021-05-03 18:10:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800443","UTAHDWQ_WQX-BRI210503-4908697-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908697-0503-4-C/results/933800443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7864","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","12:00:00","MST","2021-06-07 19:00:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800449","UTAHDWQ_WQX-BRI210607-4908697-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908697-0607-4-C/results/933800449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7865","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","12:00:00","MST","2021-06-07 19:00:00",NA,"0.502",502,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800452","UTAHDWQ_WQX-BRI210607-4908697-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908697-0607-4-C/results/933800452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7866","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","13:30:00","MST","2021-06-21 20:30:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800475","UTAHDWQ_WQX-BRI210621-4908697-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908697-0621-4-C/results/933800475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7867","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","13:30:00","MST","2021-06-21 20:30:00",NA,"0.192",192,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800478","UTAHDWQ_WQX-BRI210621-4908697-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908697-0621-4-C/results/933800478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7868","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","12:05:00","MST","2021-07-19 19:05:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800501","UTAHDWQ_WQX-BRI210719-4908697-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908697-0719-4-C/results/933800501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7869","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","12:05:00","MST","2021-07-19 19:05:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800504","UTAHDWQ_WQX-BRI210719-4908697-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908697-0719-4-C/results/933800504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7870","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","12:00:00","MST","2021-08-09 19:00:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800510","UTAHDWQ_WQX-BRI210809-4908697-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908697-0809-4-C/results/933800510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7871","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","12:00:00","MST","2021-08-09 19:00:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800513","UTAHDWQ_WQX-BRI210809-4908697-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908697-0809-4-C/results/933800513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7872","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","12:54:00","MST","2021-09-27 19:54:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800536","UTAHDWQ_WQX-BRI210920-4908697-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908697-0927-4-C/results/933800536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7873","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","12:54:00","MST","2021-09-27 19:54:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800539","UTAHDWQ_WQX-BRI210920-4908697-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"41.6087500000",41.60875,"-111.2584300000",-111.25843,"OK","16010101","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6087500000","-111.2584300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908697-0927-4-C/results/933800539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7874","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-10","08:30:00","MST","2021-09-10 15:30:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800547","UTAHDWQ_WQX-UCASE2021-4908701-0910-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Right Hand Fk Logan R ~2.2 mi ab Logan R (UT09ST-174)","River/Stream",NA,"41.7725300000",41.77253,"-111.6029900000",-111.60299,"OK","16010203","UTAHDWQ_WQX-4908701",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7725300000","-111.6029900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908701-0910-4-C/results/933800547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7875","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-10","08:30:00","MST","2021-09-10 15:30:00",NA,"0.628",628,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800550","UTAHDWQ_WQX-UCASE2021-4908701-0910-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Right Hand Fk Logan R ~2.2 mi ab Logan R (UT09ST-174)","River/Stream",NA,"41.7725300000",41.77253,"-111.6029900000",-111.60299,"OK","16010203","UTAHDWQ_WQX-4908701",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7725300000","-111.6029900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908701-0910-4-C/results/933800550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7876","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-30","10:15:00","MST","2021-06-30 17:15:00",NA,"0.14",140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800575","UTAHDWQ_WQX-UCASE2021-4908703-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Blacksmith Fork AB SR101 road crossing at mile post 10 (UT09ST-103)","River/Stream",NA,"41.6207000000",41.6207,"-111.7591000000",-111.7591,"OK","16010203","UTAHDWQ_WQX-4908703",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6207000000","-111.7591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908703-0630-4-C/results/933800575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7877","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-30","10:15:00","MST","2021-06-30 17:15:00",NA,"0.186",186,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800578","UTAHDWQ_WQX-UCASE2021-4908703-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Blacksmith Fork AB SR101 road crossing at mile post 10 (UT09ST-103)","River/Stream",NA,"41.6207000000",41.6207,"-111.7591000000",-111.7591,"OK","16010203","UTAHDWQ_WQX-4908703",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6207000000","-111.7591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908703-0630-4-C/results/933800578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7878","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","10:40:00","MST","2021-08-12 17:40:00",NA,"0.087",87,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800604","UTAHDWQ_WQX-UCASE2021-4908712-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Mill Creek above North Fork (UT09ST-112)","River/Stream",NA,"40.9303200000",40.93032,"-110.7400600000",-110.74006,"OK","16010101","UTAHDWQ_WQX-4908712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9303200000","-110.7400600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908712-0812-4-C/results/933800604/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7879","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-12","10:40:00","MST","2021-08-12 17:40:00",NA,"0.138",138,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800607","UTAHDWQ_WQX-UCASE2021-4908712-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Mill Creek above North Fork (UT09ST-112)","River/Stream",NA,"40.9303200000",40.93032,"-110.7400600000",-110.74006,"OK","16010101","UTAHDWQ_WQX-4908712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9303200000","-110.7400600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908712-0812-4-C/results/933800607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7880","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-31","09:20:00","MST","2021-08-31 16:20:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800633","UTAHDWQ_WQX-UCASE2021-4908713-0831-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","003","Malad River ab 20800 N Xing near Plymouth (UT09ST-113)","River/Stream",NA,"41.8882800000",41.88828,"-112.1881600000",-112.18816,"OK","16010204","UTAHDWQ_WQX-4908713",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8882800000","-112.1881600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908713-0831-4-C/results/933800633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7881","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-31","09:20:00","MST","2021-08-31 16:20:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800636","UTAHDWQ_WQX-UCASE2021-4908713-0831-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","003","Malad River ab 20800 N Xing near Plymouth (UT09ST-113)","River/Stream",NA,"41.8882800000",41.88828,"-112.1881600000",-112.18816,"OK","16010204","UTAHDWQ_WQX-4908713",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8882800000","-112.1881600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908713-0831-4-C/results/933800636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7882","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-08","10:20:00","MST","2021-07-08 17:20:00",NA,"0.747",747,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800662","UTAHDWQ_WQX-UCASE2021-4908716-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Hayden Fork above Hayden Fork Campground (UT09ST-116)","River/Stream",NA,"40.8286100000",40.82861,"-110.8550700000",-110.85507,"OK","16010101","UTAHDWQ_WQX-4908716",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8286100000","-110.8550700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908716-0708-4-C/results/933800662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7883","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-08","10:20:00","MST","2021-07-08 17:20:00",NA,"0.997",997,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800665","UTAHDWQ_WQX-UCASE2021-4908716-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Hayden Fork above Hayden Fork Campground (UT09ST-116)","River/Stream",NA,"40.8286100000",40.82861,"-110.8550700000",-110.85507,"OK","16010101","UTAHDWQ_WQX-4908716",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8286100000","-110.8550700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908716-0708-4-C/results/933800665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7884","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","10:40:00","MST","2021-07-06 17:40:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800691","UTAHDWQ_WQX-UCASE2021-4908721-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Little Bear River ~0.3 mi bl Mendon Rd Xing (UT09ST-121)","River/Stream",NA,"41.7214600000",41.72146,"-111.9464700000",-111.94647,"OK","16010203","UTAHDWQ_WQX-4908721",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7214600000","-111.9464700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908721-0706-4-C/results/933800691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7885","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","10:40:00","MST","2021-07-06 17:40:00",NA,"0.246",246,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800694","UTAHDWQ_WQX-UCASE2021-4908721-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Little Bear River ~0.3 mi bl Mendon Rd Xing (UT09ST-121)","River/Stream",NA,"41.7214600000",41.72146,"-111.9464700000",-111.94647,"OK","16010203","UTAHDWQ_WQX-4908721",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7214600000","-111.9464700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908721-0706-4-C/results/933800694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7886","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-30","11:50:00","MST","2021-08-30 18:50:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800720","UTAHDWQ_WQX-UCASE2021-4908734-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Logan River ab Diversion near Lauralin Dr in Logan (UT09ST-195)","River/Stream",NA,"41.7354100000",41.73541,"-111.8093100000",-111.80931,"OK","16010203","UTAHDWQ_WQX-4908734",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7354100000","-111.8093100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908734-0830-4-C/results/933800720/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7887","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-30","11:50:00","MST","2021-08-30 18:50:00",NA,"0.194",194,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800723","UTAHDWQ_WQX-UCASE2021-4908734-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Logan River ab Diversion near Lauralin Dr in Logan (UT09ST-195)","River/Stream",NA,"41.7354100000",41.73541,"-111.8093100000",-111.80931,"OK","16010203","UTAHDWQ_WQX-4908734",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7354100000","-111.8093100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908734-0830-4-C/results/933800723/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7888","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","10:40:00","MST","2021-06-29 17:40:00",NA,"0.178",178,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800749","UTAHDWQ_WQX-UCASE2021-4908742-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Left Hand Fk of Blacksmith Fk bl Sow Hole confluence (UT09ST-142)","River/Stream",NA,"41.6625100000",41.66251,"-111.6361500000",-111.63615,"OK","16010203","UTAHDWQ_WQX-4908742",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6625100000","-111.6361500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908742-0629-4-C/results/933800749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7889","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","10:40:00","MST","2021-06-29 17:40:00",NA,"0.281",281,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800752","UTAHDWQ_WQX-UCASE2021-4908742-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Left Hand Fk of Blacksmith Fk bl Sow Hole confluence (UT09ST-142)","River/Stream",NA,"41.6625100000",41.66251,"-111.6361500000",-111.63615,"OK","16010203","UTAHDWQ_WQX-4908742",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6625100000","-111.6361500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908742-0629-4-C/results/933800752/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7890","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","15:00:00","MST","2021-04-05 22:00:00",NA,"0.498",498,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800776","UTAHDWQ_WQX-BRI210405-4908744-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908744-0405-4-C/results/933800776/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7891","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","15:00:00","MST","2021-04-05 22:00:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800779","UTAHDWQ_WQX-BRI210405-4908744-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908744-0405-4-C/results/933800779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7892","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","08:40:00","MST","2021-05-04 15:40:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800802","UTAHDWQ_WQX-BRI210503-4908744-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908744-0504-4-C/results/933800802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7893","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","08:40:00","MST","2021-05-04 15:40:00",NA,"0.968",968,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800805","UTAHDWQ_WQX-BRI210503-4908744-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908744-0504-4-C/results/933800805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7894","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","09:00:00","MST","2021-06-08 16:00:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800811","UTAHDWQ_WQX-BRI210607-4908744-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908744-0608-4-C/results/933800811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7895","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","09:00:00","MST","2021-06-08 16:00:00",NA,"0.563",563,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800814","UTAHDWQ_WQX-BRI210607-4908744-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908744-0608-4-C/results/933800814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7896","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","10:40:00","MST","2021-07-20 17:40:00",NA,"0.086",86,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800837","UTAHDWQ_WQX-BRI210719-4908744-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908744-0720-4-C/results/933800837/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7897","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-20","10:40:00","MST","2021-07-20 17:40:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800840","UTAHDWQ_WQX-BRI210719-4908744-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908744-0720-4-C/results/933800840/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7898","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","09:35:00","MST","2021-08-10 16:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800846","UTAHDWQ_WQX-BRI210809-4908744-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908744-0810-4-C/results/933800846/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7899","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","09:35:00","MST","2021-08-10 16:35:00",NA,"0.343",343,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800849","UTAHDWQ_WQX-BRI210809-4908744-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908744-0810-4-C/results/933800849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7900","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-02","09:55:00","MST","2021-09-02 16:55:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800873","UTAHDWQ_WQX-UCASE2021-4908744-0902-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908744-0902-4-C/results/933800873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7901","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-02","09:55:00","MST","2021-09-02 16:55:00",NA,"0.153",153,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800876","UTAHDWQ_WQX-UCASE2021-4908744-0902-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908744-0902-4-C/results/933800876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7902","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-28","12:35:00","MST","2021-09-28 19:35:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800900","UTAHDWQ_WQX-BRI210920-4908744-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908744-0928-4-C/results/933800900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7903","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-28","12:35:00","MST","2021-09-28 19:35:00",NA,"0.184",184,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800903","UTAHDWQ_WQX-BRI210920-4908744-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"41.7449900000",41.74499,"-111.7493200000",-111.74932,"OK","16010203","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7449900000","-111.7493200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908744-0928-4-C/results/933800903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7904","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","15:30:00","MST","2021-04-05 22:30:00",NA,"0.422",422,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800909","UTAHDWQ_WQX-BRI210405-4908745-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908745-0405-4-C/results/933800909/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7905","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","15:30:00","MST","2021-04-05 22:30:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800912","UTAHDWQ_WQX-BRI210405-4908745-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908745-0405-4-C/results/933800912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7906","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","14:20:00","MST","2021-05-17 21:20:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800934","UTAHDWQ_WQX-BRI210503-4908745-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908745-0517-4-C/results/933800934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7907","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","14:20:00","MST","2021-05-17 21:20:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800937","UTAHDWQ_WQX-BRI210503-4908745-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908745-0517-4-C/results/933800937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7908","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","15:25:00","MST","2021-06-07 22:25:00",NA,"0.817",817,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800943","UTAHDWQ_WQX-BRI210607-4908745-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908745-0607-4-C/results/933800943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7909","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","15:25:00","MST","2021-06-07 22:25:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800946","UTAHDWQ_WQX-BRI210607-4908745-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908745-0607-4-C/results/933800946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7910","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","15:20:00","MST","2021-07-19 22:20:00",NA,"0.587",587,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800969","UTAHDWQ_WQX-BRI210719-4908745-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908745-0719-4-C/results/933800969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7911","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","15:20:00","MST","2021-07-19 22:20:00",NA,"0.527",527,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800972","UTAHDWQ_WQX-BRI210719-4908745-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908745-0719-4-C/results/933800972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7912","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","14:25:00","MST","2021-08-10 21:25:00",NA,"0.335",335,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800978","UTAHDWQ_WQX-BRI210809-4908745-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908745-0810-4-C/results/933800978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7913","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","14:25:00","MST","2021-08-10 21:25:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933800981","UTAHDWQ_WQX-BRI210809-4908745-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908745-0810-4-C/results/933800981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7914","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","14:55:00","MST","2021-09-21 21:55:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801002","UTAHDWQ_WQX-BRI210920-4908745-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908745-0921-4-C/results/933801002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7915","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","14:55:00","MST","2021-09-21 21:55:00",NA,"0.755",755,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801005","UTAHDWQ_WQX-BRI210920-4908745-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"41.9420500000",41.94205,"-112.1972700000",-112.19727,"OK","16010204","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9420500000","-112.1972700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908745-0921-4-C/results/933801005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7916","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","19:00:00","MST","2021-04-13 02:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801019","UTAHDWQ_WQX-UTLK210412-4910009-0412-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4910009-0412-4-C/results/933801019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7917","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","19:00:00","MST","2021-04-13 02:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801024","UTAHDWQ_WQX-UTLK210412-4910009-0412-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4910009-0412-4-C/results/933801024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7918","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","19:00:00","MST","2021-04-14 02:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801058","UTAHDWQ_WQX-UTLK210412-4910009-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4910009-0413-4-C/results/933801058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7919","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","19:00:00","MST","2021-04-14 02:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801063","UTAHDWQ_WQX-UTLK210412-4910009-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4910009-0413-4-C/results/933801063/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7920","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","18:00:00","MST","2021-05-11 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801077","UTAHDWQ_WQX-UTLK210510-4910009-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4910009-0510-4-C/results/933801077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7921","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","18:00:00","MST","2021-05-11 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801082","UTAHDWQ_WQX-UTLK210510-4910009-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4910009-0510-4-C/results/933801082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7922","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","19:00:00","MST","2021-05-13 02:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801096","UTAHDWQ_WQX-UTLK210510-4910009-0512-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4910009-0512-4-C/results/933801096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7923","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","19:00:00","MST","2021-05-13 02:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801101","UTAHDWQ_WQX-UTLK210510-4910009-0512-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4910009-0512-4-C/results/933801101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7924","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","16:00:00","MST","2021-06-14 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801135","UTAHDWQ_WQX-UTLK210614-4910009-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4910009-0614-4-C/results/933801135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7925","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","16:00:00","MST","2021-06-14 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801140","UTAHDWQ_WQX-UTLK210614-4910009-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4910009-0614-4-C/results/933801140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7926","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","16:40:00","MST","2021-06-15 23:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801174","UTAHDWQ_WQX-UTLK210614-4910009-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4910009-0615-4-C/results/933801174/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7927","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","16:40:00","MST","2021-06-15 23:40:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801179","UTAHDWQ_WQX-UTLK210614-4910009-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4910009-0615-4-C/results/933801179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7928","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-12","14:25:00","MST","2021-07-12 21:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801193","UTAHDWQ_WQX-UTLK210712-4910009-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0712-4-C/results/933801193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7929","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-12","14:25:00","MST","2021-07-12 21:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801198","UTAHDWQ_WQX-UTLK210712-4910009-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0712-4-C/results/933801198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7930","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","13:45:00","MST","2021-07-13 20:45:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801212","UTAHDWQ_WQX-UTLK210712-4910009-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0713-4-C/results/933801212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7931","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","13:45:00","MST","2021-07-13 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801217","UTAHDWQ_WQX-UTLK210712-4910009-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0713-4-C/results/933801217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7932","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","18:00:00","MST","2021-07-15 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801251","UTAHDWQ_WQX-UTLK210712-4910009-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0714-4-C/results/933801251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7933","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","18:00:00","MST","2021-07-15 01:00:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801256","UTAHDWQ_WQX-UTLK210712-4910009-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0714-4-C/results/933801256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7934","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","17:00:00","MST","2021-08-17 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801270","UTAHDWQ_WQX-UTLK210816-4910009-0816-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0816-4-C/results/933801270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7935","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","17:00:00","MST","2021-08-17 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801275","UTAHDWQ_WQX-UTLK210816-4910009-0816-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0816-4-C/results/933801275/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7936","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","14:00:00","MST","2021-08-17 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801309","UTAHDWQ_WQX-UTLK210816-4910009-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0817-4-C/results/933801309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7937","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","14:00:00","MST","2021-08-17 21:00:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801314","UTAHDWQ_WQX-UTLK210816-4910009-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0817-4-C/results/933801314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7938","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","16:00:00","MST","2021-08-18 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801328","UTAHDWQ_WQX-UTLK210816-4910009-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0818-4-C/results/933801328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7939","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","16:00:00","MST","2021-08-18 23:00:00",NA,"0.454",454,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801333","UTAHDWQ_WQX-UTLK210816-4910009-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0818-4-C/results/933801333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7940","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","17:00:00","MST","2021-09-14 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801347","UTAHDWQ_WQX-UTLK210913-4910009-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0913-4-C/results/933801347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7941","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","17:00:00","MST","2021-09-14 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801352","UTAHDWQ_WQX-UTLK210913-4910009-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0913-4-C/results/933801352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7942","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","15:00:00","MST","2021-09-14 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801386","UTAHDWQ_WQX-UTLK210913-4910009-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0914-4-C/results/933801386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7943","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","15:00:00","MST","2021-09-14 22:00:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801391","UTAHDWQ_WQX-UTLK210913-4910009-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0914-4-C/results/933801391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7944","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","15:00:00","MST","2021-09-15 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801405","UTAHDWQ_WQX-UTLK210913-4910009-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0915-4-C/results/933801405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7945","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","15:00:00","MST","2021-09-15 22:00:00",NA,"0.114",114,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801410","UTAHDWQ_WQX-UTLK210913-4910009-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0915-4-C/results/933801410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7946","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","15:15:00","MST","2021-06-21 22:15:00",NA,"0.433",433,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801420","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-2-C/results/933801420/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7947","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","15:15:00","MST","2021-06-21 22:15:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801423","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-2-C/results/933801423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7948","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","15:40:00","MST","2021-06-21 22:40:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"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,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801433","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-PZ-C/results/933801433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7949","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","15:40:00","MST","2021-06-21 22:40:00",NA,"0.281",281,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"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,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801436","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-PZ-C/results/933801436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7950","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","16:10:00","MST","2021-06-21 23:10:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801440","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-29-C/results/933801440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7951","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","16:10:00","MST","2021-06-21 23:10:00",NA,"0.307",307,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801443","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-29-C/results/933801443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7952","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","10:40:00","MST","2021-07-26 17:40:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801453","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4917190-0726-2-C/results/933801453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7953","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","10:40:00","MST","2021-07-26 17:40:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801456","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4917190-0726-2-C/results/933801456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7954","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","11:00:00","MST","2021-07-26 18:00:00",NA,"0.203",203,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.05",32.05,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801460","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4917190-0726-29-C/results/933801460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7955","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","11:00:00","MST","2021-07-26 18:00:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.05",32.05,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801463","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4917190-0726-29-C/results/933801463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7956","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","12:30:00","MST","2021-09-01 19:30:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801473","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-2-C/results/933801473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7957","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","12:30:00","MST","2021-09-01 19:30:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801476","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-2-C/results/933801476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7958","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","12:50:00","MST","2021-09-01 19:50:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL","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,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801486","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-PZ-C/results/933801486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7959","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","12:50:00","MST","2021-09-01 19:50:00",NA,"0.29",290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"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,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801489","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-PZ-C/results/933801489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7960","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-01","13:00:00","MST","2021-09-01 20:00:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","35",35,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801493","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-29-C/results/933801493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7961","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-01","13:00:00","MST","2021-09-01 20:00:00",NA,"0.343",343,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","35",35,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801496","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-29-C/results/933801496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7962","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","13:05:00","MST","2021-09-27 20:05:00",NA,"0.461",461,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801506","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4917190-0927-2-C/results/933801506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7963","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","13:05:00","MST","2021-09-27 20:05:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801509","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4917190-0927-2-C/results/933801509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7964","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-27","13:25:00","MST","2021-09-27 20:25:00",NA,"0.246",246,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34",34,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801513","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4917190-0927-29-C/results/933801513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7965","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-27","13:25:00","MST","2021-09-27 20:25:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34",34,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801516","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4917190-0927-29-C/results/933801516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7966","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","09:25:00","MST","2021-04-12 16:25:00",NA,"0.611",611,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801530","UTAHDWQ_WQX-UTLK210412-4917305-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917305-0412-2-C/results/933801530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7967","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","09:25:00","MST","2021-04-12 16:25:00",NA,"0.592",592,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801535","UTAHDWQ_WQX-UTLK210412-4917305-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917305-0412-2-C/results/933801535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7968","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","09:25:00","MST","2021-04-12 16:25:00",NA,"0.616",616,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.509",1.509,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801550","UTAHDWQ_WQX-UTLK210412-4917305-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917305-0412-29-C/results/933801550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7969","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","09:25:00","MST","2021-04-12 16:25:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.509",1.509,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801555","UTAHDWQ_WQX-UTLK210412-4917305-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917305-0412-29-C/results/933801555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7970","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","09:40:00","MST","2021-05-12 16:40:00",NA,"0.914",914,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801589","UTAHDWQ_WQX-UTLK210510-4917305-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917305-0512-2-C/results/933801589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7971","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","09:40:00","MST","2021-05-12 16:40:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801594","UTAHDWQ_WQX-UTLK210510-4917305-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917305-0512-2-C/results/933801594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7972","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","09:40:00","MST","2021-05-12 16:40:00",NA,"0.905",905,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.423",1.423,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801607","UTAHDWQ_WQX-UTLK210510-4917305-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917305-0512-29-C/results/933801607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7973","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","09:40:00","MST","2021-05-12 16:40:00",NA,"0.929",929,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.423",1.423,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801612","UTAHDWQ_WQX-UTLK210510-4917305-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917305-0512-29-C/results/933801612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7974","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","09:30:00","MST","2021-06-14 16:30:00",NA,"0.825",825,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801646","UTAHDWQ_WQX-UTLK210614-4917305-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917305-0614-2-C/results/933801646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7975","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","09:30:00","MST","2021-06-14 16:30:00",NA,"0.74",740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801651","UTAHDWQ_WQX-UTLK210614-4917305-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917305-0614-2-C/results/933801651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7976","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","09:45:00","MST","2021-06-14 16:45:00",NA,"0.906",906,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.488",1.488,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801666","UTAHDWQ_WQX-UTLK210614-4917305-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917305-0614-29-C/results/933801666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7977","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","09:45:00","MST","2021-06-14 16:45:00",NA,"0.822",822,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.488",1.488,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801671","UTAHDWQ_WQX-UTLK210614-4917305-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917305-0614-29-C/results/933801671/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7978","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","09:10:00","MST","2021-07-13 16:10:00",NA,"0.865",865,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801705","UTAHDWQ_WQX-UTLK210712-4917305-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917305-0713-2-C/results/933801705/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7979","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","09:10:00","MST","2021-07-13 16:10:00",NA,"0.771",771,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801710","UTAHDWQ_WQX-UTLK210712-4917305-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917305-0713-2-C/results/933801710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7980","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","09:15:00","MST","2021-07-13 16:15:00",NA,"0.9",900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.916",0.916,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801725","UTAHDWQ_WQX-UTLK210712-4917305-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917305-0713-29-C/results/933801725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7981","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","09:15:00","MST","2021-07-13 16:15:00",NA,"0.904",904,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.916",0.916,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801730","UTAHDWQ_WQX-UTLK210712-4917305-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917305-0713-29-C/results/933801730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7982","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","10:00:00","MST","2021-08-16 17:00:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801764","UTAHDWQ_WQX-UTLK210816-4917305-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917305-0816-2-C/results/933801764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7983","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","10:00:00","MST","2021-08-16 17:00:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801769","UTAHDWQ_WQX-UTLK210816-4917305-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917305-0816-2-C/results/933801769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7984","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","09:30:00","MST","2021-09-13 16:30:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801785","UTAHDWQ_WQX-UTLK210913-4917305-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917305-0913-2-C/results/933801785/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7985","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","09:30:00","MST","2021-09-13 16:30:00",NA,"0.836",836,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801790","UTAHDWQ_WQX-UTLK210913-4917305-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917305-0913-2-C/results/933801790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7986","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","10:15:00","MST","2021-04-12 17:15:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801806","UTAHDWQ_WQX-UTLK210412-4917310-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917310-0412-2-C/results/933801806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7987","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","10:15:00","MST","2021-04-12 17:15:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801811","UTAHDWQ_WQX-UTLK210412-4917310-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917310-0412-2-C/results/933801811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7988","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","10:15:00","MST","2021-04-12 17:15:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.911",1.911,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801826","UTAHDWQ_WQX-UTLK210412-4917310-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917310-0412-29-C/results/933801826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7989","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","10:15:00","MST","2021-04-12 17:15:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.911",1.911,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801831","UTAHDWQ_WQX-UTLK210412-4917310-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917310-0412-29-C/results/933801831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7990","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","10:40:00","MST","2021-05-12 17:40:00",NA,"0.676",676,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801865","UTAHDWQ_WQX-UTLK210510-4917310-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917310-0512-2-C/results/933801865/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7991","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","10:40:00","MST","2021-05-12 17:40:00",NA,"0.79",790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801870","UTAHDWQ_WQX-UTLK210510-4917310-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917310-0512-2-C/results/933801870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7992","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","10:40:00","MST","2021-05-12 17:40:00",NA,"0.784",784,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.793",1.793,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801883","UTAHDWQ_WQX-UTLK210510-4917310-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917310-0512-29-C/results/933801883/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7993","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","10:40:00","MST","2021-05-12 17:40:00",NA,"0.733",733,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.793",1.793,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801888","UTAHDWQ_WQX-UTLK210510-4917310-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917310-0512-29-C/results/933801888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7994","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","10:30:00","MST","2021-06-14 17:30:00",NA,"0.849",849,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801922","UTAHDWQ_WQX-UTLK210614-4917310-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917310-0614-2-C/results/933801922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7995","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","10:30:00","MST","2021-06-14 17:30:00",NA,"0.839",839,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801927","UTAHDWQ_WQX-UTLK210614-4917310-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917310-0614-2-C/results/933801927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7996","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","10:45:00","MST","2021-06-14 17:45:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.066",2.066,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801940","UTAHDWQ_WQX-UTLK210614-4917310-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917310-0614-29-C/results/933801940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7997","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","10:45:00","MST","2021-06-14 17:45:00",NA,"0.833",833,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.066",2.066,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801945","UTAHDWQ_WQX-UTLK210614-4917310-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917310-0614-29-C/results/933801945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7998","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","10:00:00","MST","2021-07-13 17:00:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801979","UTAHDWQ_WQX-UTLK210712-4917310-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917310-0713-2-C/results/933801979/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"7999","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:00:00","MST","2021-07-13 17:00:00",NA,"0.755",755,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801984","UTAHDWQ_WQX-UTLK210712-4917310-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917310-0713-2-C/results/933801984/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8000","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","10:05:00","MST","2021-07-13 17:05:00",NA,"0.693",693,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.385",1.385,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933801997","UTAHDWQ_WQX-UTLK210712-4917310-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917310-0713-29-C/results/933801997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8001","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:05:00","MST","2021-07-13 17:05:00",NA,"0.717",717,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.385",1.385,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802002","UTAHDWQ_WQX-UTLK210712-4917310-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917310-0713-29-C/results/933802002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8002","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","10:40:00","MST","2021-08-16 17:40:00",NA,"0.814",814,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802036","UTAHDWQ_WQX-UTLK210816-4917310-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917310-0816-2-C/results/933802036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8003","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","10:40:00","MST","2021-08-16 17:40:00",NA,"0.99",990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802041","UTAHDWQ_WQX-UTLK210816-4917310-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917310-0816-2-C/results/933802041/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8004","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","10:50:00","MST","2021-08-16 17:50:00",NA,"0.793",793,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.378",1.378,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802054","UTAHDWQ_WQX-UTLK210816-4917310-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917310-0816-29-C/results/933802054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8005","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","10:50:00","MST","2021-08-16 17:50:00",NA,"0.768",768,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.378",1.378,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802059","UTAHDWQ_WQX-UTLK210816-4917310-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917310-0816-29-C/results/933802059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8006","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","10:15:00","MST","2021-09-13 17:15:00",NA,"0.783",783,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802093","UTAHDWQ_WQX-UTLK210913-4917310-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917310-0913-2-C/results/933802093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8007","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","10:15:00","MST","2021-09-13 17:15:00",NA,"0.808",808,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802098","UTAHDWQ_WQX-UTLK210913-4917310-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917310-0913-2-C/results/933802098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8008","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","10:15:00","MST","2021-09-13 17:15:00",NA,"0.777",777,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.411",1.411,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802111","UTAHDWQ_WQX-UTLK210913-4917310-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917310-0913-29-C/results/933802111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8009","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","10:15:00","MST","2021-09-13 17:15:00",NA,"0.901",901,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.411",1.411,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802116","UTAHDWQ_WQX-UTLK210913-4917310-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917310-0913-29-C/results/933802116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8010","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","10:20:00","MST","2021-04-12 17:20:00",NA,"0.631",631,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802151","UTAHDWQ_WQX-UTLK210412-4917320-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917320-0412-2-C/results/933802151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8011","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","10:20:00","MST","2021-04-12 17:20:00",NA,"0.702",702,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802156","UTAHDWQ_WQX-UTLK210412-4917320-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917320-0412-2-C/results/933802156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8012","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","10:20:00","MST","2021-04-12 17:20:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.877",1.877,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802171","UTAHDWQ_WQX-UTLK210412-4917320-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917320-0412-29-C/results/933802171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8013","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","10:20:00","MST","2021-04-12 17:20:00",NA,"0.549",549,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.877",1.877,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802176","UTAHDWQ_WQX-UTLK210412-4917320-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917320-0412-29-C/results/933802176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8014","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","10:50:00","MST","2021-05-12 17:50:00",NA,"0.688",688,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802210","UTAHDWQ_WQX-UTLK210510-4917320-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917320-0512-2-C/results/933802210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8015","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","10:50:00","MST","2021-05-12 17:50:00",NA,"0.761",761,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802215","UTAHDWQ_WQX-UTLK210510-4917320-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917320-0512-2-C/results/933802215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8016","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","10:50:00","MST","2021-05-12 17:50:00",NA,"0.75",750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802228","UTAHDWQ_WQX-UTLK210510-4917320-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917320-0512-29-C/results/933802228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8017","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","10:50:00","MST","2021-05-12 17:50:00",NA,"0.727",727,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802233","UTAHDWQ_WQX-UTLK210510-4917320-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917320-0512-29-C/results/933802233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8018","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:00:00","MST","2021-06-14 18:00:00",NA,"0.967",967,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802267","UTAHDWQ_WQX-UTLK210614-4917320-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917320-0614-2-C/results/933802267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8019","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:00:00","MST","2021-06-14 18:00:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802272","UTAHDWQ_WQX-UTLK210614-4917320-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917320-0614-2-C/results/933802272/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8020","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:10:00","MST","2021-06-14 18:10:00",NA,"0.768",768,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.019",2.019,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802285","UTAHDWQ_WQX-UTLK210614-4917320-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917320-0614-29-C/results/933802285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8021","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:10:00","MST","2021-06-14 18:10:00",NA,"0.706",706,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.019",2.019,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802290","UTAHDWQ_WQX-UTLK210614-4917320-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917320-0614-29-C/results/933802290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8022","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","10:10:00","MST","2021-07-13 17:10:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802324","UTAHDWQ_WQX-UTLK210712-4917320-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917320-0713-2-C/results/933802324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8023","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:10:00","MST","2021-07-13 17:10:00",NA,"0.713",713,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802329","UTAHDWQ_WQX-UTLK210712-4917320-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917320-0713-2-C/results/933802329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8024","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","10:15:00","MST","2021-07-13 17:15:00",NA,"0.662",662,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.408",1.408,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802342","UTAHDWQ_WQX-UTLK210712-4917320-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917320-0713-29-C/results/933802342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8025","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:15:00","MST","2021-07-13 17:15:00",NA,"0.722",722,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.408",1.408,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802347","UTAHDWQ_WQX-UTLK210712-4917320-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917320-0713-29-C/results/933802347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8026","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","11:00:00","MST","2021-08-16 18:00:00",NA,"0.797",797,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802381","UTAHDWQ_WQX-UTLK210816-4917320-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917320-0816-2-C/results/933802381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8027","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","11:00:00","MST","2021-08-16 18:00:00",NA,"0.781",781,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802386","UTAHDWQ_WQX-UTLK210816-4917320-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917320-0816-2-C/results/933802386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8028","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","11:10:00","MST","2021-08-16 18:10:00",NA,"0.785",785,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.38",1.38,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802399","UTAHDWQ_WQX-UTLK210816-4917320-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917320-0816-29-C/results/933802399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8029","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","11:10:00","MST","2021-08-16 18:10:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.38",1.38,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802404","UTAHDWQ_WQX-UTLK210816-4917320-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917320-0816-29-C/results/933802404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8030","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","10:30:00","MST","2021-09-13 17:30:00",NA,"0.841",841,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802438","UTAHDWQ_WQX-UTLK210913-4917320-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917320-0913-2-C/results/933802438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8031","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","10:30:00","MST","2021-09-13 17:30:00",NA,"0.774",774,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802443","UTAHDWQ_WQX-UTLK210913-4917320-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917320-0913-2-C/results/933802443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8032","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","10:30:00","MST","2021-09-13 17:30:00",NA,"0.951",951,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.359",1.359,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802456","UTAHDWQ_WQX-UTLK210913-4917320-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917320-0913-29-C/results/933802456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8033","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","10:30:00","MST","2021-09-13 17:30:00",NA,"0.821",821,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.359",1.359,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802461","UTAHDWQ_WQX-UTLK210913-4917320-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917320-0913-29-C/results/933802461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8034","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","09:55:00","MST","2021-04-12 16:55:00",NA,"0.975",975,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802496","UTAHDWQ_WQX-UTLK210412-4917335-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917335-0412-2-C/results/933802496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8035","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","09:55:00","MST","2021-04-12 16:55:00",NA,"0.873",873,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802501","UTAHDWQ_WQX-UTLK210412-4917335-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917335-0412-2-C/results/933802501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8036","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","09:55:00","MST","2021-04-12 16:55:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.642",1.642,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802516","UTAHDWQ_WQX-UTLK210412-4917335-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917335-0412-29-C/results/933802516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8037","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","09:55:00","MST","2021-04-12 16:55:00",NA,"0.965",965,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.642",1.642,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802521","UTAHDWQ_WQX-UTLK210412-4917335-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917335-0412-29-C/results/933802521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8038","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","10:15:00","MST","2021-05-12 17:15:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802555","UTAHDWQ_WQX-UTLK210510-4917335-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917335-0512-2-C/results/933802555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8039","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","10:15:00","MST","2021-05-12 17:15:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802560","UTAHDWQ_WQX-UTLK210510-4917335-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917335-0512-2-C/results/933802560/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8040","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","10:15:00","MST","2021-05-12 17:15:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.206",1.206,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802573","UTAHDWQ_WQX-UTLK210510-4917335-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917335-0512-29-C/results/933802573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8041","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","10:15:00","MST","2021-05-12 17:15:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.206",1.206,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802578","UTAHDWQ_WQX-UTLK210510-4917335-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917335-0512-29-C/results/933802578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8042","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","10:00:00","MST","2021-06-14 17:00:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802612","UTAHDWQ_WQX-UTLK210614-4917335-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917335-0614-2-C/results/933802612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8043","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","10:00:00","MST","2021-06-14 17:00:00",NA,"0.921",921,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802617","UTAHDWQ_WQX-UTLK210614-4917335-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917335-0614-2-C/results/933802617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8044","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","10:15:00","MST","2021-06-14 17:15:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.337",1.337,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802632","UTAHDWQ_WQX-UTLK210614-4917335-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917335-0614-29-C/results/933802632/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8045","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","10:15:00","MST","2021-06-14 17:15:00",NA,"0.807",807,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.337",1.337,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802637","UTAHDWQ_WQX-UTLK210614-4917335-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917335-0614-29-C/results/933802637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8046","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","09:40:00","MST","2021-07-13 16:40:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802671","UTAHDWQ_WQX-UTLK210712-4917335-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917335-0713-2-C/results/933802671/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8047","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","09:40:00","MST","2021-07-13 16:40:00",NA,"0.918",918,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802676","UTAHDWQ_WQX-UTLK210712-4917335-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917335-0713-2-C/results/933802676/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8048","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","09:45:00","MST","2021-07-13 16:45:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.775",0.775,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802691","UTAHDWQ_WQX-UTLK210712-4917335-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917335-0713-29-C/results/933802691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8049","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","09:45:00","MST","2021-07-13 16:45:00",NA,"0.887",887,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.775",0.775,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802696","UTAHDWQ_WQX-UTLK210712-4917335-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917335-0713-29-C/results/933802696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8050","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","10:20:00","MST","2021-08-16 17:20:00",NA,"1.92",1920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802730","UTAHDWQ_WQX-UTLK210816-4917335-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917335-0816-2-C/results/933802730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8051","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","10:20:00","MST","2021-08-16 17:20:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802735","UTAHDWQ_WQX-UTLK210816-4917335-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917335-0816-2-C/results/933802735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8052","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","10:00:00","MST","2021-09-13 17:00:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802751","UTAHDWQ_WQX-UTLK210913-4917335-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917335-0913-2-C/results/933802751/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8053","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","10:00:00","MST","2021-09-13 17:00:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802756","UTAHDWQ_WQX-UTLK210913-4917335-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917335-0913-2-C/results/933802756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8054","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","10:45:00","MST","2021-04-12 17:45:00",NA,"0.549",549,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802772","UTAHDWQ_WQX-UTLK210412-4917365-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917365-0412-2-C/results/933802772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8055","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","10:45:00","MST","2021-04-12 17:45:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802777","UTAHDWQ_WQX-UTLK210412-4917365-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917365-0412-2-C/results/933802777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8056","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","10:45:00","MST","2021-04-12 17:45:00",NA,"0.604",604,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.405",2.405,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802792","UTAHDWQ_WQX-UTLK210412-4917365-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917365-0412-29-C/results/933802792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8057","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","10:45:00","MST","2021-04-12 17:45:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.405",2.405,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802797","UTAHDWQ_WQX-UTLK210412-4917365-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917365-0412-29-C/results/933802797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8058","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","11:00:00","MST","2021-05-12 18:00:00",NA,"0.62",620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802831","UTAHDWQ_WQX-UTLK210510-4917365-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917365-0512-2-C/results/933802831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8059","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","11:00:00","MST","2021-05-12 18:00:00",NA,"0.719",719,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802836","UTAHDWQ_WQX-UTLK210510-4917365-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917365-0512-2-C/results/933802836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8060","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","11:00:00","MST","2021-05-12 18:00:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.553",2.553,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802849","UTAHDWQ_WQX-UTLK210510-4917365-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917365-0512-29-C/results/933802849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8061","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","11:00:00","MST","2021-05-12 18:00:00",NA,"0.656",656,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.553",2.553,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802854","UTAHDWQ_WQX-UTLK210510-4917365-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917365-0512-29-C/results/933802854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8062","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:15:00","MST","2021-06-14 18:15:00",NA,"0.779",779,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802888","UTAHDWQ_WQX-UTLK210614-4917365-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917365-0614-2-C/results/933802888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8063","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:15:00","MST","2021-06-14 18:15:00",NA,"0.793",793,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802893","UTAHDWQ_WQX-UTLK210614-4917365-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917365-0614-2-C/results/933802893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8064","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:20:00","MST","2021-06-14 18:20:00",NA,"0.812",812,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.506",2.506,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802906","UTAHDWQ_WQX-UTLK210614-4917365-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917365-0614-29-C/results/933802906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8065","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:20:00","MST","2021-06-14 18:20:00",NA,"0.808",808,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.506",2.506,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802911","UTAHDWQ_WQX-UTLK210614-4917365-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917365-0614-29-C/results/933802911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8066","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","10:30:00","MST","2021-07-13 17:30:00",NA,"0.774",774,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802945","UTAHDWQ_WQX-UTLK210712-4917365-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917365-0713-2-C/results/933802945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8067","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:30:00","MST","2021-07-13 17:30:00",NA,"0.741",741,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802950","UTAHDWQ_WQX-UTLK210712-4917365-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917365-0713-2-C/results/933802950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8068","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","10:35:00","MST","2021-07-13 17:35:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.153",2.153,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802963","UTAHDWQ_WQX-UTLK210712-4917365-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917365-0713-29-C/results/933802963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8069","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:35:00","MST","2021-07-13 17:35:00",NA,"0.724",724,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.153",2.153,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933802968","UTAHDWQ_WQX-UTLK210712-4917365-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917365-0713-29-C/results/933802968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8070","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","11:15:00","MST","2021-08-16 18:15:00",NA,"0.786",786,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803002","UTAHDWQ_WQX-UTLK210816-4917365-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917365-0816-2-C/results/933803002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8071","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","11:15:00","MST","2021-08-16 18:15:00",NA,"0.806",806,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803007","UTAHDWQ_WQX-UTLK210816-4917365-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917365-0816-2-C/results/933803007/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8072","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","11:20:00","MST","2021-08-16 18:20:00",NA,"0.757",757,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.958",1.958,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803020","UTAHDWQ_WQX-UTLK210816-4917365-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917365-0816-29-C/results/933803020/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8073","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","11:20:00","MST","2021-08-16 18:20:00",NA,"0.933",933,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.958",1.958,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803025","UTAHDWQ_WQX-UTLK210816-4917365-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917365-0816-29-C/results/933803025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8074","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","10:50:00","MST","2021-09-13 17:50:00",NA,"0.882",882,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803059","UTAHDWQ_WQX-UTLK210913-4917365-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917365-0913-2-C/results/933803059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8075","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","10:50:00","MST","2021-09-13 17:50:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803064","UTAHDWQ_WQX-UTLK210913-4917365-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917365-0913-2-C/results/933803064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8076","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","10:50:00","MST","2021-09-13 17:50:00",NA,"0.77",770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.344",2.344,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803077","UTAHDWQ_WQX-UTLK210913-4917365-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917365-0913-29-C/results/933803077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8077","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","10:50:00","MST","2021-09-13 17:50:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.344",2.344,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803082","UTAHDWQ_WQX-UTLK210913-4917365-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917365-0913-29-C/results/933803082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8078","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","14:45:00","MST","2021-04-12 21:45:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803117","UTAHDWQ_WQX-UTLK210412-4917370-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917370-0412-2-C/results/933803117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8079","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","14:45:00","MST","2021-04-12 21:45:00",NA,"0.537",537,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803122","UTAHDWQ_WQX-UTLK210412-4917370-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:16:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917370-0412-2-C/results/933803122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8080","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","14:45:00","MST","2021-04-12 21:45:00",NA,"0.592",592,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.395",2.395,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803137","UTAHDWQ_WQX-UTLK210412-4917370-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917370-0412-29-C/results/933803137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8081","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","14:45:00","MST","2021-04-12 21:45:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.395",2.395,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803142","UTAHDWQ_WQX-UTLK210412-4917370-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917370-0412-29-C/results/933803142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8082","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","14:30:00","MST","2021-05-12 21:30:00",NA,"0.646",646,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803176","UTAHDWQ_WQX-UTLK210510-4917370-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917370-0512-2-C/results/933803176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8083","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","14:30:00","MST","2021-05-12 21:30:00",NA,"0.608",608,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803181","UTAHDWQ_WQX-UTLK210510-4917370-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917370-0512-2-C/results/933803181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8084","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","14:30:00","MST","2021-05-12 21:30:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.259",2.259,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803194","UTAHDWQ_WQX-UTLK210510-4917370-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917370-0512-29-C/results/933803194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8085","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","14:30:00","MST","2021-05-12 21:30:00",NA,"0.585",585,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.259",2.259,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803199","UTAHDWQ_WQX-UTLK210510-4917370-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917370-0512-29-C/results/933803199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8086","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","14:30:00","MST","2021-06-14 21:30:00",NA,"0.84",840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803233","UTAHDWQ_WQX-UTLK210614-4917370-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917370-0614-2-C/results/933803233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8087","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","14:30:00","MST","2021-06-14 21:30:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803238","UTAHDWQ_WQX-UTLK210614-4917370-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917370-0614-2-C/results/933803238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8088","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","14:35:00","MST","2021-06-14 21:35:00",NA,"0.753",753,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.414",2.414,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803251","UTAHDWQ_WQX-UTLK210614-4917370-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917370-0614-29-C/results/933803251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8089","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","14:35:00","MST","2021-06-14 21:35:00",NA,"0.723",723,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.414",2.414,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803256","UTAHDWQ_WQX-UTLK210614-4917370-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917370-0614-29-C/results/933803256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8090","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","12:45:00","MST","2021-07-13 19:45:00",NA,"0.733",733,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803290","UTAHDWQ_WQX-UTLK210712-4917370-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917370-0713-2-C/results/933803290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8091","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","12:45:00","MST","2021-07-13 19:45:00",NA,"0.726",726,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803295","UTAHDWQ_WQX-UTLK210712-4917370-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917370-0713-2-C/results/933803295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8092","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","12:50:00","MST","2021-07-13 19:50:00",NA,"0.648",648,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.193",2.193,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803308","UTAHDWQ_WQX-UTLK210712-4917370-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917370-0713-29-C/results/933803308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8093","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","12:50:00","MST","2021-07-13 19:50:00",NA,"0.78",780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.193",2.193,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803313","UTAHDWQ_WQX-UTLK210712-4917370-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917370-0713-29-C/results/933803313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8094","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","13:40:00","MST","2021-08-16 20:40:00",NA,"0.783",783,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803347","UTAHDWQ_WQX-UTLK210816-4917370-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917370-0816-2-C/results/933803347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8095","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","13:40:00","MST","2021-08-16 20:40:00",NA,"0.711",711,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803352","UTAHDWQ_WQX-UTLK210816-4917370-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917370-0816-2-C/results/933803352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8096","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","13:50:00","MST","2021-08-16 20:50:00",NA,"0.718",718,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.12",2.12,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803365","UTAHDWQ_WQX-UTLK210816-4917370-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917370-0816-29-C/results/933803365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8097","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","13:50:00","MST","2021-08-16 20:50:00",NA,"0.713",713,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.12",2.12,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803370","UTAHDWQ_WQX-UTLK210816-4917370-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917370-0816-29-C/results/933803370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8098","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","13:40:00","MST","2021-09-13 20:40:00",NA,"0.788",788,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803404","UTAHDWQ_WQX-UTLK210913-4917370-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917370-0913-2-C/results/933803404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8099","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","13:40:00","MST","2021-09-13 20:40:00",NA,"0.932",932,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803409","UTAHDWQ_WQX-UTLK210913-4917370-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917370-0913-2-C/results/933803409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8100","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","13:40:00","MST","2021-09-13 20:40:00",NA,"0.868",868,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.861",1.861,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803422","UTAHDWQ_WQX-UTLK210913-4917370-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917370-0913-29-C/results/933803422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8101","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","13:40:00","MST","2021-09-13 20:40:00",NA,"0.811",811,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.861",1.861,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803427","UTAHDWQ_WQX-UTLK210913-4917370-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917370-0913-29-C/results/933803427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8102","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","11:00:00","MST","2021-04-12 18:00:00",NA,"0.571",571,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803462","UTAHDWQ_WQX-UTLK210412-4917390-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917390-0412-2-C/results/933803462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8103","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","11:00:00","MST","2021-04-12 18:00:00",NA,"0.546",546,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803467","UTAHDWQ_WQX-UTLK210412-4917390-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917390-0412-2-C/results/933803467/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8104","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","11:00:00","MST","2021-04-12 18:00:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.766",2.766,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803482","UTAHDWQ_WQX-UTLK210412-4917390-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917390-0412-29-C/results/933803482/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8105","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","11:00:00","MST","2021-04-12 18:00:00",NA,"0.587",587,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.766",2.766,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803487","UTAHDWQ_WQX-UTLK210412-4917390-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917390-0412-29-C/results/933803487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8106","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","11:45:00","MST","2021-05-12 18:45:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803521","UTAHDWQ_WQX-UTLK210510-4917390-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917390-0512-2-C/results/933803521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8107","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","11:45:00","MST","2021-05-12 18:45:00",NA,"0.78",780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.746",2.746,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803534","UTAHDWQ_WQX-UTLK210510-4917390-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917390-0512-29-C/results/933803534/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8108","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:25:00","MST","2021-06-14 18:25:00",NA,"0.742",742,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803568","UTAHDWQ_WQX-UTLK210614-4917390-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917390-0614-2-C/results/933803568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8109","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:25:00","MST","2021-06-14 18:25:00",NA,"0.997",997,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803573","UTAHDWQ_WQX-UTLK210614-4917390-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917390-0614-2-C/results/933803573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8110","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:30:00","MST","2021-06-14 18:30:00",NA,"0.813",813,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.827",2.827,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803586","UTAHDWQ_WQX-UTLK210614-4917390-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917390-0614-29-C/results/933803586/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8111","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:30:00","MST","2021-06-14 18:30:00",NA,"0.936",936,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.827",2.827,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803591","UTAHDWQ_WQX-UTLK210614-4917390-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917390-0614-29-C/results/933803591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8112","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","10:50:00","MST","2021-07-13 17:50:00",NA,"0.697",697,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803625","UTAHDWQ_WQX-UTLK210712-4917390-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917390-0713-2-C/results/933803625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8113","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:50:00","MST","2021-07-13 17:50:00",NA,"0.816",816,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803630","UTAHDWQ_WQX-UTLK210712-4917390-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917390-0713-2-C/results/933803630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8114","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","10:55:00","MST","2021-07-13 17:55:00",NA,"0.635",635,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.426",2.426,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803643","UTAHDWQ_WQX-UTLK210712-4917390-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917390-0713-29-C/results/933803643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8115","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:55:00","MST","2021-07-13 17:55:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.426",2.426,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803648","UTAHDWQ_WQX-UTLK210712-4917390-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917390-0713-29-C/results/933803648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8116","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","12:00:00","MST","2021-08-16 19:00:00",NA,"0.828",828,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803682","UTAHDWQ_WQX-UTLK210816-4917390-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917390-0816-2-C/results/933803682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8117","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","12:00:00","MST","2021-08-16 19:00:00",NA,"0.734",734,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803687","UTAHDWQ_WQX-UTLK210816-4917390-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917390-0816-2-C/results/933803687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8118","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","12:10:00","MST","2021-08-16 19:10:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.394",2.394,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803700","UTAHDWQ_WQX-UTLK210816-4917390-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917390-0816-29-C/results/933803700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8119","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:45:00","MST","2021-09-13 18:45:00",NA,"0.962",962,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803734","UTAHDWQ_WQX-UTLK210913-4917390-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917390-0913-2-C/results/933803734/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8120","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","11:45:00","MST","2021-09-13 18:45:00",NA,"0.882",882,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803739","UTAHDWQ_WQX-UTLK210913-4917390-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917390-0913-2-C/results/933803739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8121","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:45:00","MST","2021-09-13 18:45:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.378",2.378,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803752","UTAHDWQ_WQX-UTLK210913-4917390-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917390-0913-29-C/results/933803752/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8122","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","11:45:00","MST","2021-09-13 18:45:00",NA,"0.951",951,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.378",2.378,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803757","UTAHDWQ_WQX-UTLK210913-4917390-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917390-0913-29-C/results/933803757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8123","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","15:10:00","MST","2021-04-12 22:10:00",NA,"0.91",910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803792","UTAHDWQ_WQX-UTLK210412-4917414-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917414-0412-2-C/results/933803792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8124","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","15:10:00","MST","2021-04-12 22:10:00",NA,"0.838",838,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803797","UTAHDWQ_WQX-UTLK210412-4917414-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917414-0412-2-C/results/933803797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8125","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","15:10:00","MST","2021-04-12 22:10:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.908",1.908,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803812","UTAHDWQ_WQX-UTLK210412-4917414-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917414-0412-29-C/results/933803812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8126","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","15:10:00","MST","2021-04-12 22:10:00",NA,"0.873",873,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.908",1.908,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803817","UTAHDWQ_WQX-UTLK210412-4917414-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917414-0412-29-C/results/933803817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8127","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","14:50:00","MST","2021-05-12 21:50:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803851","UTAHDWQ_WQX-UTLK210510-4917414-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917414-0512-2-C/results/933803851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8128","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","14:50:00","MST","2021-05-12 21:50:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803856","UTAHDWQ_WQX-UTLK210510-4917414-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917414-0512-2-C/results/933803856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8129","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","14:50:00","MST","2021-05-12 21:50:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.417",1.417,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803869","UTAHDWQ_WQX-UTLK210510-4917414-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917414-0512-29-C/results/933803869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8130","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","14:50:00","MST","2021-05-12 21:50:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.417",1.417,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803874","UTAHDWQ_WQX-UTLK210510-4917414-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917414-0512-29-C/results/933803874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8131","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","14:45:00","MST","2021-06-14 21:45:00",NA,"0.812",812,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803908","UTAHDWQ_WQX-UTLK210614-4917414-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917414-0614-2-C/results/933803908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8132","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","14:45:00","MST","2021-06-14 21:45:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803913","UTAHDWQ_WQX-UTLK210614-4917414-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917414-0614-2-C/results/933803913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8133","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","14:50:00","MST","2021-06-14 21:50:00",NA,"0.925",925,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.053",2.053,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803928","UTAHDWQ_WQX-UTLK210614-4917414-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917414-0614-29-C/results/933803928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8134","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","14:50:00","MST","2021-06-14 21:50:00",NA,"0.915",915,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.053",2.053,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803933","UTAHDWQ_WQX-UTLK210614-4917414-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917414-0614-29-C/results/933803933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8135","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","13:10:00","MST","2021-07-13 20:10:00",NA,"0.797",797,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803967","UTAHDWQ_WQX-UTLK210712-4917414-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917414-0713-2-C/results/933803967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8136","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","13:10:00","MST","2021-07-13 20:10:00",NA,"0.798",798,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803972","UTAHDWQ_WQX-UTLK210712-4917414-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917414-0713-2-C/results/933803972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8137","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","14:00:00","MST","2021-08-16 21:00:00",NA,"0.754",754,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803988","UTAHDWQ_WQX-UTLK210816-4917414-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917414-0816-2-C/results/933803988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8138","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","14:00:00","MST","2021-08-16 21:00:00",NA,"0.752",752,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933803993","UTAHDWQ_WQX-UTLK210816-4917414-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917414-0816-2-C/results/933803993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8139","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","14:00:00","MST","2021-09-13 21:00:00",NA,"0.893",893,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804009","UTAHDWQ_WQX-UTLK210913-4917414-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917414-0913-2-C/results/933804009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8140","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","14:00:00","MST","2021-09-13 21:00:00",NA,"0.903",903,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804014","UTAHDWQ_WQX-UTLK210913-4917414-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917414-0913-2-C/results/933804014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8141","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","11:10:00","MST","2021-04-12 18:10:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804030","UTAHDWQ_WQX-UTLK210412-4917433-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917433-0412-2-C/results/933804030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8142","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","11:10:00","MST","2021-04-12 18:10:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804035","UTAHDWQ_WQX-UTLK210412-4917433-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917433-0412-2-C/results/933804035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8143","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","11:10:00","MST","2021-04-12 18:10:00",NA,"0.534",534,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.857",1.857,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804050","UTAHDWQ_WQX-UTLK210412-4917433-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917433-0412-29-C/results/933804050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8144","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","11:10:00","MST","2021-04-12 18:10:00",NA,"0.518",518,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.857",1.857,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804055","UTAHDWQ_WQX-UTLK210412-4917433-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917433-0412-29-C/results/933804055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8145","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","11:30:00","MST","2021-05-12 18:30:00",NA,"0.686",686,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804089","UTAHDWQ_WQX-UTLK210510-4917433-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917433-0512-2-C/results/933804089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8146","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","11:30:00","MST","2021-05-12 18:30:00",NA,"0.695",695,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804094","UTAHDWQ_WQX-UTLK210510-4917433-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917433-0512-2-C/results/933804094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8147","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","11:30:00","MST","2021-05-12 18:30:00",NA,"0.706",706,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.449",2.449,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804107","UTAHDWQ_WQX-UTLK210510-4917433-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917433-0512-29-C/results/933804107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8148","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","11:30:00","MST","2021-05-12 18:30:00",NA,"0.782",782,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.449",2.449,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804112","UTAHDWQ_WQX-UTLK210510-4917433-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917433-0512-29-C/results/933804112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8149","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:35:00","MST","2021-06-14 18:35:00",NA,"0.856",856,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804146","UTAHDWQ_WQX-UTLK210614-4917433-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917433-0614-2-C/results/933804146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8150","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:35:00","MST","2021-06-14 18:35:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804151","UTAHDWQ_WQX-UTLK210614-4917433-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917433-0614-2-C/results/933804151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8151","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:40:00","MST","2021-06-14 18:40:00",NA,"0.9",900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.303",2.303,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804166","UTAHDWQ_WQX-UTLK210614-4917433-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917433-0614-29-C/results/933804166/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8152","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","11:40:00","MST","2021-06-14 18:40:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.303",2.303,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804171","UTAHDWQ_WQX-UTLK210614-4917433-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917433-0614-29-C/results/933804171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8153","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:40:00","MST","2021-07-13 17:40:00",NA,"0.718",718,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804205","UTAHDWQ_WQX-UTLK210712-4917433-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917433-0713-2-C/results/933804205/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8154","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","10:40:00","MST","2021-07-13 17:40:00",NA,"0.756",756,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804210","UTAHDWQ_WQX-UTLK210712-4917433-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917433-0713-2-C/results/933804210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8155","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","10:45:00","MST","2021-07-13 17:45:00",NA,"0.703",703,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.959",1.959,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804225","UTAHDWQ_WQX-UTLK210712-4917433-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917433-0713-29-C/results/933804225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8156","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","10:45:00","MST","2021-07-13 17:45:00",NA,"0.749",749,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.959",1.959,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804230","UTAHDWQ_WQX-UTLK210712-4917433-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917433-0713-29-C/results/933804230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8157","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","11:30:00","MST","2021-08-16 18:30:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804264","UTAHDWQ_WQX-UTLK210816-4917433-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917433-0816-2-C/results/933804264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8158","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","11:30:00","MST","2021-08-16 18:30:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804269","UTAHDWQ_WQX-UTLK210816-4917433-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917433-0816-2-C/results/933804269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8159","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","11:40:00","MST","2021-08-16 18:40:00",NA,"0.898",898,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.866",1.866,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804284","UTAHDWQ_WQX-UTLK210816-4917433-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917433-0816-29-C/results/933804284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8160","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","11:40:00","MST","2021-08-16 18:40:00",NA,"0.801",801,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.866",1.866,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804289","UTAHDWQ_WQX-UTLK210816-4917433-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917433-0816-29-C/results/933804289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8161","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:15:00","MST","2021-09-13 18:15:00",NA,"0.984",984,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804323","UTAHDWQ_WQX-UTLK210913-4917433-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917433-0913-2-C/results/933804323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8162","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","11:15:00","MST","2021-09-13 18:15:00",NA,"0.963",963,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804328","UTAHDWQ_WQX-UTLK210913-4917433-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917433-0913-2-C/results/933804328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8163","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:15:00","MST","2021-09-13 18:15:00",NA,"0.968",968,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.192",1.192,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804343","UTAHDWQ_WQX-UTLK210913-4917433-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917433-0913-29-C/results/933804343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8164","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","11:15:00","MST","2021-09-13 18:15:00",NA,"0.949",949,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.192",1.192,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804348","UTAHDWQ_WQX-UTLK210913-4917433-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917433-0913-29-C/results/933804348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8165","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","12:10:00","MST","2021-04-12 19:10:00",NA,"0.852",852,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804383","UTAHDWQ_WQX-UTLK210412-4917450-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917450-0412-2-C/results/933804383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8166","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","12:10:00","MST","2021-04-12 19:10:00",NA,"0.65",650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804388","UTAHDWQ_WQX-UTLK210412-4917450-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917450-0412-2-C/results/933804388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8167","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","12:10:00","MST","2021-04-12 19:10:00",NA,"0.786",786,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.009",1.009,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804403","UTAHDWQ_WQX-UTLK210412-4917450-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917450-0412-29-C/results/933804403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8168","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","12:10:00","MST","2021-04-12 19:10:00",NA,"0.637",637,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.009",1.009,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804408","UTAHDWQ_WQX-UTLK210412-4917450-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917450-0412-29-C/results/933804408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8169","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","12:20:00","MST","2021-05-12 19:20:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804442","UTAHDWQ_WQX-UTLK210510-4917450-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917450-0512-2-C/results/933804442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8170","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","12:20:00","MST","2021-05-12 19:20:00",NA,"0.831",831,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804447","UTAHDWQ_WQX-UTLK210510-4917450-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917450-0512-2-C/results/933804447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8171","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","12:00:00","MST","2021-06-14 19:00:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804461","UTAHDWQ_WQX-UTLK210614-4917450-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917450-0614-2-C/results/933804461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8172","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","12:00:00","MST","2021-06-14 19:00:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804466","UTAHDWQ_WQX-UTLK210614-4917450-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917450-0614-2-C/results/933804466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8173","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-12","13:10:00","MST","2021-07-12 20:10:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804480","UTAHDWQ_WQX-UTLK210712-4917450-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917450-0712-2-C/results/933804480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8174","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-12","13:10:00","MST","2021-07-12 20:10:00",NA,"1.99",1990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804485","UTAHDWQ_WQX-UTLK210712-4917450-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917450-0712-2-C/results/933804485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8175","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","11:35:00","MST","2021-08-17 18:35:00",NA,"4.7",4700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804499","UTAHDWQ_WQX-UTLK210816-4917450-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917450-0817-2-C/results/933804499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8176","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","11:35:00","MST","2021-08-17 18:35:00",NA,"2.17",2170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804504","UTAHDWQ_WQX-UTLK210816-4917450-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917450-0817-2-C/results/933804504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8177","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","11:15:00","MST","2021-09-15 18:15:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804518","UTAHDWQ_WQX-UTLK210913-4917450-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917450-0915-2-C/results/933804518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8178","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","11:15:00","MST","2021-09-15 18:15:00",NA,"2.1",2100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804523","UTAHDWQ_WQX-UTLK210913-4917450-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917450-0915-2-C/results/933804523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8179","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","14:20:00","MST","2021-04-12 21:20:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804537","UTAHDWQ_WQX-UTLK210412-4917500-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917500-0412-2-C/results/933804537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8180","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","14:20:00","MST","2021-04-12 21:20:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804542","UTAHDWQ_WQX-UTLK210412-4917500-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917500-0412-2-C/results/933804542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8181","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","14:20:00","MST","2021-04-12 21:20:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.938",2.938,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804557","UTAHDWQ_WQX-UTLK210412-4917500-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917500-0412-29-C/results/933804557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8182","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","14:20:00","MST","2021-04-12 21:20:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.938",2.938,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804562","UTAHDWQ_WQX-UTLK210412-4917500-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917500-0412-29-C/results/933804562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8183","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","14:10:00","MST","2021-05-12 21:10:00",NA,"0.648",648,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804596","UTAHDWQ_WQX-UTLK210510-4917500-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917500-0512-2-C/results/933804596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8184","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","14:10:00","MST","2021-05-12 21:10:00",NA,"0.76",760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804601","UTAHDWQ_WQX-UTLK210510-4917500-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917500-0512-2-C/results/933804601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8185","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","14:10:00","MST","2021-05-12 21:10:00",NA,"0.634",634,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.435",2.435,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804614","UTAHDWQ_WQX-UTLK210510-4917500-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917500-0512-29-C/results/933804614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8186","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","14:10:00","MST","2021-05-12 21:10:00",NA,"0.645",645,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.435",2.435,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804619","UTAHDWQ_WQX-UTLK210510-4917500-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917500-0512-29-C/results/933804619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8187","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","14:00:00","MST","2021-06-14 21:00:00",NA,"0.752",752,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804653","UTAHDWQ_WQX-UTLK210614-4917500-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917500-0614-2-C/results/933804653/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8188","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","14:00:00","MST","2021-06-14 21:00:00",NA,"0.867",867,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804658","UTAHDWQ_WQX-UTLK210614-4917500-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917500-0614-2-C/results/933804658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8189","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","14:10:00","MST","2021-06-14 21:10:00",NA,"0.825",825,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.895",2.895,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804671","UTAHDWQ_WQX-UTLK210614-4917500-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917500-0614-29-C/results/933804671/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8190","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","14:10:00","MST","2021-06-14 21:10:00",NA,"0.8",800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.895",2.895,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804676","UTAHDWQ_WQX-UTLK210614-4917500-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917500-0614-29-C/results/933804676/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8191","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","12:15:00","MST","2021-07-13 19:15:00",NA,"0.777",777,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804710","UTAHDWQ_WQX-UTLK210712-4917500-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917500-0713-2-C/results/933804710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8192","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","12:15:00","MST","2021-07-13 19:15:00",NA,"0.8",800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804715","UTAHDWQ_WQX-UTLK210712-4917500-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917500-0713-2-C/results/933804715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8193","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","12:20:00","MST","2021-07-13 19:20:00",NA,"0.722",722,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.086",2.086,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804728","UTAHDWQ_WQX-UTLK210712-4917500-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917500-0713-29-C/results/933804728/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8194","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","12:20:00","MST","2021-07-13 19:20:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.086",2.086,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804733","UTAHDWQ_WQX-UTLK210712-4917500-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917500-0713-29-C/results/933804733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8195","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","13:20:00","MST","2021-08-16 20:20:00",NA,"0.733",733,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804767","UTAHDWQ_WQX-UTLK210816-4917500-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917500-0816-2-C/results/933804767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8196","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","13:20:00","MST","2021-08-16 20:20:00",NA,"0.675",675,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804772","UTAHDWQ_WQX-UTLK210816-4917500-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917500-0816-2-C/results/933804772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8197","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","13:30:00","MST","2021-08-16 20:30:00",NA,"0.736",736,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.251",2.251,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804785","UTAHDWQ_WQX-UTLK210816-4917500-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917500-0816-29-C/results/933804785/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8198","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","13:30:00","MST","2021-08-16 20:30:00",NA,"0.704",704,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.251",2.251,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804790","UTAHDWQ_WQX-UTLK210816-4917500-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917500-0816-29-C/results/933804790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8199","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","13:10:00","MST","2021-09-13 20:10:00",NA,"0.762",762,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804824","UTAHDWQ_WQX-UTLK210913-4917500-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917500-0913-2-C/results/933804824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8200","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","13:10:00","MST","2021-09-13 20:10:00",NA,"0.886",886,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804829","UTAHDWQ_WQX-UTLK210913-4917500-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917500-0913-2-C/results/933804829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8201","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","13:10:00","MST","2021-09-13 20:10:00",NA,"0.796",796,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.118",2.118,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804842","UTAHDWQ_WQX-UTLK210913-4917500-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917500-0913-29-C/results/933804842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8202","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","13:10:00","MST","2021-09-13 20:10:00",NA,"0.885",885,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.118",2.118,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804847","UTAHDWQ_WQX-UTLK210913-4917500-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917500-0913-29-C/results/933804847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8203","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","15:30:00","MST","2021-04-12 22:30:00",NA,"0.479",479,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804882","UTAHDWQ_WQX-UTLK210412-4917520-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917520-0412-2-C/results/933804882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8204","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","15:30:00","MST","2021-04-12 22:30:00",NA,"0.518",518,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804887","UTAHDWQ_WQX-UTLK210412-4917520-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917520-0412-2-C/results/933804887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8205","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","15:30:00","MST","2021-04-12 22:30:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.999",1.999,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804902","UTAHDWQ_WQX-UTLK210412-4917520-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917520-0412-29-C/results/933804902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8206","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","15:30:00","MST","2021-04-12 22:30:00",NA,"0.509",509,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.999",1.999,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804907","UTAHDWQ_WQX-UTLK210412-4917520-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917520-0412-29-C/results/933804907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8207","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","15:10:00","MST","2021-05-12 22:10:00",NA,"0.653",653,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804941","UTAHDWQ_WQX-UTLK210510-4917520-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917520-0512-2-C/results/933804941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8208","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","15:10:00","MST","2021-05-12 22:10:00",NA,"0.707",707,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804946","UTAHDWQ_WQX-UTLK210510-4917520-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917520-0512-2-C/results/933804946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8209","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","15:10:00","MST","2021-05-12 22:10:00",NA,"0.655",655,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.949",1.949,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804959","UTAHDWQ_WQX-UTLK210510-4917520-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917520-0512-29-C/results/933804959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8210","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","15:10:00","MST","2021-05-12 22:10:00",NA,"0.679",679,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.949",1.949,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804964","UTAHDWQ_WQX-UTLK210510-4917520-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917520-0512-29-C/results/933804964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8211","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","15:00:00","MST","2021-06-14 22:00:00",NA,"0.73",730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933804998","UTAHDWQ_WQX-UTLK210614-4917520-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917520-0614-2-C/results/933804998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8212","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","15:00:00","MST","2021-06-14 22:00:00",NA,"0.937",937,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805003","UTAHDWQ_WQX-UTLK210614-4917520-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917520-0614-2-C/results/933805003/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8213","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","15:10:00","MST","2021-06-14 22:10:00",NA,"0.761",761,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.991",1.991,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805016","UTAHDWQ_WQX-UTLK210614-4917520-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917520-0614-29-C/results/933805016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8214","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","15:10:00","MST","2021-06-14 22:10:00",NA,"0.74",740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.991",1.991,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805021","UTAHDWQ_WQX-UTLK210614-4917520-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917520-0614-29-C/results/933805021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8215","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","13:25:00","MST","2021-07-13 20:25:00",NA,"0.67",670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805055","UTAHDWQ_WQX-UTLK210712-4917520-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917520-0713-2-C/results/933805055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8216","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","13:25:00","MST","2021-07-13 20:25:00",NA,"0.717",717,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805060","UTAHDWQ_WQX-UTLK210712-4917520-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917520-0713-2-C/results/933805060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8217","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","13:30:00","MST","2021-07-13 20:30:00",NA,"0.684",684,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.539",1.539,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805073","UTAHDWQ_WQX-UTLK210712-4917520-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917520-0713-29-C/results/933805073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8218","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","13:30:00","MST","2021-07-13 20:30:00",NA,"0.673",673,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.539",1.539,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805078","UTAHDWQ_WQX-UTLK210712-4917520-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917520-0713-29-C/results/933805078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8219","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","14:20:00","MST","2021-08-16 21:20:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805112","UTAHDWQ_WQX-UTLK210816-4917520-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917520-0816-2-C/results/933805112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8220","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","14:20:00","MST","2021-08-16 21:20:00",NA,"0.791",791,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805117","UTAHDWQ_WQX-UTLK210816-4917520-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917520-0816-2-C/results/933805117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8221","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","14:30:00","MST","2021-08-16 21:30:00",NA,"0.785",785,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.745",1.745,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805130","UTAHDWQ_WQX-UTLK210816-4917520-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917520-0816-29-C/results/933805130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8222","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","14:30:00","MST","2021-08-16 21:30:00",NA,"0.767",767,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.745",1.745,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805135","UTAHDWQ_WQX-UTLK210816-4917520-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917520-0816-29-C/results/933805135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8223","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","14:15:00","MST","2021-09-13 21:15:00",NA,"0.87",870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805169","UTAHDWQ_WQX-UTLK210913-4917520-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917520-0913-2-C/results/933805169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8224","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","14:15:00","MST","2021-09-13 21:15:00",NA,"0.825",825,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805174","UTAHDWQ_WQX-UTLK210913-4917520-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917520-0913-2-C/results/933805174/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8225","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","14:15:00","MST","2021-09-13 21:15:00",NA,"0.907",907,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.385",1.385,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805187","UTAHDWQ_WQX-UTLK210913-4917520-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917520-0913-29-C/results/933805187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8226","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","13:50:00","MST","2021-04-12 20:50:00",NA,"0.515",515,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805222","UTAHDWQ_WQX-UTLK210412-4917600-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917600-0412-2-C/results/933805222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8227","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","13:50:00","MST","2021-04-12 20:50:00",NA,"0.581",581,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805227","UTAHDWQ_WQX-UTLK210412-4917600-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917600-0412-2-C/results/933805227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8228","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","13:50:00","MST","2021-04-12 20:50:00",NA,"0.52",520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.929",0.929,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805242","UTAHDWQ_WQX-UTLK210412-4917600-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917600-0412-29-C/results/933805242/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8229","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","13:50:00","MST","2021-04-12 20:50:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","0.929",0.929,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805247","UTAHDWQ_WQX-UTLK210412-4917600-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917600-0412-29-C/results/933805247/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8230","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","13:30:00","MST","2021-06-14 20:30:00",NA,"0.764",764,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805281","UTAHDWQ_WQX-UTLK210614-4917600-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917600-0614-2-C/results/933805281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8231","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","13:30:00","MST","2021-06-14 20:30:00",NA,"0.865",865,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805286","UTAHDWQ_WQX-UTLK210614-4917600-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917600-0614-2-C/results/933805286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8232","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-12","11:40:00","MST","2021-07-12 18:40:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805300","UTAHDWQ_WQX-UTLK210712-4917600-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917600-0712-2-C/results/933805300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8233","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-12","11:40:00","MST","2021-07-12 18:40:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805305","UTAHDWQ_WQX-UTLK210712-4917600-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917600-0712-2-C/results/933805305/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8234","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","10:20:00","MST","2021-08-17 17:20:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805319","UTAHDWQ_WQX-UTLK210816-4917600-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917600-0817-2-C/results/933805319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8235","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","10:20:00","MST","2021-08-17 17:20:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805324","UTAHDWQ_WQX-UTLK210816-4917600-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917600-0817-2-C/results/933805324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8236","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","10:00:00","MST","2021-09-15 17:00:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805338","UTAHDWQ_WQX-UTLK210913-4917600-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917600-0915-2-C/results/933805338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8237","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","10:00:00","MST","2021-09-15 17:00:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805343","UTAHDWQ_WQX-UTLK210913-4917600-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917600-0915-2-C/results/933805343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8238","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","13:25:00","MST","2021-04-12 20:25:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805357","UTAHDWQ_WQX-UTLK210412-4917708-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917708-0412-2-C/results/933805357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8239","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","13:25:00","MST","2021-04-12 20:25:00",NA,"0.549",549,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805362","UTAHDWQ_WQX-UTLK210412-4917708-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917708-0412-2-C/results/933805362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8240","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","13:25:00","MST","2021-04-12 20:25:00",NA,"0.543",543,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.299",1.299,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805377","UTAHDWQ_WQX-UTLK210412-4917708-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917708-0412-29-C/results/933805377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8241","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","13:25:00","MST","2021-04-12 20:25:00",NA,"0.551",551,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.299",1.299,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805382","UTAHDWQ_WQX-UTLK210412-4917708-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917708-0412-29-C/results/933805382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8242","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","13:15:00","MST","2021-05-12 20:15:00",NA,"0.694",694,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805416","UTAHDWQ_WQX-UTLK210510-4917708-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917708-0512-2-C/results/933805416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8243","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","13:15:00","MST","2021-05-12 20:15:00",NA,"0.8",800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805421","UTAHDWQ_WQX-UTLK210510-4917708-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917708-0512-2-C/results/933805421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8244","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","13:15:00","MST","2021-05-12 20:15:00",NA,"0.59",590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.197",1.197,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805434","UTAHDWQ_WQX-UTLK210510-4917708-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917708-0512-29-C/results/933805434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8245","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","13:15:00","MST","2021-05-12 20:15:00",NA,"0.964",964,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.197",1.197,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805439","UTAHDWQ_WQX-UTLK210510-4917708-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917708-0512-29-C/results/933805439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8246","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","13:20:00","MST","2021-06-14 20:20:00",NA,"0.766",766,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805472","UTAHDWQ_WQX-UTLK210614-4917708-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917708-0614-2-C/results/933805472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8247","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","13:20:00","MST","2021-06-14 20:20:00",NA,"0.697",697,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805477","UTAHDWQ_WQX-UTLK210614-4917708-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917708-0614-2-C/results/933805477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8248","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","12:00:00","MST","2021-07-13 19:00:00",NA,"0.785",785,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805493","UTAHDWQ_WQX-UTLK210712-4917708-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917708-0713-2-C/results/933805493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8249","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","12:00:00","MST","2021-07-13 19:00:00",NA,"0.974",974,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805498","UTAHDWQ_WQX-UTLK210712-4917708-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917708-0713-2-C/results/933805498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8250","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","13:00:00","MST","2021-08-16 20:00:00",NA,"0.959",959,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805514","UTAHDWQ_WQX-UTLK210816-4917708-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917708-0816-2-C/results/933805514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8251","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","13:00:00","MST","2021-08-16 20:00:00",NA,"0.711",711,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805519","UTAHDWQ_WQX-UTLK210816-4917708-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917708-0816-2-C/results/933805519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8252","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","12:45:00","MST","2021-09-13 19:45:00",NA,"0.923",923,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805535","UTAHDWQ_WQX-UTLK210913-4917708-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917708-0913-2-C/results/933805535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8253","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","12:45:00","MST","2021-09-13 19:45:00",NA,"0.722",722,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805540","UTAHDWQ_WQX-UTLK210913-4917708-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917708-0913-2-C/results/933805540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8254","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","13:00:00","MST","2021-05-12 20:00:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805556","UTAHDWQ_WQX-UTLK210510-4917710-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917710-0512-2-C/results/933805556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8255","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","13:00:00","MST","2021-05-12 20:00:00",NA,"0.625",625,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805561","UTAHDWQ_WQX-UTLK210510-4917710-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917710-0512-2-C/results/933805561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8256","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","13:00:00","MST","2021-05-12 20:00:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.541",2.541,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805574","UTAHDWQ_WQX-UTLK210510-4917710-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917710-0512-29-C/results/933805574/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8257","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","13:00:00","MST","2021-05-12 20:00:00",NA,"0.66",660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.541",2.541,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805579","UTAHDWQ_WQX-UTLK210510-4917710-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917710-0512-29-C/results/933805579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8258","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","13:00:00","MST","2021-06-14 20:00:00",NA,"0.726",726,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805613","UTAHDWQ_WQX-UTLK210614-4917710-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917710-0614-2-C/results/933805613/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8259","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","13:00:00","MST","2021-06-14 20:00:00",NA,"0.938",938,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805618","UTAHDWQ_WQX-UTLK210614-4917710-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917710-0614-2-C/results/933805618/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8260","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","13:10:00","MST","2021-06-14 20:10:00",NA,"0.79",790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.551",2.551,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805631","UTAHDWQ_WQX-UTLK210614-4917710-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917710-0614-29-C/results/933805631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8261","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","13:10:00","MST","2021-06-14 20:10:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.551",2.551,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805636","UTAHDWQ_WQX-UTLK210614-4917710-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917710-0614-29-C/results/933805636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8262","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","11:40:00","MST","2021-07-13 18:40:00",NA,"0.667",667,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805670","UTAHDWQ_WQX-UTLK210712-4917710-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917710-0713-2-C/results/933805670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8263","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","11:40:00","MST","2021-07-13 18:40:00",NA,"0.653",653,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805675","UTAHDWQ_WQX-UTLK210712-4917710-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917710-0713-2-C/results/933805675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8264","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","11:45:00","MST","2021-07-13 18:45:00",NA,"0.673",673,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.379",2.379,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805688","UTAHDWQ_WQX-UTLK210712-4917710-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917710-0713-29-C/results/933805688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8265","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","11:45:00","MST","2021-07-13 18:45:00",NA,"0.691",691,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.379",2.379,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805693","UTAHDWQ_WQX-UTLK210712-4917710-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917710-0713-29-C/results/933805693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8266","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","12:45:00","MST","2021-08-16 19:45:00",NA,"0.798",798,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805727","UTAHDWQ_WQX-UTLK210816-4917710-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917710-0816-2-C/results/933805727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8267","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","12:45:00","MST","2021-08-16 19:45:00",NA,"0.979",979,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805732","UTAHDWQ_WQX-UTLK210816-4917710-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917710-0816-2-C/results/933805732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8268","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","12:55:00","MST","2021-08-16 19:55:00",NA,"0.795",795,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.261",2.261,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805745","UTAHDWQ_WQX-UTLK210816-4917710-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917710-0816-29-C/results/933805745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8269","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","12:55:00","MST","2021-08-16 19:55:00",NA,"0.765",765,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.261",2.261,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805750","UTAHDWQ_WQX-UTLK210816-4917710-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917710-0816-29-C/results/933805750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8270","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","12:30:00","MST","2021-09-13 19:30:00",NA,"0.824",824,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805784","UTAHDWQ_WQX-UTLK210913-4917710-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917710-0913-2-C/results/933805784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8271","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","12:30:00","MST","2021-09-13 19:30:00",NA,"0.87",870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805789","UTAHDWQ_WQX-UTLK210913-4917710-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917710-0913-2-C/results/933805789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8272","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","12:30:00","MST","2021-09-13 19:30:00",NA,"0.846",846,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.301",2.301,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805802","UTAHDWQ_WQX-UTLK210913-4917710-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917710-0913-29-C/results/933805802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8273","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","12:30:00","MST","2021-09-13 19:30:00",NA,"0.954",954,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.301",2.301,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805807","UTAHDWQ_WQX-UTLK210913-4917710-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917710-0913-29-C/results/933805807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8274","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","12:55:00","MST","2021-04-12 19:55:00",NA,"0.587",587,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805842","UTAHDWQ_WQX-UTLK210412-4917715-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917715-0412-2-C/results/933805842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8275","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","12:55:00","MST","2021-04-12 19:55:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805847","UTAHDWQ_WQX-UTLK210412-4917715-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917715-0412-2-C/results/933805847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8276","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","12:55:00","MST","2021-04-12 19:55:00",NA,"0.528",528,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.007",3.007,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805862","UTAHDWQ_WQX-UTLK210412-4917715-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917715-0412-29-C/results/933805862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8277","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","12:55:00","MST","2021-04-12 19:55:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.007",3.007,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805867","UTAHDWQ_WQX-UTLK210412-4917715-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917715-0412-29-C/results/933805867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8278","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","12:45:00","MST","2021-05-12 19:45:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805901","UTAHDWQ_WQX-UTLK210510-4917715-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917715-0512-2-C/results/933805901/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8279","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","12:45:00","MST","2021-05-12 19:45:00",NA,"0.866",866,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805906","UTAHDWQ_WQX-UTLK210510-4917715-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917715-0512-2-C/results/933805906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8280","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","12:45:00","MST","2021-05-12 19:45:00",NA,"0.682",682,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.634",2.634,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805919","UTAHDWQ_WQX-UTLK210510-4917715-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917715-0512-29-C/results/933805919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8281","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","12:45:00","MST","2021-05-12 19:45:00",NA,"0.695",695,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.634",2.634,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805924","UTAHDWQ_WQX-UTLK210510-4917715-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917715-0512-29-C/results/933805924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8282","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","12:45:00","MST","2021-06-14 19:45:00",NA,"0.728",728,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805958","UTAHDWQ_WQX-UTLK210614-4917715-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917715-0614-2-C/results/933805958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8283","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","12:45:00","MST","2021-06-14 19:45:00",NA,"0.954",954,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805963","UTAHDWQ_WQX-UTLK210614-4917715-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917715-0614-2-C/results/933805963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8284","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","12:50:00","MST","2021-06-14 19:50:00",NA,"0.776",776,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.751",2.751,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805976","UTAHDWQ_WQX-UTLK210614-4917715-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917715-0614-29-C/results/933805976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8285","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","12:50:00","MST","2021-06-14 19:50:00",NA,"0.749",749,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.751",2.751,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933805981","UTAHDWQ_WQX-UTLK210614-4917715-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917715-0614-29-C/results/933805981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8286","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","11:25:00","MST","2021-07-13 18:25:00",NA,"0.746",746,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806015","UTAHDWQ_WQX-UTLK210712-4917715-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917715-0713-2-C/results/933806015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8287","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","11:25:00","MST","2021-07-13 18:25:00",NA,"0.735",735,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806020","UTAHDWQ_WQX-UTLK210712-4917715-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917715-0713-2-C/results/933806020/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8288","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","11:30:00","MST","2021-07-13 18:30:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.475",2.475,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806033","UTAHDWQ_WQX-UTLK210712-4917715-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917715-0713-29-C/results/933806033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8289","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","11:30:00","MST","2021-07-13 18:30:00",NA,"0.708",708,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.475",2.475,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806038","UTAHDWQ_WQX-UTLK210712-4917715-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917715-0713-29-C/results/933806038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8290","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","12:20:00","MST","2021-08-16 19:20:00",NA,"0.894",894,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806072","UTAHDWQ_WQX-UTLK210816-4917715-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917715-0816-2-C/results/933806072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8291","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","12:20:00","MST","2021-08-16 19:20:00",NA,"0.88",880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806077","UTAHDWQ_WQX-UTLK210816-4917715-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917715-0816-2-C/results/933806077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8292","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","12:30:00","MST","2021-08-16 19:30:00",NA,"0.883",883,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.283",2.283,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806090","UTAHDWQ_WQX-UTLK210816-4917715-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917715-0816-29-C/results/933806090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8293","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","12:30:00","MST","2021-08-16 19:30:00",NA,"0.969",969,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.283",2.283,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806095","UTAHDWQ_WQX-UTLK210816-4917715-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917715-0816-29-C/results/933806095/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8294","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","12:15:00","MST","2021-09-13 19:15:00",NA,"0.856",856,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806129","UTAHDWQ_WQX-UTLK210913-4917715-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917715-0913-2-C/results/933806129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8295","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","12:15:00","MST","2021-09-13 19:15:00",NA,"0.735",735,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806134","UTAHDWQ_WQX-UTLK210913-4917715-0913-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917715-0913-2-C/results/933806134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8296","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","12:15:00","MST","2021-09-13 19:15:00",NA,"0.857",857,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.655",2.655,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806147","UTAHDWQ_WQX-UTLK210913-4917715-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917715-0913-29-C/results/933806147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8297","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","12:15:00","MST","2021-09-13 19:15:00",NA,"0.839",839,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.655",2.655,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806152","UTAHDWQ_WQX-UTLK210913-4917715-0913-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917715-0913-29-C/results/933806152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8298","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","12:25:00","MST","2021-04-12 19:25:00",NA,"0.781",781,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806187","UTAHDWQ_WQX-UTLK210412-4917770-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917770-0412-2-C/results/933806187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8299","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","12:25:00","MST","2021-04-12 19:25:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806192","UTAHDWQ_WQX-UTLK210412-4917770-0412-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917770-0412-2-C/results/933806192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8300","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","12:25:00","MST","2021-04-12 19:25:00",NA,"0.763",763,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.415",1.415,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806207","UTAHDWQ_WQX-UTLK210412-4917770-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917770-0412-29-C/results/933806207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8301","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","12:25:00","MST","2021-04-12 19:25:00",NA,"0.685",685,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.415",1.415,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806212","UTAHDWQ_WQX-UTLK210412-4917770-0412-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917770-0412-29-C/results/933806212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8302","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","12:15:00","MST","2021-05-12 19:15:00",NA,"0.65",650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806246","UTAHDWQ_WQX-UTLK210510-4917770-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917770-0512-2-C/results/933806246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8303","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","12:15:00","MST","2021-05-12 19:15:00",NA,"0.812",812,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806251","UTAHDWQ_WQX-UTLK210510-4917770-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917770-0512-2-C/results/933806251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8304","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-12","12:15:00","MST","2021-05-12 19:15:00",NA,"0.727",727,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.657",1.657,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806264","UTAHDWQ_WQX-UTLK210510-4917770-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917770-0512-29-C/results/933806264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8305","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-12","12:15:00","MST","2021-05-12 19:15:00",NA,"0.695",695,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.657",1.657,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806269","UTAHDWQ_WQX-UTLK210510-4917770-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917770-0512-29-C/results/933806269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8306","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","12:20:00","MST","2021-06-14 19:20:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806303","UTAHDWQ_WQX-UTLK210614-4917770-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917770-0614-2-C/results/933806303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8307","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","12:20:00","MST","2021-06-14 19:20:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806308","UTAHDWQ_WQX-UTLK210614-4917770-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917770-0614-2-C/results/933806308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8308","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","12:25:00","MST","2021-06-14 19:25:00",NA,"0.945",945,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.764",1.764,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806321","UTAHDWQ_WQX-UTLK210614-4917770-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917770-0614-29-C/results/933806321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8309","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-14","12:25:00","MST","2021-06-14 19:25:00",NA,"0.745",745,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.764",1.764,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806326","UTAHDWQ_WQX-UTLK210614-4917770-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917770-0614-29-C/results/933806326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8310","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","11:10:00","MST","2021-07-13 18:10:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806360","UTAHDWQ_WQX-UTLK210712-4917770-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917770-0713-2-C/results/933806360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8311","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","11:10:00","MST","2021-07-13 18:10:00",NA,"0.795",795,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806365","UTAHDWQ_WQX-UTLK210712-4917770-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917770-0713-2-C/results/933806365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8312","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","11:15:00","MST","2021-07-13 18:15:00",NA,"0.821",821,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.307",1.307,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806378","UTAHDWQ_WQX-UTLK210712-4917770-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917770-0713-29-C/results/933806378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8313","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","11:15:00","MST","2021-07-13 18:15:00",NA,"0.732",732,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.307",1.307,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806383","UTAHDWQ_WQX-UTLK210712-4917770-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917770-0713-29-C/results/933806383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8314","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","11:50:00","MST","2021-08-17 18:50:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806417","UTAHDWQ_WQX-UTLK210816-4917770-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917770-0817-2-C/results/933806417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8315","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","11:50:00","MST","2021-08-17 18:50:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806422","UTAHDWQ_WQX-UTLK210816-4917770-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917770-0817-2-C/results/933806422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8316","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","12:00:00","MST","2021-09-15 19:00:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806436","UTAHDWQ_WQX-UTLK210913-4917770-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917770-0915-2-C/results/933806436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8317","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","12:00:00","MST","2021-09-15 19:00:00",NA,"0.868",868,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806441","UTAHDWQ_WQX-UTLK210913-4917770-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917770-0915-2-C/results/933806441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8318","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","09:00:00","MST","2021-05-27 16:00:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806451","UTAHDWQ_WQX-LAKES210527-4920350-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"41.3505000000",41.3505,"-112.0680000000",-112.068,"OK","16020102","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3505000000","-112.0680000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920350-0527-4-C/results/933806451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8319","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","09:00:00","MST","2021-05-27 16:00:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806455","UTAHDWQ_WQX-LAKES210527-4920350-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"41.3505000000",41.3505,"-112.0680000000",-112.068,"OK","16020102","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3505000000","-112.0680000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920350-0527-4-C/results/933806455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8320","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","10:00:00","MST","2021-07-06 17:00:00",NA,"0.405",405,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806482","UTAHDWQ_WQX-LAKES210705-4920350-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"41.3505000000",41.3505,"-112.0680000000",-112.068,"OK","16020102","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3505000000","-112.0680000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920350-0706-4-C/results/933806482/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8321","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","10:00:00","MST","2021-07-06 17:00:00",NA,"0.539",539,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806486","UTAHDWQ_WQX-LAKES210705-4920350-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"41.3505000000",41.3505,"-112.0680000000",-112.068,"OK","16020102","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3505000000","-112.0680000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920350-0706-4-C/results/933806486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8322","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","09:25:00","MST","2021-08-24 16:25:00",NA,"0.555",555,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806513","UTAHDWQ_WQX-LAKES210824-4920350-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"41.3505000000",41.3505,"-112.0680000000",-112.068,"OK","16020102","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3505000000","-112.0680000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920350-0824-4-C/results/933806513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8323","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","09:25:00","MST","2021-08-24 16:25:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806517","UTAHDWQ_WQX-LAKES210824-4920350-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"41.3505000000",41.3505,"-112.0680000000",-112.068,"OK","16020102","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3505000000","-112.0680000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920350-0824-4-C/results/933806517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8324","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","09:55:00","MST","2021-05-27 16:55:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806544","UTAHDWQ_WQX-LAKES210527-4920440-0527-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920440-0527-2-C/results/933806544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8325","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","09:55:00","MST","2021-05-27 16:55:00",NA,"0.48",480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806548","UTAHDWQ_WQX-LAKES210527-4920440-0527-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920440-0527-2-C/results/933806548/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8326","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","10:15:00","MST","2021-05-27 17:15:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.56",3.56,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806553","UTAHDWQ_WQX-LAKES210527-4920440-0527-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920440-0527-29-C/results/933806553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8327","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","10:15:00","MST","2021-05-27 17:15:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.56",3.56,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806557","UTAHDWQ_WQX-LAKES210527-4920440-0527-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920440-0527-29-C/results/933806557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8328","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","10:30:00","MST","2021-07-06 17:30:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806579","UTAHDWQ_WQX-LAKES210705-4920440-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920440-0706-2-C/results/933806579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8329","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","10:30:00","MST","2021-07-06 17:30:00",NA,"0.363",363,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806583","UTAHDWQ_WQX-LAKES210705-4920440-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920440-0706-2-C/results/933806583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8330","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","10:15:00","MST","2021-08-24 17:15:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806593","UTAHDWQ_WQX-LAKES210824-4920440-0824-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920440-0824-2-C/results/933806593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8331","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","10:15:00","MST","2021-08-24 17:15:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806597","UTAHDWQ_WQX-LAKES210824-4920440-0824-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920440-0824-2-C/results/933806597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8332","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","10:45:00","MST","2021-05-27 17:45:00",NA,"0.41",410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806624","UTAHDWQ_WQX-LAKES210527-4920450-0527-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920450-0527-2-C/results/933806624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8333","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","10:45:00","MST","2021-05-27 17:45:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806628","UTAHDWQ_WQX-LAKES210527-4920450-0527-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920450-0527-2-C/results/933806628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8334","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","10:55:00","MST","2021-05-27 17:55:00",NA,"0.316",316,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.98",3.98,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806633","UTAHDWQ_WQX-LAKES210527-4920450-0527-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920450-0527-29-C/results/933806633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8335","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","10:55:00","MST","2021-05-27 17:55:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.98",3.98,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806637","UTAHDWQ_WQX-LAKES210527-4920450-0527-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920450-0527-29-C/results/933806637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8336","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","10:50:00","MST","2021-07-06 17:50:00",NA,"0.393",393,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806647","UTAHDWQ_WQX-LAKES210705-4920450-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920450-0706-2-C/results/933806647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8337","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","10:50:00","MST","2021-07-06 17:50:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806651","UTAHDWQ_WQX-LAKES210705-4920450-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920450-0706-2-C/results/933806651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8338","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","10:40:00","MST","2021-08-24 17:40:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806661","UTAHDWQ_WQX-LAKES210824-4920450-0824-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920450-0824-2-C/results/933806661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8339","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","10:40:00","MST","2021-08-24 17:40:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806665","UTAHDWQ_WQX-LAKES210824-4920450-0824-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920450-0824-2-C/results/933806665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8340","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","11:10:00","MST","2021-05-27 18:10:00",NA,"0.602",602,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806675","UTAHDWQ_WQX-LAKES210527-4920460-0527-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920460-0527-2-C/results/933806675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8341","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","11:10:00","MST","2021-05-27 18:10:00",NA,"0.797",797,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806679","UTAHDWQ_WQX-LAKES210527-4920460-0527-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920460-0527-2-C/results/933806679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8342","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","11:20:00","MST","2021-05-27 18:20:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.19",5.19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806684","UTAHDWQ_WQX-LAKES210527-4920460-0527-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920460-0527-29-C/results/933806684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8343","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","11:20:00","MST","2021-05-27 18:20:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.19",5.19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806688","UTAHDWQ_WQX-LAKES210527-4920460-0527-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920460-0527-29-C/results/933806688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8344","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","11:15:00","MST","2021-07-06 18:15:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806698","UTAHDWQ_WQX-LAKES210705-4920460-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920460-0706-2-C/results/933806698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8345","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","11:15:00","MST","2021-07-06 18:15:00",NA,"0.373",373,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806702","UTAHDWQ_WQX-LAKES210705-4920460-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920460-0706-2-C/results/933806702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8346","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","11:00:00","MST","2021-08-24 18:00:00",NA,"0.592",592,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806712","UTAHDWQ_WQX-LAKES210824-4920460-0824-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920460-0824-2-C/results/933806712/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8347","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","11:00:00","MST","2021-08-24 18:00:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806716","UTAHDWQ_WQX-LAKES210824-4920460-0824-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920460-0824-2-C/results/933806716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8348","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","11:05:00","MST","2021-08-24 18:05:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.95",2.95,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806721","UTAHDWQ_WQX-LAKES210824-4920460-0824-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920460-0824-29-C/results/933806721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8349","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","11:05:00","MST","2021-08-24 18:05:00",NA,"0.571",571,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.95",2.95,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806725","UTAHDWQ_WQX-LAKES210824-4920460-0824-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920460-0824-29-C/results/933806725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8350","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","11:50:00","MST","2021-05-27 18:50:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806735","UTAHDWQ_WQX-LAKES210527-4920470-0527-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920470-0527-2-C/results/933806735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8351","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","11:50:00","MST","2021-05-27 18:50:00",NA,"0.619",619,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806739","UTAHDWQ_WQX-LAKES210527-4920470-0527-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920470-0527-2-C/results/933806739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8352","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","11:55:00","MST","2021-05-27 18:55:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4.01",4.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806744","UTAHDWQ_WQX-LAKES210527-4920470-0527-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920470-0527-29-C/results/933806744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8353","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","11:55:00","MST","2021-05-27 18:55:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4.01",4.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806748","UTAHDWQ_WQX-LAKES210527-4920470-0527-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920470-0527-29-C/results/933806748/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8354","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","11:35:00","MST","2021-07-06 18:35:00",NA,"0.364",364,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806758","UTAHDWQ_WQX-LAKES210705-4920470-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920470-0706-2-C/results/933806758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8355","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","11:35:00","MST","2021-07-06 18:35:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806762","UTAHDWQ_WQX-LAKES210705-4920470-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920470-0706-2-C/results/933806762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8356","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-24","11:30:00","MST","2021-08-24 18:30:00",NA,"0.537",537,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806789","UTAHDWQ_WQX-LAKES210824-4920470-0824-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920470-0824-2-C/results/933806789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8357","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-24","11:30:00","MST","2021-08-24 18:30:00",NA,"0.569",569,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806793","UTAHDWQ_WQX-LAKES210824-4920470-0824-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920470-0824-2-C/results/933806793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8358","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","12:45:00","MST","2021-05-20 19:45:00",NA,"0.333",333,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806796","UTAHDWQ_WQX-CHALKCK210520-4926203-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Huff Ck at Flat Rock","River/Stream",NA,"40.9931000000",40.9931,"-111.2255000000",-111.2255,"OK","16020101","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9931000000","-111.2255000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926203-0520-4-C/results/933806796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8359","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","10:47:00","MST","2021-07-19 17:47:00",NA,"0.575",575,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806802","UTAHDWQ_WQX-CHALKCK210719-4926203-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Huff Ck at Flat Rock","River/Stream",NA,"40.9931000000",40.9931,"-111.2255000000",-111.2255,"OK","16020101","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9931000000","-111.2255000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926203-0719-4-C/results/933806802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8360","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","10:10:00","MST","2021-08-12 17:10:00",NA,"0.619",619,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806805","UTAHDWQ_WQX-CHALKCK210812-4926203-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Huff Ck at Flat Rock","River/Stream",NA,"40.9931000000",40.9931,"-111.2255000000",-111.2255,"OK","16020101","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9931000000","-111.2255000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926203-0812-4-C/results/933806805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8361","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","10:57:00","MST","2021-09-14 17:57:00",NA,"0.417",417,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806808","UTAHDWQ_WQX-CHALKCK210914-4926203-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Huff Ck at Flat Rock","River/Stream",NA,"40.9931000000",40.9931,"-111.2255000000",-111.2255,"OK","16020101","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9931000000","-111.2255000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926203-0914-4-C/results/933806808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8362","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","12:44:00","MST","2021-05-20 19:44:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806811","UTAHDWQ_WQX-CHALKCK210520-4926260-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"40.9630100000",40.96301,"-111.2349100000",-111.23491,"OK","16020101","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9630100000","-111.2349100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926260-0520-4-C/results/933806811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","11:10:00","MST","2021-07-19 18:10:00",NA,"0.505",505,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806817","UTAHDWQ_WQX-CHALKCK210719-4926260-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"40.9630100000",40.96301,"-111.2349100000",-111.23491,"OK","16020101","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9630100000","-111.2349100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926260-0719-4-C/results/933806817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8364","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","13:30:00","MST","2021-05-20 20:30:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806820","UTAHDWQ_WQX-CHALKCK210520-4926290-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926290-0520-4-C/results/933806820/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8365","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","11:32:00","MST","2021-07-19 18:32:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806826","UTAHDWQ_WQX-CHALKCK210719-4926290-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926290-0719-4-C/results/933806826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8366","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","10:50:00","MST","2021-08-12 17:50:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806829","UTAHDWQ_WQX-CHALKCK210812-4926290-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926290-0812-4-C/results/933806829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8367","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","11:28:00","MST","2021-09-14 18:28:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806832","UTAHDWQ_WQX-CHALKCK210914-4926290-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926290-0914-4-C/results/933806832/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8368","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","16:05:00","MST","2021-05-20 23:05:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806835","UTAHDWQ_WQX-CHALKCK210520-4926350-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926350-0520-4-C/results/933806835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8369","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","15:07:00","MST","2021-07-19 22:07:00",NA,"1.92",1920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806841","UTAHDWQ_WQX-CHALKCK210719-4926350-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926350-0719-4-C/results/933806841/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8370","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","14:17:00","MST","2021-08-12 21:17:00",NA,"1.59",1590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806844","UTAHDWQ_WQX-CHALKCK210812-4926350-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926350-0812-4-C/results/933806844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8371","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:57:00","MST","2021-09-14 20:57:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806847","UTAHDWQ_WQX-CHALKCK210914-4926350-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926350-0914-4-C/results/933806847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8372","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","16:10:00","MST","2021-05-20 23:10:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806850","UTAHDWQ_WQX-CHALKCK210520-4926352-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926352-0520-4-C/results/933806850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8373","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","15:07:00","MST","2021-07-19 22:07:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806856","UTAHDWQ_WQX-CHALKCK210719-4926352-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926352-0719-4-C/results/933806856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8374","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","14:17:00","MST","2021-08-12 21:17:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806859","UTAHDWQ_WQX-CHALKCK210812-4926352-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926352-0812-4-C/results/933806859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8375","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:59:00","MST","2021-09-14 20:59:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806862","UTAHDWQ_WQX-CHALKCK210914-4926352-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926352-0914-4-C/results/933806862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8376","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","14:55:00","MST","2021-05-20 21:55:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806865","UTAHDWQ_WQX-CHALKCK210520-4926355-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"40.9092700000",40.90927,"-111.2352500000",-111.23525,"OK","16020101","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9092700000","-111.2352500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926355-0520-4-C/results/933806865/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8377","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:30:00","MST","2021-07-19 21:30:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806871","UTAHDWQ_WQX-CHALKCK210719-4926355-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"40.9092700000",40.90927,"-111.2352500000",-111.23525,"OK","16020101","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9092700000","-111.2352500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926355-0719-4-C/results/933806871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8378","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","11:37:00","MST","2021-08-12 18:37:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806874","UTAHDWQ_WQX-CHALKCK210812-4926355-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"40.9092700000",40.90927,"-111.2352500000",-111.23525,"OK","16020101","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9092700000","-111.2352500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926355-0812-4-C/results/933806874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8379","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:28:00","MST","2021-09-14 20:28:00",NA,"0.31",310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806877","UTAHDWQ_WQX-CHALKCK210914-4926355-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"40.9092700000",40.90927,"-111.2352500000",-111.23525,"OK","16020101","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9092700000","-111.2352500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926355-0914-4-C/results/933806877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8380","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","13:55:00","MST","2021-05-20 20:55:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806880","UTAHDWQ_WQX-CHALKCK210520-4926360-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926360-0520-4-C/results/933806880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8381","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","12:07:00","MST","2021-07-19 19:07:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806886","UTAHDWQ_WQX-CHALKCK210719-4926360-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926360-0719-4-C/results/933806886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8382","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","11:05:00","MST","2021-08-12 18:05:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806889","UTAHDWQ_WQX-CHALKCK210812-4926360-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926360-0812-4-C/results/933806889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8383","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","11:52:00","MST","2021-09-14 18:52:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806892","UTAHDWQ_WQX-CHALKCK210914-4926360-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926360-0914-4-C/results/933806892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8384","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","14:28:00","MST","2021-05-20 21:28:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806895","UTAHDWQ_WQX-CHALKCK210520-4926361-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926361-0520-4-C/results/933806895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8385","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","12:58:00","MST","2021-08-12 19:58:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806901","UTAHDWQ_WQX-CHALKCK210812-4926361-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926361-0812-4-C/results/933806901/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8386","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:08:00","MST","2021-09-14 20:08:00",NA,"0.319",319,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806904","UTAHDWQ_WQX-CHALKCK210914-4926361-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926361-0914-4-C/results/933806904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8387","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:36:00","MST","2021-07-19 20:36:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806910","UTAHDWQ_WQX-CHALKCK210719-4926363-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926363-0719-4-C/results/933806910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8388","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","13:23:00","MST","2021-08-12 20:23:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806913","UTAHDWQ_WQX-CHALKCK210812-4926363-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926363-0812-4-C/results/933806913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8389","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","12:17:00","MST","2021-09-14 19:17:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806916","UTAHDWQ_WQX-CHALKCK210914-4926363-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926363-0914-4-C/results/933806916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8390","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","10:41:00","MST","2021-05-20 17:41:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806919","UTAHDWQ_WQX-CHALKCK210520-4926370-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926370-0520-4-C/results/933806919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8391","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","09:10:00","MST","2021-07-19 16:10:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806925","UTAHDWQ_WQX-CHALKCK210719-4926370-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926370-0719-4-C/results/933806925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8392","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","08:56:00","MST","2021-08-12 15:56:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806928","UTAHDWQ_WQX-CHALKCK210812-4926370-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926370-0812-4-C/results/933806928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8393","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","09:36:00","MST","2021-09-14 16:36:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806931","UTAHDWQ_WQX-CHALKCK210914-4926370-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926370-0914-4-C/results/933806931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8394","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","09:35:00","MST","2021-05-20 16:35:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806934","UTAHDWQ_WQX-CHALKCK210520-4926380-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926380-0520-4-C/results/933806934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8395","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","08:48:00","MST","2021-07-19 15:48:00",NA,"0.256",256,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806940","UTAHDWQ_WQX-CHALKCK210719-4926380-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926380-0719-4-C/results/933806940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8396","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","08:38:00","MST","2021-08-12 15:38:00",NA,"0.246",246,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806943","UTAHDWQ_WQX-CHALKCK210812-4926380-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926380-0812-4-C/results/933806943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8397","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","09:16:00","MST","2021-09-14 16:16:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806946","UTAHDWQ_WQX-CHALKCK210914-4926380-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926380-0914-4-C/results/933806946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8398","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-20","11:33:00","MST","2021-05-20 18:33:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806949","UTAHDWQ_WQX-CHALKCK210520-4926390-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926390-0520-4-C/results/933806949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8399","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","10:07:00","MST","2021-07-19 17:07:00",NA,"0.17",170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806955","UTAHDWQ_WQX-CHALKCK210719-4926390-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926390-0719-4-C/results/933806955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8400","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-12","09:33:00","MST","2021-08-12 16:33:00",NA,"0.167",167,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806958","UTAHDWQ_WQX-CHALKCK210812-4926390-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926390-0812-4-C/results/933806958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8401","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","10:16:00","MST","2021-09-14 17:16:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806961","UTAHDWQ_WQX-CHALKCK210914-4926390-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926390-0914-4-C/results/933806961/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8402","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","14:10:00","MST","2021-05-27 21:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806971","UTAHDWQ_WQX-LAKES210527-4930007-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4930007-0527-4-C/results/933806971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8403","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","14:10:00","MST","2021-05-27 21:10:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933806975","UTAHDWQ_WQX-LAKES210527-4930007-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4930007-0527-4-C/results/933806975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8404","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","15:00:00","MST","2021-06-03 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807002","UTAHDWQ_WQX-LAKES210531-4930007-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4930007-0603-4-C/results/933807002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8405","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","15:00:00","MST","2021-06-03 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807006","UTAHDWQ_WQX-LAKES210531-4930007-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4930007-0603-4-C/results/933807006/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8406","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","16:40:00","MST","2021-06-15 23:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807033","UTAHDWQ_WQX-LAKES210614-4930007-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4930007-0615-4-C/results/933807033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8407","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","16:40:00","MST","2021-06-15 23:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807037","UTAHDWQ_WQX-LAKES210614-4930007-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4930007-0615-4-C/results/933807037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8408","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-24","08:00:00","MST","2021-06-24 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807064","UTAHDWQ_WQX-LAKES210621-4930007-0624-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4930007-0624-4-C/results/933807064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8409","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-24","08:00:00","MST","2021-06-24 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807068","UTAHDWQ_WQX-LAKES210621-4930007-0624-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4930007-0624-4-C/results/933807068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8410","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-30","08:00:00","MST","2021-06-30 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807095","UTAHDWQ_WQX-LAKES210628-4930007-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4930007-0630-4-C/results/933807095/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8411","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-30","08:00:00","MST","2021-06-30 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807116","UTAHDWQ_WQX-LAKES210628-4930007-0630-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4930007-0630-2-C/results/933807116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8412","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-08","08:00:00","MST","2021-07-08 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807126","UTAHDWQ_WQX-LAKES210705-4930007-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4930007-0708-4-C/results/933807126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8413","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-08","08:00:00","MST","2021-07-08 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807130","UTAHDWQ_WQX-LAKES210705-4930007-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4930007-0708-4-C/results/933807130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8414","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-15","08:00:00","MST","2021-07-15 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807157","UTAHDWQ_WQX-LAKES210712-4930007-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-4930007-0715-4-C/results/933807157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8415","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-15","08:00:00","MST","2021-07-15 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807161","UTAHDWQ_WQX-LAKES210712-4930007-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-4930007-0715-4-C/results/933807161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8416","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-06","08:00:00","MST","2021-08-06 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807188","UTAHDWQ_WQX-LAKES210802-4930007-0806-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-4930007-0806-4-C/results/933807188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8417","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-06","08:00:00","MST","2021-08-06 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807192","UTAHDWQ_WQX-LAKES210802-4930007-0806-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-4930007-0806-4-C/results/933807192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8418","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","13:40:00","MST","2021-08-18 20:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807219","UTAHDWQ_WQX-LAKES210817-4930007-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4930007-0818-4-C/results/933807219/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8419","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","13:40:00","MST","2021-08-18 20:40:00",NA,"0.101",101,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807223","UTAHDWQ_WQX-LAKES210817-4930007-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4930007-0818-4-C/results/933807223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8420","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","08:30:00","MST","2021-09-09 15:30:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807252","UTAHDWQ_WQX-LAKES210906-4930007-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-4930007-0909-4-C/results/933807252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8421","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","08:30:00","MST","2021-09-09 15:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807256","UTAHDWQ_WQX-LAKES210906-4930007-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-4930007-0909-4-C/results/933807256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8422","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","12:45:00","MST","2021-09-15 19:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807283","UTAHDWQ_WQX-LAKES210913-4930007-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4930007-0915-4-C/results/933807283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8423","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","12:45:00","MST","2021-09-15 19:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807287","UTAHDWQ_WQX-LAKES210913-4930007-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4930007-0915-4-C/results/933807287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8424","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","17:30:00","MST","2021-09-30 00:30:00",NA,"0.115",115,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807314","UTAHDWQ_WQX-LAKES210927-4930007-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-4930007-0929-4-C/results/933807314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8425","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","17:30:00","MST","2021-09-30 00:30:00",NA,"0.097",97,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807318","UTAHDWQ_WQX-LAKES210927-4930007-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-4930007-0929-4-C/results/933807318/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8426","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","14:00:00","MST","2021-05-27 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807345","UTAHDWQ_WQX-LAKES210527-4930009-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4930009-0527-4-C/results/933807345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8427","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","14:00:00","MST","2021-05-27 21:00:00",NA,"0.325",325,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807349","UTAHDWQ_WQX-LAKES210527-4930009-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4930009-0527-4-C/results/933807349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8428","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","15:05:00","MST","2021-06-03 22:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807359","UTAHDWQ_WQX-LAKES210531-4930009-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4930009-0603-4-C/results/933807359/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8429","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","15:05:00","MST","2021-06-03 22:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807363","UTAHDWQ_WQX-LAKES210531-4930009-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4930009-0603-4-C/results/933807363/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8430","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","16:50:00","MST","2021-06-15 23:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807373","UTAHDWQ_WQX-LAKES210614-4930009-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4930009-0615-4-C/results/933807373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8431","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","16:50:00","MST","2021-06-15 23:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807377","UTAHDWQ_WQX-LAKES210614-4930009-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4930009-0615-4-C/results/933807377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8432","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-24","08:05:00","MST","2021-06-24 15:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807387","UTAHDWQ_WQX-LAKES210621-4930009-0624-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4930009-0624-4-C/results/933807387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8433","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-24","08:05:00","MST","2021-06-24 15:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807391","UTAHDWQ_WQX-LAKES210621-4930009-0624-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4930009-0624-4-C/results/933807391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8434","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-30","08:05:00","MST","2021-06-30 15:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807401","UTAHDWQ_WQX-LAKES210628-4930009-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4930009-0630-4-C/results/933807401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8435","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-30","08:05:00","MST","2021-06-30 15:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807405","UTAHDWQ_WQX-LAKES210628-4930009-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4930009-0630-4-C/results/933807405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8436","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-08","08:05:00","MST","2021-07-08 15:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807415","UTAHDWQ_WQX-LAKES210705-4930009-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4930009-0708-4-C/results/933807415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8437","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-08","08:05:00","MST","2021-07-08 15:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807419","UTAHDWQ_WQX-LAKES210705-4930009-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4930009-0708-4-C/results/933807419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8438","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-15","08:15:00","MST","2021-07-15 15:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807429","UTAHDWQ_WQX-LAKES210712-4930009-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-4930009-0715-4-C/results/933807429/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8439","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-15","08:15:00","MST","2021-07-15 15:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807433","UTAHDWQ_WQX-LAKES210712-4930009-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-4930009-0715-4-C/results/933807433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8440","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-06","08:05:00","MST","2021-08-06 15:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807443","UTAHDWQ_WQX-LAKES210802-4930009-0806-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-4930009-0806-4-C/results/933807443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8441","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-06","08:05:00","MST","2021-08-06 15:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807447","UTAHDWQ_WQX-LAKES210802-4930009-0806-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-4930009-0806-4-C/results/933807447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8442","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","13:50:00","MST","2021-08-18 20:50:00",NA,"0.111",111,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807457","UTAHDWQ_WQX-LAKES210817-4930009-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4930009-0818-4-C/results/933807457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8443","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","13:50:00","MST","2021-08-18 20:50:00",NA,"0.149",149,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807461","UTAHDWQ_WQX-LAKES210817-4930009-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4930009-0818-4-C/results/933807461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8444","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","08:45:00","MST","2021-09-09 15:45:00",NA,"0.117",117,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807471","UTAHDWQ_WQX-LAKES210906-4930009-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-4930009-0909-4-C/results/933807471/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8445","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","08:45:00","MST","2021-09-09 15:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807475","UTAHDWQ_WQX-LAKES210906-4930009-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-4930009-0909-4-C/results/933807475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8446","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","12:55:00","MST","2021-09-15 19:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807485","UTAHDWQ_WQX-LAKES210913-4930009-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4930009-0915-4-C/results/933807485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8447","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","12:55:00","MST","2021-09-15 19:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807489","UTAHDWQ_WQX-LAKES210913-4930009-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4930009-0915-4-C/results/933807489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8448","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","17:35:00","MST","2021-09-30 00:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807499","UTAHDWQ_WQX-LAKES210927-4930009-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-4930009-0929-4-C/results/933807499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8449","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","17:35:00","MST","2021-09-30 00:35:00",NA,"0.101",101,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807503","UTAHDWQ_WQX-LAKES210927-4930009-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-4930009-0929-4-C/results/933807503/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8450","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-23","09:54:00","MST","2021-04-23 16:54:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807513","UTAHDWQ_WQX-NPSCANR210423-4930010-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4930010-0423-4-C/results/933807513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8451","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-23","09:54:00","MST","2021-04-23 16:54:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807516","UTAHDWQ_WQX-NPSCANR210423-4930010-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4930010-0423-4-C/results/933807516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8452","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","14:31:00","MST","2021-05-19 21:31:00",NA,"0.193",193,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807546","UTAHDWQ_WQX-NPSCANR210519-4930010-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4930010-0519-4-C/results/933807546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8453","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","14:31:00","MST","2021-05-19 21:31:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807549","UTAHDWQ_WQX-NPSCANR210519-4930010-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4930010-0519-4-C/results/933807549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8454","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","12:25:00","MST","2021-06-21 19:25:00",NA,"0.3",300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807579","UTAHDWQ_WQX-NPSCANR210619-4930010-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4930010-0621-4-C/results/933807579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8455","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","12:25:00","MST","2021-06-21 19:25:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807582","UTAHDWQ_WQX-NPSCANR210619-4930010-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4930010-0621-4-C/results/933807582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8456","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-15","08:02:00","MST","2021-07-15 15:02:00",NA,"0.179",179,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807612","UTAHDWQ_WQX-NPSCANR210715-4930010-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4930010-0715-4-C/results/933807612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8457","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-15","08:02:00","MST","2021-07-15 15:02:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807615","UTAHDWQ_WQX-NPSCANR210715-4930010-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4930010-0715-4-C/results/933807615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8458","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-26","11:50:00","MST","2021-08-26 18:50:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807645","UTAHDWQ_WQX-NPSCANR210826-4930010-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4930010-0826-4-C/results/933807645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8459","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","11:50:00","MST","2021-08-26 18:50:00",NA,"0.5",500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807648","UTAHDWQ_WQX-NPSCANR210826-4930010-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4930010-0826-4-C/results/933807648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8460","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-25","14:00:00","MST","2021-04-25 21:00:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807711","UTAHDWQ_WQX-NPSCANR210423-4930150-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4930150-0425-4-C/results/933807711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8461","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-25","14:00:00","MST","2021-04-25 21:00:00",NA,"0.209",209,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807714","UTAHDWQ_WQX-NPSCANR210423-4930150-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4930150-0425-4-C/results/933807714/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8462","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-21","09:50:00","MST","2021-05-21 16:50:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807744","UTAHDWQ_WQX-NPSCANR210519-4930150-0521-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4930150-0521-4-C/results/933807744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8463","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-21","09:50:00","MST","2021-05-21 16:50:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807747","UTAHDWQ_WQX-NPSCANR210519-4930150-0521-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4930150-0521-4-C/results/933807747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8464","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-19","10:15:00","MST","2021-06-19 17:15:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807777","UTAHDWQ_WQX-NPSCANR210619-4930150-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4930150-0619-4-C/results/933807777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8465","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-19","10:15:00","MST","2021-06-19 17:15:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807780","UTAHDWQ_WQX-NPSCANR210619-4930150-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4930150-0619-4-C/results/933807780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8466","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-16","10:56:00","MST","2021-07-16 17:56:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807810","UTAHDWQ_WQX-NPSCANR210715-4930150-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4930150-0716-4-C/results/933807810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8467","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-16","10:56:00","MST","2021-07-16 17:56:00",NA,"0.491",491,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807813","UTAHDWQ_WQX-NPSCANR210715-4930150-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4930150-0716-4-C/results/933807813/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8468","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-30","09:10:00","MST","2021-08-30 16:10:00",NA,"0.479",479,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807843","UTAHDWQ_WQX-NPSCANR210826-4930150-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4930150-0830-4-C/results/933807843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8469","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-30","09:10:00","MST","2021-08-30 16:10:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807846","UTAHDWQ_WQX-NPSCANR210826-4930150-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4930150-0830-4-C/results/933807846/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8470","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","16:00:00","MST","2021-05-17 23:00:00",NA,"0.665",665,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807925","UTAHDWQ_WQX-BLMVERNAL210517-4930290-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","015","SAN RAFAEL R AT U24 XING","River/Stream",NA,"38.8597500000",38.85975,"-110.3718700000",-110.37187,"OK","14060009","UTAHDWQ_WQX-4930290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.8597500000","-110.3718700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4930290-0517-4-C/results/933807925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8471","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","16:00:00","MST","2021-05-17 23:00:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807928","UTAHDWQ_WQX-BLMVERNAL210517-4930290-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","015","SAN RAFAEL R AT U24 XING","River/Stream",NA,"38.8597500000",38.85975,"-110.3718700000",-110.37187,"OK","14060009","UTAHDWQ_WQX-4930290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.8597500000","-110.3718700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4930290-0517-4-C/results/933807928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8472","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","07:00:00","MST","2021-06-29 14:00:00",NA,"0.94",940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807972","UTAHDWQ_WQX-BLMVERNAL210628-4931650-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","015","PRICE R NEAR WOODSIDE AT US 50&6 XING","River/Stream",NA,"39.2645000000",39.2645,"-110.3429900000",-110.34299,"OK","14060007","UTAHDWQ_WQX-4931650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.2645000000","-110.3429900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4931650-0629-4-C/results/933807972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8473","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","07:00:00","MST","2021-06-29 14:00:00",NA,"0.752",752,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807975","UTAHDWQ_WQX-BLMVERNAL210628-4931650-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","015","PRICE R NEAR WOODSIDE AT US 50&6 XING","River/Stream",NA,"39.2645000000",39.2645,"-110.3429900000",-110.34299,"OK","14060007","UTAHDWQ_WQX-4931650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.2645000000","-110.3429900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4931650-0629-4-C/results/933807975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8474","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","16:00:00","MST","2021-05-19 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933807998","UTAHDWQ_WQX-BLMVERNAL210517-4932402-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Price Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4932402",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4932402-0519-4-C/results/933807998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8475","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","16:00:00","MST","2021-06-29 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808019","UTAHDWQ_WQX-BLMVERNAL210628-4932402-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Price Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4932402",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4932402-0629-4-C/results/933808019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8476","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","11:30:00","MST","2021-05-17 18:30:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808025","UTAHDWQ_WQX-BLMVERNAL210517-4932810-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","007","PRICE R AB WILLOW CK (PRICE R COAL)","River/Stream",NA,"39.7347800000",39.73478,"-110.8725300000",-110.87253,"OK","14060007","UTAHDWQ_WQX-4932810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.7347800000","-110.8725300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4932810-0517-4-C/results/933808025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8477","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","11:30:00","MST","2021-05-17 18:30:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808028","UTAHDWQ_WQX-BLMVERNAL210517-4932810-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","007","PRICE R AB WILLOW CK (PRICE R COAL)","River/Stream",NA,"39.7347800000",39.73478,"-110.8725300000",-110.87253,"OK","14060007","UTAHDWQ_WQX-4932810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.7347800000","-110.8725300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4932810-0517-4-C/results/933808028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8478","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","12:00:00","MST","2021-06-28 19:00:00",NA,"0.395",395,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808052","UTAHDWQ_WQX-BLMVERNAL210628-4932810-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","007","PRICE R AB WILLOW CK (PRICE R COAL)","River/Stream",NA,"39.7347800000",39.73478,"-110.8725300000",-110.87253,"OK","14060007","UTAHDWQ_WQX-4932810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.7347800000","-110.8725300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4932810-0628-4-C/results/933808052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8479","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","12:00:00","MST","2021-06-28 19:00:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808055","UTAHDWQ_WQX-BLMVERNAL210628-4932810-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","007","PRICE R AB WILLOW CK (PRICE R COAL)","River/Stream",NA,"39.7347800000",39.73478,"-110.8725300000",-110.87253,"OK","14060007","UTAHDWQ_WQX-4932810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.7347800000","-110.8725300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4932810-0628-4-C/results/933808055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8480","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","11:05:00","MST","2021-06-22 18:05:00",NA,"0.589",589,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808065","UTAHDWQ_WQX-LAKES210621-4932910-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","MUD CREEK AB SCOFIELD RES","River/Stream",NA,"39.7271800000",39.72718,"-111.1610100000",-111.16101,"OK","14060007","UTAHDWQ_WQX-4932910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7271800000","-111.1610100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4932910-0622-4-C/results/933808065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8481","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","11:05:00","MST","2021-06-22 18:05:00",NA,"0.748",748,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808069","UTAHDWQ_WQX-LAKES210621-4932910-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","MUD CREEK AB SCOFIELD RES","River/Stream",NA,"39.7271800000",39.72718,"-111.1610100000",-111.16101,"OK","14060007","UTAHDWQ_WQX-4932910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7271800000","-111.1610100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4932910-0622-4-C/results/933808069/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8482","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-31","11:55:00","MST","2021-08-31 18:55:00",NA,"0.492",492,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808096","UTAHDWQ_WQX-LAKES210830-4932910-0831-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","MUD CREEK AB SCOFIELD RES","River/Stream",NA,"39.7271800000",39.72718,"-111.1610100000",-111.16101,"OK","14060007","UTAHDWQ_WQX-4932910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7271800000","-111.1610100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4932910-0831-4-C/results/933808096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8483","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-31","11:55:00","MST","2021-08-31 18:55:00",NA,"0.393",393,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808100","UTAHDWQ_WQX-LAKES210830-4932910-0831-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","MUD CREEK AB SCOFIELD RES","River/Stream",NA,"39.7271800000",39.72718,"-111.1610100000",-111.16101,"OK","14060007","UTAHDWQ_WQX-4932910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7271800000","-111.1610100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4932910-0831-4-C/results/933808100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8484","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","13:30:00","MST","2021-05-19 20:30:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808151","UTAHDWQ_WQX-BLMVERNAL210517-4933770-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","BITTER CREEK AT MOUTH","River/Stream",NA,"39.9702400000",39.97024,"-109.4123500000",-109.41235,"OK","14050007","UTAHDWQ_WQX-4933770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9702400000","-109.4123500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933770-0519-4-C/results/933808151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8485","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","13:30:00","MST","2021-05-19 20:30:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808154","UTAHDWQ_WQX-BLMVERNAL210517-4933770-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","BITTER CREEK AT MOUTH","River/Stream",NA,"39.9702400000",39.97024,"-109.4123500000",-109.41235,"OK","14050007","UTAHDWQ_WQX-4933770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9702400000","-109.4123500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933770-0519-4-C/results/933808154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8486","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","14:00:00","MST","2021-05-19 21:00:00",NA,"0.317",317,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808178","UTAHDWQ_WQX-BLMVERNAL210517-4933780-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R AB CNFL AB BITTER CK","River/Stream",NA,"39.9699700000",39.96997,"-109.4109500000",-109.41095,"OK","14050007","UTAHDWQ_WQX-4933780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9699700000","-109.4109500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933780-0519-4-C/results/933808178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8487","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","14:00:00","MST","2021-05-19 21:00:00",NA,"0.34",340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808181","UTAHDWQ_WQX-BLMVERNAL210517-4933780-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R AB CNFL AB BITTER CK","River/Stream",NA,"39.9699700000",39.96997,"-109.4109500000",-109.41095,"OK","14050007","UTAHDWQ_WQX-4933780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9699700000","-109.4109500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933780-0519-4-C/results/933808181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8488","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-30","12:00:00","MST","2021-06-30 19:00:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808205","UTAHDWQ_WQX-BLMVERNAL210628-4933780-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R AB CNFL AB BITTER CK","River/Stream",NA,"39.9699700000",39.96997,"-109.4109500000",-109.41095,"OK","14050007","UTAHDWQ_WQX-4933780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9699700000","-109.4109500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933780-0630-4-C/results/933808205/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8489","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-30","12:00:00","MST","2021-06-30 19:00:00",NA,"0.326",326,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808208","UTAHDWQ_WQX-BLMVERNAL210628-4933780-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R AB CNFL AB BITTER CK","River/Stream",NA,"39.9699700000",39.96997,"-109.4109500000",-109.41095,"OK","14050007","UTAHDWQ_WQX-4933780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9699700000","-109.4109500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933780-0630-4-C/results/933808208/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8490","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","11:00:00","MST","2021-05-19 18:00:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808214","UTAHDWQ_WQX-BLMVERNAL210517-4933970-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R NEAR BONANZA AT U45 XING","River/Stream",NA,"39.9791400000",39.97914,"-109.1781700000",-109.17817,"OK","14050007","UTAHDWQ_WQX-4933970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9791400000","-109.1781700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933970-0519-4-C/results/933808214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8491","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","11:00:00","MST","2021-05-19 18:00:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808217","UTAHDWQ_WQX-BLMVERNAL210517-4933970-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R NEAR BONANZA AT U45 XING","River/Stream",NA,"39.9791400000",39.97914,"-109.1781700000",-109.17817,"OK","14050007","UTAHDWQ_WQX-4933970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9791400000","-109.1781700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933970-0519-4-C/results/933808217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8492","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-30","09:30:00","MST","2021-06-30 16:30:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808241","UTAHDWQ_WQX-BLMVERNAL210628-4933970-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R NEAR BONANZA AT U45 XING","River/Stream",NA,"39.9791400000",39.97914,"-109.1781700000",-109.17817,"OK","14050007","UTAHDWQ_WQX-4933970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9791400000","-109.1781700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933970-0630-4-C/results/933808241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8493","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-30","09:30:00","MST","2021-06-30 16:30:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808244","UTAHDWQ_WQX-BLMVERNAL210628-4933970-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R NEAR BONANZA AT U45 XING","River/Stream",NA,"39.9791400000",39.97914,"-109.1781700000",-109.17817,"OK","14050007","UTAHDWQ_WQX-4933970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9791400000","-109.1781700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933970-0630-4-C/results/933808244/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8494","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","11:00:00","MST","2021-05-19 18:00:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808250","UTAHDWQ_WQX-BLMVERNAL210517-4933972-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970","River/Stream","Replicate of 4933970","39.9791400000",39.97914,"-109.1781700000",-109.17817,"OK","14050007","UTAHDWQ_WQX-4933972",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9791400000","-109.1781700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933972-0519-4-C/results/933808250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8495","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","11:00:00","MST","2021-05-19 18:00:00",NA,"0.34",340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808253","UTAHDWQ_WQX-BLMVERNAL210517-4933972-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970","River/Stream","Replicate of 4933970","39.9791400000",39.97914,"-109.1781700000",-109.17817,"OK","14050007","UTAHDWQ_WQX-4933972",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9791400000","-109.1781700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933972-0519-4-C/results/933808253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8496","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-30","09:30:00","MST","2021-06-30 16:30:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808277","UTAHDWQ_WQX-BLMVERNAL210628-4933972-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970","River/Stream","Replicate of 4933970","39.9791400000",39.97914,"-109.1781700000",-109.17817,"OK","14050007","UTAHDWQ_WQX-4933972",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9791400000","-109.1781700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933972-0630-4-C/results/933808277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8497","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-30","09:30:00","MST","2021-06-30 16:30:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808280","UTAHDWQ_WQX-BLMVERNAL210628-4933972-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970","River/Stream","Replicate of 4933970","39.9791400000",39.97914,"-109.1781700000",-109.17817,"OK","14050007","UTAHDWQ_WQX-4933972",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"39.9791400000","-109.1781700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933972-0630-4-C/results/933808280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8498","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","07:55:00","MST","2021-08-18 14:55:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808290","UTAHDWQ_WQX-LAKES210817-4937125-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal at Mouth ab Pelican Lake","Canal Irrigation",NA,"40.1958800000",40.19588,"-109.6969900000",-109.69699,"OK","14060001","UTAHDWQ_WQX-4937125",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1958800000","-109.6969900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937125-0818-4-C/results/933808290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8499","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","07:55:00","MST","2021-08-18 14:55:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808294","UTAHDWQ_WQX-LAKES210817-4937125-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal at Mouth ab Pelican Lake","Canal Irrigation",NA,"40.1958800000",40.19588,"-109.6969900000",-109.69699,"OK","14060001","UTAHDWQ_WQX-4937125",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1958800000","-109.6969900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937125-0818-4-C/results/933808294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8500","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","10:05:00","MST","2021-06-29 17:05:00",NA,"0.355",355,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808321","UTAHDWQ_WQX-LAKES210628-4937130-0629-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937130-0629-2-C/results/933808321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8501","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","10:05:00","MST","2021-06-29 17:05:00",NA,"0.395",395,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808325","UTAHDWQ_WQX-LAKES210628-4937130-0629-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937130-0629-2-C/results/933808325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8502","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","08:50:00","MST","2021-08-18 15:50:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808352","UTAHDWQ_WQX-LAKES210817-4937130-0818-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937130-0818-2-C/results/933808352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8503","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","08:50:00","MST","2021-08-18 15:50:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808356","UTAHDWQ_WQX-LAKES210817-4937130-0818-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937130-0818-2-C/results/933808356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8504","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","10:40:00","MST","2021-06-29 17:40:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808383","UTAHDWQ_WQX-LAKES210628-4937140-0629-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937140-0629-2-C/results/933808383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8505","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","10:40:00","MST","2021-06-29 17:40:00",NA,"0.506",506,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808387","UTAHDWQ_WQX-LAKES210628-4937140-0629-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937140-0629-2-C/results/933808387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8506","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","09:10:00","MST","2021-08-18 16:10:00",NA,"0.763",763,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808397","UTAHDWQ_WQX-LAKES210817-4937140-0818-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937140-0818-2-C/results/933808397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8507","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","09:10:00","MST","2021-08-18 16:10:00",NA,"0.816",816,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808401","UTAHDWQ_WQX-LAKES210817-4937140-0818-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937140-0818-2-C/results/933808401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8508","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","10:20:00","MST","2021-06-29 17:20:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808411","UTAHDWQ_WQX-LAKES210628-4937180-0629-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937180-0629-2-C/results/933808411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8509","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","10:20:00","MST","2021-06-29 17:20:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808415","UTAHDWQ_WQX-LAKES210628-4937180-0629-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937180-0629-2-C/results/933808415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8510","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","09:00:00","MST","2021-08-18 16:00:00",NA,"0.617",617,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808425","UTAHDWQ_WQX-LAKES210817-4937180-0818-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937180-0818-2-C/results/933808425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8511","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","09:00:00","MST","2021-08-18 16:00:00",NA,"0.731",731,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808429","UTAHDWQ_WQX-LAKES210817-4937180-0818-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937180-0818-2-C/results/933808429/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8512","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","08:00:00","MST","2021-05-19 15:00:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808437","UTAHDWQ_WQX-BORFG210518-4938550-0519-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"40.9171800000",40.91718,"-109.4470900000",-109.44709,"OK","14040106","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9171800000","-109.4470900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-2-C/results/933808437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8513","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","08:00:00","MST","2021-05-19 15:00:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808441","UTAHDWQ_WQX-BORFG210518-4938550-0519-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"40.9171800000",40.91718,"-109.4470900000",-109.44709,"OK","14040106","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9171800000","-109.4470900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-2-C/results/933808441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8514","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","08:30:00","MST","2021-05-19 15:30:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","6.101",6.101,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808446","UTAHDWQ_WQX-BORFG210518-4938550-0519-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"40.9171800000",40.91718,"-109.4470900000",-109.44709,"OK","14040106","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9171800000","-109.4470900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-23-C/results/933808446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8515","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","08:30:00","MST","2021-05-19 15:30:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","6.101",6.101,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808450","UTAHDWQ_WQX-BORFG210518-4938550-0519-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"40.9171800000",40.91718,"-109.4470900000",-109.44709,"OK","14040106","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9171800000","-109.4470900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-23-C/results/933808450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8516","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","08:15:00","MST","2021-05-19 15:15:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","104.41",104.41,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808455","UTAHDWQ_WQX-BORFG210518-4938550-0519-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"40.9171800000",40.91718,"-109.4470900000",-109.44709,"OK","14040106","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9171800000","-109.4470900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-29-C/results/933808455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8517","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","08:15:00","MST","2021-05-19 15:15:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","104.41",104.41,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808459","UTAHDWQ_WQX-BORFG210518-4938550-0519-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"40.9171800000",40.91718,"-109.4470900000",-109.44709,"OK","14040106","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9171800000","-109.4470900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-29-C/results/933808459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8518","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-23","13:10:00","MST","2021-06-23 20:10:00",NA,"0.682",682,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808630","UTAHDWQ_WQX-LAKES210621-4940720-0623-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","UPPER ENTERPRISE RES AB DAM 01","Lake",NA,"37.5188700000",37.51887,"-113.8627500000",-113.86275,"OK","16030006","UTAHDWQ_WQX-4940720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5188700000","-113.8627500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940720-0623-2-C/results/933808630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8519","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","13:10:00","MST","2021-06-23 20:10:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808634","UTAHDWQ_WQX-LAKES210621-4940720-0623-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","UPPER ENTERPRISE RES AB DAM 01","Lake",NA,"37.5188700000",37.51887,"-113.8627500000",-113.86275,"OK","16030006","UTAHDWQ_WQX-4940720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5188700000","-113.8627500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940720-0623-2-C/results/933808634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8520","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-23","13:25:00","MST","2021-06-23 20:25:00",NA,"0.611",611,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","7.04",7.04,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808639","UTAHDWQ_WQX-LAKES210621-4940720-0623-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","UPPER ENTERPRISE RES AB DAM 01","Lake",NA,"37.5188700000",37.51887,"-113.8627500000",-113.86275,"OK","16030006","UTAHDWQ_WQX-4940720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5188700000","-113.8627500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940720-0623-29-C/results/933808639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8521","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","13:25:00","MST","2021-06-23 20:25:00",NA,"0.66",660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","7.04",7.04,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808643","UTAHDWQ_WQX-LAKES210621-4940720-0623-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","UPPER ENTERPRISE RES AB DAM 01","Lake",NA,"37.5188700000",37.51887,"-113.8627500000",-113.86275,"OK","16030006","UTAHDWQ_WQX-4940720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5188700000","-113.8627500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940720-0623-29-C/results/933808643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8522","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-23","12:55:00","MST","2021-06-23 19:55:00",NA,"0.645",645,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808670","UTAHDWQ_WQX-LAKES210621-4940730-0623-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"37.5166400000",37.51664,"-113.8716400000",-113.87164,"OK","16030006","UTAHDWQ_WQX-4940730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5166400000","-113.8716400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940730-0623-2-C/results/933808670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8523","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","12:55:00","MST","2021-06-23 19:55:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808674","UTAHDWQ_WQX-LAKES210621-4940730-0623-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"37.5166400000",37.51664,"-113.8716400000",-113.87164,"OK","16030006","UTAHDWQ_WQX-4940730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5166400000","-113.8716400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940730-0623-2-C/results/933808674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8524","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-23","13:00:00","MST","2021-06-23 20:00:00",NA,"0.625",625,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.98",5.98,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808679","UTAHDWQ_WQX-LAKES210621-4940730-0623-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"37.5166400000",37.51664,"-113.8716400000",-113.87164,"OK","16030006","UTAHDWQ_WQX-4940730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5166400000","-113.8716400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940730-0623-29-C/results/933808679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8525","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","13:00:00","MST","2021-06-23 20:00:00",NA,"0.616",616,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.98",5.98,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808683","UTAHDWQ_WQX-LAKES210621-4940730-0623-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"37.5166400000",37.51664,"-113.8716400000",-113.87164,"OK","16030006","UTAHDWQ_WQX-4940730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5166400000","-113.8716400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940730-0623-29-C/results/933808683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8526","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","13:10:00","MST","2021-04-06 20:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808778","UTAHDWQ_WQX-SANPITCHNPS210406-4946000-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","San Pitch River NPS QAQC Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946000-0406-4-C/results/933808778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8527","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","09:10:00","MST","2021-06-02 16:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808784","UTAHDWQ_WQX-SANPITCHNPS210602-4946000-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","San Pitch River NPS QAQC Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946000-0602-4-C/results/933808784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8528","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","09:15:00","MST","2021-09-14 16:15:00",NA,"0.108",108,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808790","UTAHDWQ_WQX-SANPITCHNPS210914-4946000-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","San Pitch River NPS QAQC Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946000-0914-4-C/results/933808790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8529","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","13:10:00","MST","2021-04-06 20:10:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808798","UTAHDWQ_WQX-SANPITCHNPS210406-4946450-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"39.2787100000",39.27871,"-111.6782500000",-111.67825,"OK","16030004","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.2787100000","-111.6782500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946450-0406-4-C/results/933808798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8530","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","11:17:00","MST","2021-06-02 18:17:00",NA,"3.79",3790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808804","UTAHDWQ_WQX-SANPITCHNPS210602-4946450-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"39.2787100000",39.27871,"-111.6782500000",-111.67825,"OK","16030004","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.2787100000","-111.6782500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946450-0602-4-C/results/933808804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8531","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","14:46:00","MST","2021-07-20 21:46:00",NA,"3.66",3660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808810","UTAHDWQ_WQX-SANPITCHNPS210720-4946450-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"39.2787100000",39.27871,"-111.6782500000",-111.67825,"OK","16030004","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.2787100000","-111.6782500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946450-0720-4-C/results/933808810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8532","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:40:00","MST","2021-04-06 19:40:00",NA,"0.676",676,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808818","UTAHDWQ_WQX-SANPITCHNPS210406-4946650-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"39.4756600000",39.47566,"-111.5991100000",-111.59911,"OK","16030004","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4756600000","-111.5991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946650-0406-4-C/results/933808818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8533","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","10:20:00","MST","2021-06-02 17:20:00",NA,"0.801",801,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808824","UTAHDWQ_WQX-SANPITCHNPS210602-4946650-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"39.4756600000",39.47566,"-111.5991100000",-111.59911,"OK","16030004","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4756600000","-111.5991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946650-0602-4-C/results/933808824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8534","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","14:18:00","MST","2021-07-20 21:18:00",NA,"0.65",650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808830","UTAHDWQ_WQX-SANPITCHNPS210720-4946650-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"39.4756600000",39.47566,"-111.5991100000",-111.59911,"OK","16030004","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4756600000","-111.5991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946650-0720-4-C/results/933808830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8535","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","11:20:00","MST","2021-09-14 18:20:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808836","UTAHDWQ_WQX-SANPITCHNPS210914-4946650-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"39.4756600000",39.47566,"-111.5991100000",-111.59911,"OK","16030004","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4756600000","-111.5991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946650-0914-4-C/results/933808836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8536","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","11:15:00","MST","2021-04-06 18:15:00",NA,"0.819",819,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808844","UTAHDWQ_WQX-SANPITCHNPS210406-4946750-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946750-0406-4-C/results/933808844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8537","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","09:40:00","MST","2021-06-02 16:40:00",NA,"0.676",676,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808850","UTAHDWQ_WQX-SANPITCHNPS210602-4946750-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946750-0602-4-C/results/933808850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8538","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:35:00","MST","2021-07-20 20:35:00",NA,"0.439",439,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808856","UTAHDWQ_WQX-SANPITCHNPS210720-4946750-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946750-0720-4-C/results/933808856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8539","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","10:50:00","MST","2021-09-14 17:50:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808862","UTAHDWQ_WQX-SANPITCHNPS210914-4946750-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946750-0914-4-C/results/933808862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8540","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","11:50:00","MST","2021-04-06 18:50:00",NA,"0.572",572,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808870","UTAHDWQ_WQX-SANPITCHNPS210406-4946751-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946751-0406-4-C/results/933808870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8541","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","09:40:00","MST","2021-06-02 16:40:00",NA,"0.681",681,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808876","UTAHDWQ_WQX-SANPITCHNPS210602-4946751-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946751-0602-4-C/results/933808876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8542","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:36:00","MST","2021-07-20 20:36:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808882","UTAHDWQ_WQX-SANPITCHNPS210720-4946751-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946751-0720-4-C/results/933808882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8543","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","10:50:00","MST","2021-09-14 17:50:00",NA,"0.518",518,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808888","UTAHDWQ_WQX-SANPITCHNPS210914-4946751-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946751-0914-4-C/results/933808888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8544","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","10:30:00","MST","2021-04-06 17:30:00",NA,"0.801",801,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808896","UTAHDWQ_WQX-SANPITCHNPS210406-4946756-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R Bl Fairview WWTP","River/Stream",NA,"39.5747900000",39.57479,"-111.4703900000",-111.47039,"OK","16030004","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5747900000","-111.4703900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946756-0406-4-C/results/933808896/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8545","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:21:00","MST","2021-07-20 20:21:00",NA,"0.717",717,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808902","UTAHDWQ_WQX-SANPITCHNPS210720-4946756-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R Bl Fairview WWTP","River/Stream",NA,"39.5747900000",39.57479,"-111.4703900000",-111.47039,"OK","16030004","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5747900000","-111.4703900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946756-0720-4-C/results/933808902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8546","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","10:25:00","MST","2021-09-14 17:25:00",NA,"0.921",921,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808908","UTAHDWQ_WQX-SANPITCHNPS210914-4946756-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R Bl Fairview WWTP","River/Stream",NA,"39.5747900000",39.57479,"-111.4703900000",-111.47039,"OK","16030004","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5747900000","-111.4703900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946756-0914-4-C/results/933808908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8547","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","10:05:00","MST","2021-04-06 17:05:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808916","UTAHDWQ_WQX-SANPITCHNPS210406-4946790-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R @ US 89 XING N OF FAIRVIEW","River/Stream",NA,"39.6382900000",39.63829,"-111.4465800000",-111.44658,"OK","16030004","UTAHDWQ_WQX-4946790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6382900000","-111.4465800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946790-0406-4-C/results/933808916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8548","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","10:17:00","MST","2021-04-06 17:17:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808924","UTAHDWQ_WQX-SANPITCHNPS210406-4946840-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"39.6086000000",39.6086,"-111.4483200000",-111.44832,"OK","16030004","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6086000000","-111.4483200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946840-0406-4-C/results/933808924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8549","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","09:15:00","MST","2021-06-02 16:15:00",NA,"0.348",348,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808930","UTAHDWQ_WQX-SANPITCHNPS210602-4946840-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"39.6086000000",39.6086,"-111.4483200000",-111.44832,"OK","16030004","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6086000000","-111.4483200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946840-0602-4-C/results/933808930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8550","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:05:00","MST","2021-07-20 20:05:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808936","UTAHDWQ_WQX-SANPITCHNPS210720-4946840-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"39.6086000000",39.6086,"-111.4483200000",-111.44832,"OK","16030004","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6086000000","-111.4483200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946840-0720-4-C/results/933808936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8551","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","09:20:00","MST","2021-09-14 16:20:00",NA,"1.5",1500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808942","UTAHDWQ_WQX-SANPITCHNPS210914-4946840-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"39.6086000000",39.6086,"-111.4483200000",-111.44832,"OK","16030004","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6086000000","-111.4483200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946840-0914-4-C/results/933808942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8552","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:00:00","MST","2021-04-06 19:00:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808950","UTAHDWQ_WQX-SANPITCHNPS210406-4946960-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AB MORONI WWTP","River/Stream",NA,"39.5147000000",39.5147,"-111.5862800000",-111.58628,"OK","16030004","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5147000000","-111.5862800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946960-0406-4-C/results/933808950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8553","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","09:55:00","MST","2021-06-02 16:55:00",NA,"0.701",701,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808956","UTAHDWQ_WQX-SANPITCHNPS210602-4946960-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AB MORONI WWTP","River/Stream",NA,"39.5147000000",39.5147,"-111.5862800000",-111.58628,"OK","16030004","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5147000000","-111.5862800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946960-0602-4-C/results/933808956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8554","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","13:48:00","MST","2021-07-20 20:48:00",NA,"0.912",912,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808962","UTAHDWQ_WQX-SANPITCHNPS210720-4946960-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AB MORONI WWTP","River/Stream",NA,"39.5147000000",39.5147,"-111.5862800000",-111.58628,"OK","16030004","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5147000000","-111.5862800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946960-0720-4-C/results/933808962/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8555","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","11:05:00","MST","2021-09-14 18:05:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808968","UTAHDWQ_WQX-SANPITCHNPS210914-4946960-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AB MORONI WWTP","River/Stream",NA,"39.5147000000",39.5147,"-111.5862800000",-111.58628,"OK","16030004","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5147000000","-111.5862800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946960-0914-4-C/results/933808968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8556","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","12:26:00","MST","2021-04-06 19:26:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808976","UTAHDWQ_WQX-SANPITCHNPS210406-4946980-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"39.5010700000",39.50107,"-111.5854800000",-111.58548,"OK","16030004","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5010700000","-111.5854800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946980-0406-4-C/results/933808976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8557","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","10:10:00","MST","2021-06-02 17:10:00",NA,"7.5",7500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808982","UTAHDWQ_WQX-SANPITCHNPS210602-4946980-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"39.5010700000",39.50107,"-111.5854800000",-111.58548,"OK","16030004","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5010700000","-111.5854800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946980-0602-4-C/results/933808982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8558","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","14:06:00","MST","2021-07-20 21:06:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808988","UTAHDWQ_WQX-SANPITCHNPS210720-4946980-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"39.5010700000",39.50107,"-111.5854800000",-111.58548,"OK","16030004","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5010700000","-111.5854800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946980-0720-4-C/results/933808988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8559","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-21","14:20:00","MST","2021-04-21 21:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933808991","UTAHDWQ_WQX-BLMRF210421-4948002-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Richfield QA/QC Equipment Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4948002",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4948002-0421-4-C/results/933808991/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8560","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","13:03:00","MST","2021-06-02 20:03:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809017","UTAHDWQ_WQX-OTTERCKNPS210602-4948868-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4948868",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4948868-0602-4-C/results/933809017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8561","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","09:55:00","MST","2021-07-20 16:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809024","UTAHDWQ_WQX-OTTERCKNPS210720-4948868-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4948868",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4948868-0720-4-C/results/933809024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8562","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:50:00","MST","2021-09-14 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809031","UTAHDWQ_WQX-OTTERCKNPS210914-4948868-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4948868",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4948868-0914-4-C/results/933809031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8563","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","14:40:00","MST","2021-06-02 21:40:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809038","UTAHDWQ_WQX-OTTERCKNPS210602-4948870-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4948870-0602-4-C/results/933809038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8564","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","09:58:00","MST","2021-07-20 16:58:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809045","UTAHDWQ_WQX-OTTERCKNPS210720-4948870-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4948870-0720-4-C/results/933809045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8565","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:50:00","MST","2021-09-14 20:50:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809052","UTAHDWQ_WQX-OTTERCKNPS210914-4948870-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4948870-0914-4-C/results/933809052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8566","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","13:40:00","MST","2021-06-02 20:40:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809059","UTAHDWQ_WQX-OTTERCKNPS210602-4948930-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AT CR XING 2MI S E OF GREENWICH","River/Stream",NA,"38.4160900000",38.41609,"-111.9029700000",-111.90297,"OK","16030002","UTAHDWQ_WQX-4948930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.4160900000","-111.9029700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4948930-0602-4-C/results/933809059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8567","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","10:40:00","MST","2021-07-20 17:40:00",NA,"0.799",799,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809066","UTAHDWQ_WQX-OTTERCKNPS210720-4948930-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AT CR XING 2MI S E OF GREENWICH","River/Stream",NA,"38.4160900000",38.41609,"-111.9029700000",-111.90297,"OK","16030002","UTAHDWQ_WQX-4948930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.4160900000","-111.9029700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4948930-0720-4-C/results/933809066/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8568","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","14:25:00","MST","2021-09-14 21:25:00",NA,"0.803",803,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809073","UTAHDWQ_WQX-OTTERCKNPS210914-4948930-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AT CR XING 2MI S E OF GREENWICH","River/Stream",NA,"38.4160900000",38.41609,"-111.9029700000",-111.90297,"OK","16030002","UTAHDWQ_WQX-4948930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.4160900000","-111.9029700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4948930-0914-4-C/results/933809073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8569","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","14:05:00","MST","2021-06-02 21:05:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809080","UTAHDWQ_WQX-OTTERCKNPS210602-4948940-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CREEK AT THE NARROWS","River/Stream",NA,"38.3520900000",38.35209,"-111.9464200000",-111.94642,"OK","16030002","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3520900000","-111.9464200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4948940-0602-4-C/results/933809080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8570","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","10:21:00","MST","2021-07-20 17:21:00",NA,"0.177",177,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809087","UTAHDWQ_WQX-OTTERCKNPS210720-4948940-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CREEK AT THE NARROWS","River/Stream",NA,"38.3520900000",38.35209,"-111.9464200000",-111.94642,"OK","16030002","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3520900000","-111.9464200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4948940-0720-4-C/results/933809087/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8571","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","14:10:00","MST","2021-09-14 21:10:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809094","UTAHDWQ_WQX-OTTERCKNPS210914-4948940-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CREEK AT THE NARROWS","River/Stream",NA,"38.3520900000",38.35209,"-111.9464200000",-111.94642,"OK","16030002","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3520900000","-111.9464200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4948940-0914-4-C/results/933809094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8572","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","13:20:00","MST","2021-06-02 20:20:00",NA,"0.593",593,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809101","UTAHDWQ_WQX-OTTERCKNPS210602-4949040-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","041","OTTER CK AT CR XING NE OF KOOSHAREM","River/Stream",NA,"38.5202600000",38.52026,"-111.8638000000",-111.8638,"OK","16030002","UTAHDWQ_WQX-4949040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5202600000","-111.8638000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4949040-0602-4-C/results/933809101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8573","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","10:55:00","MST","2021-07-20 17:55:00",NA,"0.634",634,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809108","UTAHDWQ_WQX-OTTERCKNPS210720-4949040-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","041","OTTER CK AT CR XING NE OF KOOSHAREM","River/Stream",NA,"38.5202600000",38.52026,"-111.8638000000",-111.8638,"OK","16030002","UTAHDWQ_WQX-4949040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5202600000","-111.8638000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4949040-0720-4-C/results/933809108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8574","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","14:40:00","MST","2021-09-14 21:40:00",NA,"0.48",480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809115","UTAHDWQ_WQX-OTTERCKNPS210914-4949040-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","041","OTTER CK AT CR XING NE OF KOOSHAREM","River/Stream",NA,"38.5202600000",38.52026,"-111.8638000000",-111.8638,"OK","16030002","UTAHDWQ_WQX-4949040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5202600000","-111.8638000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4949040-0914-4-C/results/933809115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8575","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","13:05:00","MST","2021-06-02 20:05:00",NA,"0.534",534,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809122","UTAHDWQ_WQX-OTTERCKNPS210602-4949070-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","041","OTTER CK AT U62 XING N OF KOOSHAREM","River/Stream",NA,"38.5641400000",38.56414,"-111.8493600000",-111.84936,"OK","16030002","UTAHDWQ_WQX-4949070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5641400000","-111.8493600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4949070-0602-4-C/results/933809122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8576","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","11:08:00","MST","2021-07-20 18:08:00",NA,"0.181",181,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809129","UTAHDWQ_WQX-OTTERCKNPS210720-4949070-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","041","OTTER CK AT U62 XING N OF KOOSHAREM","River/Stream",NA,"38.5641400000",38.56414,"-111.8493600000",-111.84936,"OK","16030002","UTAHDWQ_WQX-4949070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5641400000","-111.8493600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4949070-0720-4-C/results/933809129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8577","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","14:50:00","MST","2021-09-14 21:50:00",NA,"0.407",407,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809136","UTAHDWQ_WQX-OTTERCKNPS210914-4949070-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","041","OTTER CK AT U62 XING N OF KOOSHAREM","River/Stream",NA,"38.5641400000",38.56414,"-111.8493600000",-111.84936,"OK","16030002","UTAHDWQ_WQX-4949070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5641400000","-111.8493600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4949070-0914-4-C/results/933809136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8578","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-21","17:00:00","MST","2021-04-22 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809142","UTAHDWQ_WQX-BLMRF210421-4949263-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah","River/Stream",NA,"38.1018500000",38.10185,"-112.0214700000",-112.02147,"OK","16030002","UTAHDWQ_WQX-4949263",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.1018500000","-112.0214700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949263-0421-4-C/results/933809142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8579","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-21","17:00:00","MST","2021-04-22 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809145","UTAHDWQ_WQX-BLMRF210421-4949263-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah","River/Stream",NA,"38.1018500000",38.10185,"-112.0214700000",-112.02147,"OK","16030002","UTAHDWQ_WQX-4949263",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.1018500000","-112.0214700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949263-0421-4-C/results/933809145/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8580","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-21","15:30:00","MST","2021-04-21 22:30:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809170","UTAHDWQ_WQX-BLMRF210421-4949533-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Deep Creek at Road Crossing 1.3 miles above confluence w/Pine Creek","River/Stream",NA,"38.0472700000",38.04727,"-112.0197700000",-112.01977,"OK","16030002","UTAHDWQ_WQX-4949533",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0472700000","-112.0197700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949533-0421-4-C/results/933809170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8581","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-21","15:30:00","MST","2021-04-21 22:30:00",NA,"0.095",95,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809173","UTAHDWQ_WQX-BLMRF210421-4949533-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Deep Creek at Road Crossing 1.3 miles above confluence w/Pine Creek","River/Stream",NA,"38.0472700000",38.04727,"-112.0197700000",-112.01977,"OK","16030002","UTAHDWQ_WQX-4949533",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0472700000","-112.0197700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949533-0421-4-C/results/933809173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8582","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-21","14:15:00","MST","2021-04-21 21:15:00",NA,"0.111",111,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809198","UTAHDWQ_WQX-BLMRF210421-4949583-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Deer Creek above Mountain Spring Fork and below BLM/USFS boundary","River/Stream",NA,"38.0005700000",38.00057,"-112.0554900000",-112.05549,"OK","16030002","UTAHDWQ_WQX-4949583",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0005700000","-112.0554900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949583-0421-4-C/results/933809198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8583","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-21","14:15:00","MST","2021-04-21 21:15:00",NA,"0.104",104,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809201","UTAHDWQ_WQX-BLMRF210421-4949583-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Deer Creek above Mountain Spring Fork and below BLM/USFS boundary","River/Stream",NA,"38.0005700000",38.00057,"-112.0554900000",-112.05549,"OK","16030002","UTAHDWQ_WQX-4949583",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0005700000","-112.0554900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949583-0421-4-C/results/933809201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8584","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:40:00","MST","2021-04-07 17:40:00",NA,"0.085",85,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809226","UTAHDWQ_WQX-UPRSVRNPS210407-4949630-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R AT U12 XING","River/Stream",NA,"37.7494200000",37.74942,"-112.3749200000",-112.37492,"OK","16030001","UTAHDWQ_WQX-4949630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7494200000","-112.3749200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949630-0407-4-C/results/933809226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8585","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:40:00","MST","2021-06-01 17:40:00",NA,"0.122",122,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809232","UTAHDWQ_WQX-UPRSVRNPS210601-4949630-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R AT U12 XING","River/Stream",NA,"37.7494200000",37.74942,"-112.3749200000",-112.37492,"OK","16030001","UTAHDWQ_WQX-4949630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7494200000","-112.3749200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949630-0601-4-C/results/933809232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8586","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","10:25:00","MST","2021-09-13 17:25:00",NA,"0.177",177,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809238","UTAHDWQ_WQX-UPRSVRNPS210913-4949630-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R AT U12 XING","River/Stream",NA,"37.7494200000",37.74942,"-112.3749200000",-112.37492,"OK","16030001","UTAHDWQ_WQX-4949630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7494200000","-112.3749200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949630-0913-4-C/results/933809238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8587","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","11:21:00","MST","2021-04-07 18:21:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809244","UTAHDWQ_WQX-UPRSVRNPS210407-4949635-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","Sevier River at bridge at US89 MP126 and 0.6 Mile ab Casto Wash","River/Stream",NA,"37.7717900000",37.77179,"-112.3910200000",-112.39102,"OK","16030001","UTAHDWQ_WQX-4949635",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7717900000","-112.3910200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949635-0407-4-C/results/933809244/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8588","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:55:00","MST","2021-06-01 17:55:00",NA,"0.115",115,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809250","UTAHDWQ_WQX-UPRSVRNPS210601-4949635-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","Sevier River at bridge at US89 MP126 and 0.6 Mile ab Casto Wash","River/Stream",NA,"37.7717900000",37.77179,"-112.3910200000",-112.39102,"OK","16030001","UTAHDWQ_WQX-4949635",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7717900000","-112.3910200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949635-0601-4-C/results/933809250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8589","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","11:55:00","MST","2021-04-07 18:55:00",NA,"0.497",497,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809256","UTAHDWQ_WQX-UPRSVRNPS210407-4949640-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R @ SANFORD ROAD XING","River/Stream",NA,"37.9419200000",37.94192,"-112.4166000000",-112.4166,"OK","16030001","UTAHDWQ_WQX-4949640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.9419200000","-112.4166000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949640-0407-4-C/results/933809256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8590","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","11:30:00","MST","2021-06-01 18:30:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809262","UTAHDWQ_WQX-UPRSVRNPS210601-4949640-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R @ SANFORD ROAD XING","River/Stream",NA,"37.9419200000",37.94192,"-112.4166000000",-112.4166,"OK","16030001","UTAHDWQ_WQX-4949640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.9419200000","-112.4166000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949640-0601-4-C/results/933809262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8591","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:20:00","MST","2021-09-13 18:20:00",NA,"0.42",420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809268","UTAHDWQ_WQX-UPRSVRNPS210913-4949640-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R @ SANFORD ROAD XING","River/Stream",NA,"37.9419200000",37.94192,"-112.4166000000",-112.4166,"OK","16030001","UTAHDWQ_WQX-4949640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.9419200000","-112.4166000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949640-0913-4-C/results/933809268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8592","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:20:00","MST","2021-04-07 17:20:00",NA,"0.095",95,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809274","UTAHDWQ_WQX-UPRSVRNPS210407-4949650-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R NEAR HATCH","River/Stream",NA,"37.6515000000",37.6515,"-112.4304300000",-112.43043,"OK","16030001","UTAHDWQ_WQX-4949650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6515000000","-112.4304300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949650-0407-4-C/results/933809274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8593","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:25:00","MST","2021-06-01 17:25:00",NA,"0.124",124,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809280","UTAHDWQ_WQX-UPRSVRNPS210601-4949650-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R NEAR HATCH","River/Stream",NA,"37.6515000000",37.6515,"-112.4304300000",-112.43043,"OK","16030001","UTAHDWQ_WQX-4949650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6515000000","-112.4304300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949650-0601-4-C/results/933809280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8594","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","09:50:00","MST","2021-09-13 16:50:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809286","UTAHDWQ_WQX-UPRSVRNPS210913-4949650-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R NEAR HATCH","River/Stream",NA,"37.6515000000",37.6515,"-112.4304300000",-112.43043,"OK","16030001","UTAHDWQ_WQX-4949650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6515000000","-112.4304300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949650-0913-4-C/results/933809286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8595","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","11:35:00","MST","2021-04-07 18:35:00",NA,"0.115",115,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809292","UTAHDWQ_WQX-UPRSVRNPS210407-4949660-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R EAST OF PANGUITCH","River/Stream",NA,"37.8234000000",37.8234,"-112.4061500000",-112.40615,"OK","16030001","UTAHDWQ_WQX-4949660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8234000000","-112.4061500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949660-0407-4-C/results/933809292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8596","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","11:05:00","MST","2021-06-01 18:05:00",NA,"0.126",126,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809298","UTAHDWQ_WQX-UPRSVRNPS210601-4949660-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R EAST OF PANGUITCH","River/Stream",NA,"37.8234000000",37.8234,"-112.4061500000",-112.40615,"OK","16030001","UTAHDWQ_WQX-4949660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8234000000","-112.4061500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949660-0601-4-C/results/933809298/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8597","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","12:40:00","MST","2021-04-07 19:40:00",NA,"0.573",573,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809304","UTAHDWQ_WQX-UPRSVRNPS210407-4949670-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R @ PANGUITCH AIRPORT RD XING","River/Stream",NA,"37.8516400000",37.85164,"-112.4360400000",-112.43604,"OK","16030001","UTAHDWQ_WQX-4949670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8516400000","-112.4360400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949670-0407-4-C/results/933809304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5325","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","11:20:00","MST","2021-06-01 18:20:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809310","UTAHDWQ_WQX-UPRSVRNPS210601-4949670-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R @ PANGUITCH AIRPORT RD XING","River/Stream",NA,"37.8516400000",37.85164,"-112.4360400000",-112.43604,"OK","16030001","UTAHDWQ_WQX-4949670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8516400000","-112.4360400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949670-0601-4-C/results/933809310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8599","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","10:55:00","MST","2021-09-13 17:55:00",NA,"0.769",769,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809316","UTAHDWQ_WQX-UPRSVRNPS210913-4949670-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R @ PANGUITCH AIRPORT RD XING","River/Stream",NA,"37.8516400000",37.85164,"-112.4360400000",-112.43604,"OK","16030001","UTAHDWQ_WQX-4949670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8516400000","-112.4360400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949670-0913-4-C/results/933809316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5327","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","09:50:00","MST","2021-04-07 16:50:00",NA,"0.148",148,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809322","UTAHDWQ_WQX-UPRSVRNPS210407-4949700-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","MAMMOTH CK AT US89 XING","River/Stream",NA,"37.6281000000",37.6281,"-112.4553100000",-112.45531,"OK","16030001","UTAHDWQ_WQX-4949700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6281000000","-112.4553100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949700-0407-4-C/results/933809322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5328","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:10:00","MST","2021-06-01 17:10:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809328","UTAHDWQ_WQX-UPRSVRNPS210601-4949700-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","MAMMOTH CK AT US89 XING","River/Stream",NA,"37.6281000000",37.6281,"-112.4553100000",-112.45531,"OK","16030001","UTAHDWQ_WQX-4949700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6281000000","-112.4553100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949700-0601-4-C/results/933809328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8602","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","09:32:00","MST","2021-09-13 16:32:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809334","UTAHDWQ_WQX-UPRSVRNPS210913-4949700-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","MAMMOTH CK AT US89 XING","River/Stream",NA,"37.6281000000",37.6281,"-112.4553100000",-112.45531,"OK","16030001","UTAHDWQ_WQX-4949700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6281000000","-112.4553100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949700-0913-4-C/results/933809334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5330","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","09:55:00","MST","2021-04-07 16:55:00",NA,"0.166",166,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809340","UTAHDWQ_WQX-UPRSVRNPS210407-4949702-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","MAMMOTH CK AT US89 XING Replicate of 4949700","River/Stream","Replicate of 4949700","37.6281000000",37.6281,"-112.4553100000",-112.45531,"OK","16030001","UTAHDWQ_WQX-4949702",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6281000000","-112.4553100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949702-0407-4-C/results/933809340/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5331","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:00:00","MST","2021-06-01 17:00:00",NA,"0.264",264,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809346","UTAHDWQ_WQX-UPRSVRNPS210601-4949702-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","MAMMOTH CK AT US89 XING Replicate of 4949700","River/Stream","Replicate of 4949700","37.6281000000",37.6281,"-112.4553100000",-112.45531,"OK","16030001","UTAHDWQ_WQX-4949702",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6281000000","-112.4553100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949702-0601-4-C/results/933809346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5332","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","09:32:00","MST","2021-09-13 16:32:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809352","UTAHDWQ_WQX-UPRSVRNPS210913-4949702-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","MAMMOTH CK AT US89 XING Replicate of 4949700","River/Stream","Replicate of 4949700","37.6281000000",37.6281,"-112.4553100000",-112.45531,"OK","16030001","UTAHDWQ_WQX-4949702",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6281000000","-112.4553100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949702-0913-4-C/results/933809352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5333","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:10:00","MST","2021-09-13 18:10:00",NA,"0.669",669,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809358","UTAHDWQ_WQX-UPRSVRNPS210913-4949710-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","Sevier R bl USU Farm @ Sandwash Rd Xing","River/Stream",NA,"37.8762300000",37.87623,"-112.4277600000",-112.42776,"OK","16030001","UTAHDWQ_WQX-4949710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8762300000","-112.4277600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949710-0913-4-C/results/933809358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5334","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","10:00:00","MST","2021-04-07 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809364","UTAHDWQ_WQX-UPRSVRNPS210407-4949718-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Upper Sevier Watershed Nonpoint Source Monitoring Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4949718",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949718-0407-4-C/results/933809364/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5335","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","11:35:00","MST","2021-06-01 18:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809370","UTAHDWQ_WQX-UPRSVRNPS210601-4949718-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Upper Sevier Watershed Nonpoint Source Monitoring Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4949718",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949718-0601-4-C/results/933809370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5336","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","09:15:00","MST","2021-09-13 16:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809376","UTAHDWQ_WQX-UPRSVRNPS210913-4949718-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Upper Sevier Watershed Nonpoint Source Monitoring Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4949718",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949718-0913-4-C/results/933809376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5337","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","09:05:00","MST","2021-04-07 16:05:00",NA,"0.13",130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809382","UTAHDWQ_WQX-UPRSVRNPS210407-4949900-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","ASAY CK AT US89 XING","River/Stream",NA,"37.5841500000",37.58415,"-112.4766000000",-112.4766,"OK","16030001","UTAHDWQ_WQX-4949900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5841500000","-112.4766000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949900-0407-4-C/results/933809382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5338","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","09:15:00","MST","2021-06-01 16:15:00",NA,"0.094",94,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809388","UTAHDWQ_WQX-UPRSVRNPS210601-4949900-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","ASAY CK AT US89 XING","River/Stream",NA,"37.5841500000",37.58415,"-112.4766000000",-112.4766,"OK","16030001","UTAHDWQ_WQX-4949900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5841500000","-112.4766000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949900-0601-4-C/results/933809388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5339","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","09:17:00","MST","2021-09-13 16:17:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809394","UTAHDWQ_WQX-UPRSVRNPS210913-4949900-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","ASAY CK AT US89 XING","River/Stream",NA,"37.5841500000",37.58415,"-112.4766000000",-112.4766,"OK","16030001","UTAHDWQ_WQX-4949900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5841500000","-112.4766000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949900-0913-4-C/results/933809394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5340","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","14:40:00","MST","2021-06-02 21:40:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809401","UTAHDWQ_WQX-OTTERCKNPS210602-4949950-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870","River/Stream","Replicate of 4948870","38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4949950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4949950-0602-4-C/results/933809401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5341","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-20","10:04:00","MST","2021-07-20 17:04:00",NA,"0.439",439,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809408","UTAHDWQ_WQX-OTTERCKNPS210720-4949950-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870","River/Stream","Replicate of 4948870","38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4949950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4949950-0720-4-C/results/933809408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5342","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:50:00","MST","2021-09-14 20:50:00",NA,"0.521",521,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809415","UTAHDWQ_WQX-OTTERCKNPS210914-4949950-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870","River/Stream","Replicate of 4948870","38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4949950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4949950-0914-4-C/results/933809415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5343","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-21","13:00:00","MST","2021-04-21 20:00:00",NA,"0.584",584,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809421","UTAHDWQ_WQX-BLMRF210421-4949970-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK","River/Stream",NA,"38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949970-0421-4-C/results/933809421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5344","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-21","13:00:00","MST","2021-04-21 20:00:00",NA,"0.616",616,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809424","UTAHDWQ_WQX-BLMRF210421-4949970-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK","River/Stream",NA,"38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949970-0421-4-C/results/933809424/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5345","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-21","13:15:00","MST","2021-04-21 20:15:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809449","UTAHDWQ_WQX-BLMRF210421-4949971-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970","River/Stream","Replicate of 4949970","38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949971-0421-4-C/results/933809449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5346","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-21","13:15:00","MST","2021-04-21 20:15:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809452","UTAHDWQ_WQX-BLMRF210421-4949971-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970","River/Stream","Replicate of 4949970","38.0108200000",38.01082,"-111.9657400000",-111.96574,"OK","16030002","UTAHDWQ_WQX-4949971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0108200000","-111.9657400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949971-0421-4-C/results/933809452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5347","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-21","13:30:00","MST","2021-04-21 20:30:00",NA,"0.469",469,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809477","UTAHDWQ_WQX-BLMRF210421-4949980-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","DEER CK AB CNFL/ E FK SEVIER R","River/Stream",NA,"38.0112200000",38.01122,"-111.9665800000",-111.96658,"OK","16030002","UTAHDWQ_WQX-4949980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0112200000","-111.9665800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949980-0421-4-C/results/933809477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5348","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-21","13:30:00","MST","2021-04-21 20:30:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809480","UTAHDWQ_WQX-BLMRF210421-4949980-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","DEER CK AB CNFL/ E FK SEVIER R","River/Stream",NA,"38.0112200000",38.01122,"-111.9665800000",-111.96658,"OK","16030002","UTAHDWQ_WQX-4949980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0112200000","-111.9665800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949980-0421-4-C/results/933809480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5349","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-02","12:00:00","MST","2021-04-02 19:00:00",NA,"0.098",98,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809509","UTAHDWQ_WQX-NPSETAL210401-4950800-0402-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4950800-0402-4-C/results/933809509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5350","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-02","12:00:00","MST","2021-04-02 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809512","UTAHDWQ_WQX-NPSETAL210401-4950800-0402-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4950800-0402-4-C/results/933809512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5351","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-07","11:30:00","MST","2021-05-07 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809542","UTAHDWQ_WQX-NPSETAL210503-4950800-0507-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4950800-0507-4-C/results/933809542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8625","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-07","11:30:00","MST","2021-05-07 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809545","UTAHDWQ_WQX-NPSETAL210503-4950800-0507-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4950800-0507-4-C/results/933809545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5353","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-11","12:45:00","MST","2021-06-11 19:45:00",NA,"0.105",105,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809559","UTAHDWQ_WQX-NPSETAL210608-4950800-0611-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4950800-0611-4-C/results/933809559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5354","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-11","12:45:00","MST","2021-06-11 19:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809562","UTAHDWQ_WQX-NPSETAL210608-4950800-0611-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4950800-0611-4-C/results/933809562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8628","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-28","12:30:00","MST","2021-07-28 19:30:00",NA,"0.095",95,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809576","UTAHDWQ_WQX-NPSETAL210706-4950800-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4950800-0728-4-C/results/933809576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5356","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-28","12:30:00","MST","2021-07-28 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809579","UTAHDWQ_WQX-NPSETAL210706-4950800-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4950800-0728-4-C/results/933809579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5357","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","11:00:00","MST","2021-08-10 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809608","UTAHDWQ_WQX-NPSETAL210805-4950800-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4950800-0810-4-C/results/933809608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5358","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","11:00:00","MST","2021-08-10 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809611","UTAHDWQ_WQX-NPSETAL210805-4950800-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4950800-0810-4-C/results/933809611/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5359","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-10","11:00:00","MST","2021-09-10 18:00:00",NA,"0.103",103,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809625","UTAHDWQ_WQX-NPSETAL210905-4950800-0910-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4950800-0910-4-C/results/933809625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5360","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-10","11:00:00","MST","2021-09-10 18:00:00",NA,"0.114",114,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809628","UTAHDWQ_WQX-NPSETAL210905-4950800-0910-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4950800-0910-4-C/results/933809628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5361","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-02","17:10:00","MST","2021-04-03 00:10:00",NA,"0.533",533,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809642","UTAHDWQ_WQX-NPSETAL210401-4950920-0402-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4950920-0402-4-C/results/933809642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5362","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-02","17:10:00","MST","2021-04-03 00:10:00",NA,"0.452",452,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809645","UTAHDWQ_WQX-NPSETAL210401-4950920-0402-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4950920-0402-4-C/results/933809645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-07","16:45:00","MST","2021-05-07 23:45:00",NA,"0.596",596,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809675","UTAHDWQ_WQX-NPSETAL210503-4950920-0507-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4950920-0507-4-C/results/933809675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5364","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-07","16:45:00","MST","2021-05-07 23:45:00",NA,"0.516",516,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809678","UTAHDWQ_WQX-NPSETAL210503-4950920-0507-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4950920-0507-4-C/results/933809678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5365","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-12","12:00:00","MST","2021-06-12 19:00:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809692","UTAHDWQ_WQX-NPSETAL210608-4950920-0612-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4950920-0612-4-C/results/933809692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5366","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-12","12:00:00","MST","2021-06-12 19:00:00",NA,"0.583",583,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809695","UTAHDWQ_WQX-NPSETAL210608-4950920-0612-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4950920-0612-4-C/results/933809695/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5367","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-15","14:00:00","MST","2021-07-15 21:00:00",NA,"0.937",937,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809709","UTAHDWQ_WQX-NPSETAL210706-4950920-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4950920-0715-4-C/results/933809709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5368","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-15","14:00:00","MST","2021-07-15 21:00:00",NA,"0.754",754,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809712","UTAHDWQ_WQX-NPSETAL210706-4950920-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4950920-0715-4-C/results/933809712/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5369","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","16:15:00","MST","2021-08-10 23:15:00",NA,"0.536",536,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809742","UTAHDWQ_WQX-NPSETAL210805-4950920-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4950920-0810-4-C/results/933809742/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5370","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","16:15:00","MST","2021-08-10 23:15:00",NA,"0.531",531,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809745","UTAHDWQ_WQX-NPSETAL210805-4950920-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4950920-0810-4-C/results/933809745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5371","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-10","16:45:00","MST","2021-09-10 23:45:00",NA,"0.675",675,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809759","UTAHDWQ_WQX-NPSETAL210905-4950920-0910-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4950920-0910-4-C/results/933809759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5372","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-10","16:45:00","MST","2021-09-10 23:45:00",NA,"0.618",618,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809762","UTAHDWQ_WQX-NPSETAL210905-4950920-0910-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4950920-0910-4-C/results/933809762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5373","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-01","15:00:00","MST","2021-04-01 22:00:00",NA,"0.094",94,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809776","UTAHDWQ_WQX-NPSETAL210401-4951265-0401-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951265-0401-4-C/results/933809776/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5374","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-01","15:00:00","MST","2021-04-01 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809779","UTAHDWQ_WQX-NPSETAL210401-4951265-0401-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951265-0401-4-C/results/933809779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5375","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-06","15:00:00","MST","2021-05-06 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809809","UTAHDWQ_WQX-NPSETAL210503-4951265-0506-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951265-0506-4-C/results/933809809/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5376","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-06","15:00:00","MST","2021-05-06 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809812","UTAHDWQ_WQX-NPSETAL210503-4951265-0506-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951265-0506-4-C/results/933809812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5377","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","15:45:00","MST","2021-06-10 22:45:00",NA,"0.133",133,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809826","UTAHDWQ_WQX-NPSETAL210608-4951265-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951265-0610-4-C/results/933809826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5378","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","15:45:00","MST","2021-06-10 22:45:00",NA,"0.108",108,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809829","UTAHDWQ_WQX-NPSETAL210608-4951265-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951265-0610-4-C/results/933809829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5379","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","13:45:00","MST","2021-08-09 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809843","UTAHDWQ_WQX-NPSETAL210805-4951265-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951265-0809-4-C/results/933809843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5380","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","13:45:00","MST","2021-08-09 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809846","UTAHDWQ_WQX-NPSETAL210805-4951265-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951265-0809-4-C/results/933809846/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5381","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","14:15:00","MST","2021-09-09 21:15:00",NA,"0.129",129,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809860","UTAHDWQ_WQX-NPSETAL210905-4951265-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951265-0909-4-C/results/933809860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5382","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","14:15:00","MST","2021-09-09 21:15:00",NA,"0.11",110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809863","UTAHDWQ_WQX-NPSETAL210905-4951265-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951265-0909-4-C/results/933809863/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5383","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-01","15:05:00","MST","2021-04-01 22:05:00",NA,"0.085",85,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809877","UTAHDWQ_WQX-NPSETAL210401-4951266-0401-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951266-0401-4-C/results/933809877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5384","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-01","15:05:00","MST","2021-04-01 22:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809880","UTAHDWQ_WQX-NPSETAL210401-4951266-0401-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951266-0401-4-C/results/933809880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5385","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","15:50:00","MST","2021-06-10 22:50:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809910","UTAHDWQ_WQX-NPSETAL210608-4951266-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951266-0610-4-C/results/933809910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8659","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","15:50:00","MST","2021-06-10 22:50:00",NA,"0.099",99,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809913","UTAHDWQ_WQX-NPSETAL210608-4951266-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951266-0610-4-C/results/933809913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5387","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","13:50:00","MST","2021-08-09 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809921","UTAHDWQ_WQX-NPSETAL210805-4951266-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951266-0809-4-C/results/933809921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5388","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-09","13:50:00","MST","2021-08-09 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809924","UTAHDWQ_WQX-NPSETAL210805-4951266-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951266-0809-4-C/results/933809924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5389","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-02","17:30:00","MST","2021-05-03 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809940","UTAHDWQ_WQX-BLMGSE210501-4951766-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4951766-0502-4-C/results/933809940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5390","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-02","17:30:00","MST","2021-05-03 00:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809943","UTAHDWQ_WQX-BLMGSE210501-4951766-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4951766-0502-4-C/results/933809943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5391","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","14:45:00","MST","2021-06-10 21:45:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809966","UTAHDWQ_WQX-BLMGSE210609-4951766-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4951766-0610-4-C/results/933809966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5392","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","14:45:00","MST","2021-06-10 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809969","UTAHDWQ_WQX-BLMGSE210609-4951766-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4951766-0610-4-C/results/933809969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5393","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-02","13:56:00","MST","2021-07-02 20:56:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809992","UTAHDWQ_WQX-BLMGSE210701-4951766-0702-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4951766-0702-4-C/results/933809992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5394","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-02","13:56:00","MST","2021-07-02 20:56:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933809995","UTAHDWQ_WQX-BLMGSE210701-4951766-0702-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4951766-0702-4-C/results/933809995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5395","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-02","13:28:00","MST","2021-05-02 20:28:00",NA,"0.098",98,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810018","UTAHDWQ_WQX-BLMGSE210501-4951850-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT US89 XING","River/Stream",NA,"37.1074900000",37.10749,"-111.9068500000",-111.90685,"OK","14070007","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1074900000","-111.9068500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4951850-0502-4-C/results/933810018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5396","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-22","07:42:00","MST","2021-08-22 14:42:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810024","UTAHDWQ_WQX-BLMGSE210822-4951850-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT US89 XING","River/Stream",NA,"37.1074900000",37.10749,"-111.9068500000",-111.90685,"OK","14070007","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1074900000","-111.9068500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4951850-0822-4-C/results/933810024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5397","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-04","08:35:00","MST","2021-09-04 15:35:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810030","UTAHDWQ_WQX-BLMGSE210903-4951850-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT US89 XING","River/Stream",NA,"37.1074900000",37.10749,"-111.9068500000",-111.90685,"OK","14070007","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1074900000","-111.9068500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4951850-0904-4-C/results/933810030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5398","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","14:30:00","MST","2021-04-06 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810040","UTAHDWQ_WQX-NPSETAL210401-4951855-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951855-0406-4-C/results/933810040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5399","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","14:30:00","MST","2021-04-06 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810043","UTAHDWQ_WQX-NPSETAL210401-4951855-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951855-0406-4-C/results/933810043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5400","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","13:30:00","MST","2021-05-04 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810072","UTAHDWQ_WQX-NPSETAL210503-4951855-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951855-0504-4-C/results/933810072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5401","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","13:30:00","MST","2021-05-04 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810075","UTAHDWQ_WQX-NPSETAL210503-4951855-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951855-0504-4-C/results/933810075/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5402","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","14:30:00","MST","2021-06-15 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810089","UTAHDWQ_WQX-NPSETAL210608-4951855-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951855-0615-4-C/results/933810089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5403","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","14:30:00","MST","2021-06-15 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810092","UTAHDWQ_WQX-NPSETAL210608-4951855-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951855-0615-4-C/results/933810092/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5404","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-07","14:30:00","MST","2021-07-07 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810106","UTAHDWQ_WQX-NPSETAL210706-4951855-0707-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4951855-0707-4-C/results/933810106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5405","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-07","14:30:00","MST","2021-07-07 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810109","UTAHDWQ_WQX-NPSETAL210706-4951855-0707-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4951855-0707-4-C/results/933810109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5406","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","10:00:00","MST","2021-08-17 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810138","UTAHDWQ_WQX-NPSETAL210805-4951855-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951855-0817-4-C/results/933810138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5407","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","10:00:00","MST","2021-08-17 17:00:00",NA,"0.124",124,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810141","UTAHDWQ_WQX-NPSETAL210805-4951855-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951855-0817-4-C/results/933810141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5408","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-05","14:00:00","MST","2021-09-05 21:00:00",NA,"0.148",148,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810155","UTAHDWQ_WQX-NPSETAL210905-4951855-0905-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951855-0905-4-C/results/933810155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5409","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-05","14:00:00","MST","2021-09-05 21:00:00",NA,"0.137",137,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810158","UTAHDWQ_WQX-NPSETAL210905-4951855-0905-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951855-0905-4-C/results/933810158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5410","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-06","11:30:00","MST","2021-04-06 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810172","UTAHDWQ_WQX-NPSETAL210401-4951857-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951857-0406-4-C/results/933810172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5411","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-06","11:30:00","MST","2021-04-06 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810175","UTAHDWQ_WQX-NPSETAL210401-4951857-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951857-0406-4-C/results/933810175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5412","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-04","11:15:00","MST","2021-05-04 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810204","UTAHDWQ_WQX-NPSETAL210503-4951857-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951857-0504-4-C/results/933810204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5413","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-04","11:15:00","MST","2021-05-04 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810207","UTAHDWQ_WQX-NPSETAL210503-4951857-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951857-0504-4-C/results/933810207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5414","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","11:45:00","MST","2021-06-15 18:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810221","UTAHDWQ_WQX-NPSETAL210608-4951857-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951857-0615-4-C/results/933810221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5415","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","11:45:00","MST","2021-06-15 18:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810224","UTAHDWQ_WQX-NPSETAL210608-4951857-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951857-0615-4-C/results/933810224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5416","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-07","12:00:00","MST","2021-07-07 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810238","UTAHDWQ_WQX-NPSETAL210706-4951857-0707-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4951857-0707-4-C/results/933810238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5417","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-07","12:00:00","MST","2021-07-07 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810241","UTAHDWQ_WQX-NPSETAL210706-4951857-0707-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4951857-0707-4-C/results/933810241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5418","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-16","12:50:00","MST","2021-08-16 19:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810270","UTAHDWQ_WQX-NPSETAL210805-4951857-0816-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951857-0816-4-C/results/933810270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5419","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-16","12:50:00","MST","2021-08-16 19:50:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810273","UTAHDWQ_WQX-NPSETAL210805-4951857-0816-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951857-0816-4-C/results/933810273/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5420","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-05","11:30:00","MST","2021-09-05 18:30:00",NA,"0.105",105,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810287","UTAHDWQ_WQX-NPSETAL210905-4951857-0905-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951857-0905-4-C/results/933810287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5421","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-05","11:30:00","MST","2021-09-05 18:30:00",NA,"0.094",94,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810290","UTAHDWQ_WQX-NPSETAL210905-4951857-0905-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951857-0905-4-C/results/933810290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5422","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-17","17:00:00","MST","2021-06-18 00:00:00",NA,"0.511",511,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810314","UTAHDWQ_WQX-BORLP210615-4952370-0617-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"37.8050000000",37.805,"-110.4710000000",-110.471,"OK","14070001","UTAHDWQ_WQX-5952917",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8050000000","-110.4710000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-4952370-0617-4-C/results/933810314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5423","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-17","17:00:00","MST","2021-06-18 00:00:00",NA,"0.846",846,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810318","UTAHDWQ_WQX-BORLP210615-4952370-0617-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"37.8050000000",37.805,"-110.4710000000",-110.471,"OK","14070001","UTAHDWQ_WQX-5952917",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8050000000","-110.4710000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-4952370-0617-4-C/results/933810318/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5424","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","17:30:00","MST","2021-09-23 00:30:00",NA,"0.855",855,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810343","UTAHDWQ_WQX-BORLP210920-4952370-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"37.8050000000",37.805,"-110.4710000000",-110.471,"OK","14070001","UTAHDWQ_WQX-5952917",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8050000000","-110.4710000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-4952370-0922-4-C/results/933810343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5425","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","17:30:00","MST","2021-09-23 00:30:00",NA,"0.639",639,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810347","UTAHDWQ_WQX-BORLP210920-4952370-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"37.8050000000",37.805,"-110.4710000000",-110.471,"OK","14070001","UTAHDWQ_WQX-5952917",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8050000000","-110.4710000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-4952370-0922-4-C/results/933810347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5426","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-23","08:49:00","MST","2021-04-23 15:49:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810374","UTAHDWQ_WQX-NPSCANR210423-4952380-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4952380-0423-4-C/results/933810374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5427","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-23","08:49:00","MST","2021-04-23 15:49:00",NA,"0.344",344,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810377","UTAHDWQ_WQX-NPSCANR210423-4952380-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4952380-0423-4-C/results/933810377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5428","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","13:47:00","MST","2021-05-19 20:47:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810407","UTAHDWQ_WQX-NPSCANR210519-4952380-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4952380-0519-4-C/results/933810407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5429","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","13:47:00","MST","2021-05-19 20:47:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810410","UTAHDWQ_WQX-NPSCANR210519-4952380-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4952380-0519-4-C/results/933810410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5430","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","11:45:00","MST","2021-06-21 18:45:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810439","UTAHDWQ_WQX-NPSCANR210619-4952380-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4952380-0621-4-C/results/933810439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5431","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","11:45:00","MST","2021-06-21 18:45:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810442","UTAHDWQ_WQX-NPSCANR210619-4952380-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4952380-0621-4-C/results/933810442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5432","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-15","07:25:00","MST","2021-07-15 14:25:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810472","UTAHDWQ_WQX-NPSCANR210715-4952380-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4952380-0715-4-C/results/933810472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5433","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-26","11:19:00","MST","2021-08-26 18:19:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810502","UTAHDWQ_WQX-NPSCANR210826-4952380-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4952380-0826-4-C/results/933810502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5434","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","11:19:00","MST","2021-08-26 18:19:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810505","UTAHDWQ_WQX-NPSCANR210826-4952380-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4952380-0826-4-C/results/933810505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5435","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-23","10:08:00","MST","2021-04-23 17:08:00",NA,"0.538",538,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810568","UTAHDWQ_WQX-NPSCANR210423-4952400-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4952400-0423-4-C/results/933810568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5436","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-23","10:08:00","MST","2021-04-23 17:08:00",NA,"0.508",508,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810571","UTAHDWQ_WQX-NPSCANR210423-4952400-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4952400-0423-4-C/results/933810571/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5437","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","14:38:00","MST","2021-05-19 21:38:00",NA,"0.35",350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810601","UTAHDWQ_WQX-NPSCANR210519-4952400-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4952400-0519-4-C/results/933810601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5438","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","14:38:00","MST","2021-05-19 21:38:00",NA,"0.326",326,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810604","UTAHDWQ_WQX-NPSCANR210519-4952400-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4952400-0519-4-C/results/933810604/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5439","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","12:35:00","MST","2021-06-21 19:35:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810633","UTAHDWQ_WQX-NPSCANR210619-4952400-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4952400-0621-4-C/results/933810633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5440","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","12:35:00","MST","2021-06-21 19:35:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810636","UTAHDWQ_WQX-NPSCANR210619-4952400-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4952400-0621-4-C/results/933810636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8714","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-15","08:14:00","MST","2021-07-15 15:14:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810666","UTAHDWQ_WQX-NPSCANR210715-4952400-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4952400-0715-4-C/results/933810666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5442","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-15","08:14:00","MST","2021-07-15 15:14:00",NA,"0.609",609,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810669","UTAHDWQ_WQX-NPSCANR210715-4952400-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4952400-0715-4-C/results/933810669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5443","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-26","12:01:00","MST","2021-08-26 19:01:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810699","UTAHDWQ_WQX-NPSCANR210826-4952400-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4952400-0826-4-C/results/933810699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8717","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","12:01:00","MST","2021-08-26 19:01:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810702","UTAHDWQ_WQX-NPSCANR210826-4952400-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4952400-0826-4-C/results/933810702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5445","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-16","15:15:00","MST","2021-06-16 22:15:00",NA,"0.555",555,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810763","UTAHDWQ_WQX-BORLP210615-4952940-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","San Juan River about 4.0 miles BL Alcove Canyon (Great Bend)","River/Stream",NA,"37.2404600000",37.24046,"-110.6703700000",-110.67037,"OK","14080205","UTAHDWQ_WQX-4952930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2404600000","-110.6703700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-4952940-0616-4-C/results/933810763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5446","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","15:15:00","MST","2021-06-16 22:15:00",NA,"0.747",747,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810767","UTAHDWQ_WQX-BORLP210615-4952940-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","San Juan River about 4.0 miles BL Alcove Canyon (Great Bend)","River/Stream",NA,"37.2404600000",37.24046,"-110.6703700000",-110.67037,"OK","14080205","UTAHDWQ_WQX-4952930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2404600000","-110.6703700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-4952940-0616-4-C/results/933810767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5447","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","17:15:00","MST","2021-09-22 00:15:00",NA,"0.589",589,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810792","UTAHDWQ_WQX-BORLP210920-4952940-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AB LAKE POWELL","River/Stream",NA,"37.2941600000",37.29416,"-110.4068000000",-110.4068,"OK","14080205","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2941600000","-110.4068000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-4952940-0921-4-C/results/933810792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5448","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","17:15:00","MST","2021-09-22 00:15:00",NA,"0.428",428,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810796","UTAHDWQ_WQX-BORLP210920-4952940-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AB LAKE POWELL","River/Stream",NA,"37.2941600000",37.29416,"-110.4068000000",-110.4068,"OK","14080205","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2941600000","-110.4068000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-4952940-0921-4-C/results/933810796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5449","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-28","11:30:00","MST","2021-04-28 18:30:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810822","UTAHDWQ_WQX-BLMMOAB210407-4953060-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4953060-0428-4-C/results/933810822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5450","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-28","14:00:00","MST","2021-04-28 21:00:00",NA,"0.104",104,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810851","UTAHDWQ_WQX-BLMMOAB210407-4953193-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4953193-0428-4-C/results/933810851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8724","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-28","13:30:00","MST","2021-04-28 20:30:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810880","UTAHDWQ_WQX-BLMMOAB210407-4953205-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4953205-0428-4-C/results/933810880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5452","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-28","12:30:00","MST","2021-04-28 19:30:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810909","UTAHDWQ_WQX-BLMMOAB210407-4953210-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COMB WASH BL FISH CK","River/Stream",NA,"37.3841600000",37.38416,"-109.6684600000",-109.66846,"OK","14080201","UTAHDWQ_WQX-4953210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3841600000","-109.6684600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4953210-0428-4-C/results/933810909/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5453","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-01","13:15:00","MST","2021-05-01 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810935","UTAHDWQ_WQX-BLMGSE210501-4953980-0501-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4953980-0501-4-C/results/933810935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8727","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-01","13:15:00","MST","2021-05-01 20:15:00",NA,"0.763",763,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810938","UTAHDWQ_WQX-BLMGSE210501-4953980-0501-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4953980-0501-4-C/results/933810938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5455","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","13:06:00","MST","2021-06-09 20:06:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810961","UTAHDWQ_WQX-BLMGSE210609-4953980-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4953980-0609-4-C/results/933810961/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5456","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","13:06:00","MST","2021-06-09 20:06:00",NA,"0.101",101,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810964","UTAHDWQ_WQX-BLMGSE210609-4953980-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4953980-0609-4-C/results/933810964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8730","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-02","09:17:00","MST","2021-07-02 16:17:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810987","UTAHDWQ_WQX-BLMGSE210701-4953980-0702-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4953980-0702-4-C/results/933810987/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5458","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-02","09:17:00","MST","2021-07-02 16:17:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933810990","UTAHDWQ_WQX-BLMGSE210701-4953980-0702-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4953980-0702-4-C/results/933810990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5459","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-22","13:19:00","MST","2021-08-22 20:19:00",NA,"0.196",196,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811013","UTAHDWQ_WQX-BLMGSE210822-4953980-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4953980-0822-4-C/results/933811013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5460","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-22","13:19:00","MST","2021-08-22 20:19:00",NA,"0.513",513,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811016","UTAHDWQ_WQX-BLMGSE210822-4953980-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4953980-0822-4-C/results/933811016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5461","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-04","13:45:00","MST","2021-09-04 20:45:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811039","UTAHDWQ_WQX-BLMGSE210903-4953980-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4953980-0904-4-C/results/933811039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5462","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-04","13:45:00","MST","2021-09-04 20:45:00",NA,"0.206",206,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811042","UTAHDWQ_WQX-BLMGSE210903-4953980-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4953980-0904-4-C/results/933811042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5463","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-01","13:27:00","MST","2021-05-01 20:27:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811065","UTAHDWQ_WQX-BLMGSE210501-4953981-0501-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4953981-0501-4-C/results/933811065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5464","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-01","13:27:00","MST","2021-05-01 20:27:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811068","UTAHDWQ_WQX-BLMGSE210501-4953981-0501-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4953981-0501-4-C/results/933811068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5465","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","13:20:00","MST","2021-06-09 20:20:00",NA,"0.16",160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811091","UTAHDWQ_WQX-BLMGSE210609-4953981-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4953981-0609-4-C/results/933811091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5466","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","13:20:00","MST","2021-06-09 20:20:00",NA,"0.11",110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811094","UTAHDWQ_WQX-BLMGSE210609-4953981-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4953981-0609-4-C/results/933811094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5467","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-02","09:30:00","MST","2021-07-02 16:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811117","UTAHDWQ_WQX-BLMGSE210701-4953981-0702-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4953981-0702-4-C/results/933811117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8741","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-02","09:30:00","MST","2021-07-02 16:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811120","UTAHDWQ_WQX-BLMGSE210701-4953981-0702-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4953981-0702-4-C/results/933811120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5469","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-22","13:26:00","MST","2021-08-22 20:26:00",NA,"0.172",172,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811143","UTAHDWQ_WQX-BLMGSE210822-4953981-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4953981-0822-4-C/results/933811143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5470","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-22","13:26:00","MST","2021-08-22 20:26:00",NA,"0.221",221,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811146","UTAHDWQ_WQX-BLMGSE210822-4953981-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4953981-0822-4-C/results/933811146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5471","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-04","13:57:00","MST","2021-09-04 20:57:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811169","UTAHDWQ_WQX-BLMGSE210903-4953981-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4953981-0904-4-C/results/933811169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5472","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-04","13:57:00","MST","2021-09-04 20:57:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811172","UTAHDWQ_WQX-BLMGSE210903-4953981-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4953981-0904-4-C/results/933811172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5473","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","11:00:00","MST","2021-04-05 18:00:00",NA,"0.174",174,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811209","UTAHDWQ_WQX-NPSETAL210401-4954770-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954770-0405-4-C/results/933811209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5474","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","11:00:00","MST","2021-04-05 18:00:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811212","UTAHDWQ_WQX-NPSETAL210401-4954770-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954770-0405-4-C/results/933811212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5475","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","12:00:00","MST","2021-05-03 19:00:00",NA,"0.264",264,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811242","UTAHDWQ_WQX-NPSETAL210503-4954770-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954770-0503-4-C/results/933811242/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5476","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","12:00:00","MST","2021-05-03 19:00:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811245","UTAHDWQ_WQX-NPSETAL210503-4954770-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954770-0503-4-C/results/933811245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5477","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","16:15:00","MST","2021-06-08 23:15:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811259","UTAHDWQ_WQX-NPSETAL210608-4954770-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954770-0608-4-C/results/933811259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5478","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","16:15:00","MST","2021-06-08 23:15:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811262","UTAHDWQ_WQX-NPSETAL210608-4954770-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954770-0608-4-C/results/933811262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5479","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","13:00:00","MST","2021-07-06 20:00:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811276","UTAHDWQ_WQX-NPSETAL210706-4954770-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954770-0706-4-C/results/933811276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5480","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","13:00:00","MST","2021-07-06 20:00:00",NA,"0.277",277,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811279","UTAHDWQ_WQX-NPSETAL210706-4954770-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954770-0706-4-C/results/933811279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5481","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-05","16:00:00","MST","2021-08-05 23:00:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811309","UTAHDWQ_WQX-NPSETAL210805-4954770-0805-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954770-0805-4-C/results/933811309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5482","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-05","16:00:00","MST","2021-08-05 23:00:00",NA,"0.464",464,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811312","UTAHDWQ_WQX-NPSETAL210805-4954770-0805-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954770-0805-4-C/results/933811312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5483","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-07","14:15:00","MST","2021-09-07 21:15:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811326","UTAHDWQ_WQX-NPSETAL210905-4954770-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954770-0907-4-C/results/933811326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5484","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-07","14:15:00","MST","2021-09-07 21:15:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811329","UTAHDWQ_WQX-NPSETAL210905-4954770-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954770-0907-4-C/results/933811329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5485","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","15:00:00","MST","2021-04-05 22:00:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811343","UTAHDWQ_WQX-NPSETAL210401-4954775-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954775-0405-4-C/results/933811343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5486","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","15:00:00","MST","2021-04-05 22:00:00",NA,"0.195",195,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811346","UTAHDWQ_WQX-NPSETAL210401-4954775-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954775-0405-4-C/results/933811346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5487","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","16:00:00","MST","2021-05-03 23:00:00",NA,"0.22",220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811376","UTAHDWQ_WQX-NPSETAL210503-4954775-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954775-0503-4-C/results/933811376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5488","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","16:00:00","MST","2021-05-03 23:00:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811379","UTAHDWQ_WQX-NPSETAL210503-4954775-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954775-0503-4-C/results/933811379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5489","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-08","10:30:00","MST","2021-06-08 17:30:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811393","UTAHDWQ_WQX-NPSETAL210608-4954775-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954775-0608-4-C/results/933811393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5490","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-08","10:30:00","MST","2021-06-08 17:30:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811396","UTAHDWQ_WQX-NPSETAL210608-4954775-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954775-0608-4-C/results/933811396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5491","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","17:15:00","MST","2021-07-07 00:15:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811410","UTAHDWQ_WQX-NPSETAL210706-4954775-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954775-0706-4-C/results/933811410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5492","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","17:15:00","MST","2021-07-07 00:15:00",NA,"0.184",184,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811413","UTAHDWQ_WQX-NPSETAL210706-4954775-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954775-0706-4-C/results/933811413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5493","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-05","10:30:00","MST","2021-08-05 17:30:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811443","UTAHDWQ_WQX-NPSETAL210805-4954775-0805-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954775-0805-4-C/results/933811443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5494","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-05","10:30:00","MST","2021-08-05 17:30:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811446","UTAHDWQ_WQX-NPSETAL210805-4954775-0805-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954775-0805-4-C/results/933811446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5495","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-07","11:00:00","MST","2021-09-07 18:00:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811460","UTAHDWQ_WQX-NPSETAL210905-4954775-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954775-0907-4-C/results/933811460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5496","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-07","11:00:00","MST","2021-09-07 18:00:00",NA,"0.303",303,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811463","UTAHDWQ_WQX-NPSETAL210905-4954775-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954775-0907-4-C/results/933811463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5497","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-12","14:00:00","MST","2021-04-12 21:00:00",NA,"0.088",88,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811477","UTAHDWQ_WQX-NPSETAL210401-4954780-0412-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954780-0412-4-C/results/933811477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5498","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-12","14:00:00","MST","2021-04-12 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811480","UTAHDWQ_WQX-NPSETAL210401-4954780-0412-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954780-0412-4-C/results/933811480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8772","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-05","11:30:00","MST","2021-05-05 18:30:00",NA,"0.092",92,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811510","UTAHDWQ_WQX-NPSETAL210503-4954780-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954780-0505-4-C/results/933811510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5500","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-05","11:30:00","MST","2021-05-05 18:30:00",NA,"0.085",85,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811513","UTAHDWQ_WQX-NPSETAL210503-4954780-0505-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954780-0505-4-C/results/933811513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5501","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","10:00:00","MST","2021-06-09 17:00:00",NA,"0.132",132,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811527","UTAHDWQ_WQX-NPSETAL210608-4954780-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954780-0609-4-C/results/933811527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5502","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-09","10:00:00","MST","2021-06-09 17:00:00",NA,"0.126",126,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811530","UTAHDWQ_WQX-NPSETAL210608-4954780-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954780-0609-4-C/results/933811530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5503","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-06","15:00:00","MST","2021-07-06 22:00:00",NA,"0.112",112,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811544","UTAHDWQ_WQX-NPSETAL210706-4954780-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954780-0706-4-C/results/933811544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5504","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-06","15:00:00","MST","2021-07-06 22:00:00",NA,"0.135",135,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811547","UTAHDWQ_WQX-NPSETAL210706-4954780-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954780-0706-4-C/results/933811547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5505","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-06","11:30:00","MST","2021-08-06 18:30:00",NA,"0.101",101,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811577","UTAHDWQ_WQX-NPSETAL210805-4954780-0806-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954780-0806-4-C/results/933811577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5506","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-06","11:30:00","MST","2021-08-06 18:30:00",NA,"0.092",92,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811580","UTAHDWQ_WQX-NPSETAL210805-4954780-0806-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954780-0806-4-C/results/933811580/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5507","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-07","16:00:00","MST","2021-09-07 23:00:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811594","UTAHDWQ_WQX-NPSETAL210905-4954780-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954780-0907-4-C/results/933811594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5508","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-07","16:00:00","MST","2021-09-07 23:00:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811597","UTAHDWQ_WQX-NPSETAL210905-4954780-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954780-0907-4-C/results/933811597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5509","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","11:30:00","MST","2021-04-13 18:30:00",NA,"0.143",143,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811611","UTAHDWQ_WQX-NPSETAL210401-4954795-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954795-0413-4-C/results/933811611/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5510","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","11:30:00","MST","2021-04-13 18:30:00",NA,"0.105",105,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811614","UTAHDWQ_WQX-NPSETAL210401-4954795-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954795-0413-4-C/results/933811614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5511","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","10:30:00","MST","2021-05-10 17:30:00",NA,"0.085",85,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811644","UTAHDWQ_WQX-NPSETAL210503-4954795-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954795-0510-4-C/results/933811644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5512","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","10:30:00","MST","2021-05-10 17:30:00",NA,"0.089",89,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811647","UTAHDWQ_WQX-NPSETAL210503-4954795-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954795-0510-4-C/results/933811647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5513","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:30:00","MST","2021-09-13 18:30:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811661","UTAHDWQ_WQX-NPSETAL210905-4954795-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954795-0913-4-C/results/933811661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8787","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","11:30:00","MST","2021-09-13 18:30:00",NA,"0.184",184,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811664","UTAHDWQ_WQX-NPSETAL210905-4954795-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954795-0913-4-C/results/933811664/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5515","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","15:00:00","MST","2021-04-07 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811735","UTAHDWQ_WQX-BLMMOAB210407-4955780-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955780-0407-4-C/results/933811735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5516","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","15:00:00","MST","2021-04-07 22:00:00",NA,"0.143",143,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811738","UTAHDWQ_WQX-BLMMOAB210407-4955780-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955780-0407-4-C/results/933811738/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8790","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","15:15:00","MST","2021-05-17 22:15:00",NA,"0.103",103,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811747","UTAHDWQ_WQX-BLMMOAB210517-4955780-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955780-0517-4-C/results/933811747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5518","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","15:15:00","MST","2021-05-17 22:15:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811750","UTAHDWQ_WQX-BLMMOAB210517-4955780-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955780-0517-4-C/results/933811750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5519","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","15:15:00","MST","2021-04-07 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811779","UTAHDWQ_WQX-BLMMOAB210407-4955790-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955790-0407-4-C/results/933811779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5520","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","15:15:00","MST","2021-04-07 22:15:00",NA,"0.104",104,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811782","UTAHDWQ_WQX-BLMMOAB210407-4955790-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955790-0407-4-C/results/933811782/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5521","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","15:45:00","MST","2021-05-17 22:45:00",NA,"0.144",144,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811791","UTAHDWQ_WQX-BLMMOAB210517-4955790-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955790-0517-4-C/results/933811791/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5522","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","15:45:00","MST","2021-05-17 22:45:00",NA,"0.156",156,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811794","UTAHDWQ_WQX-BLMMOAB210517-4955790-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955790-0517-4-C/results/933811794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5523","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","15:15:00","MST","2021-04-07 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811823","UTAHDWQ_WQX-BLMMOAB210407-4955791-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955791-0407-4-C/results/933811823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5524","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","15:15:00","MST","2021-04-07 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811826","UTAHDWQ_WQX-BLMMOAB210407-4955791-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955791-0407-4-C/results/933811826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5525","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","15:45:00","MST","2021-05-17 22:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811835","UTAHDWQ_WQX-BLMMOAB210517-4955791-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955791-0517-4-C/results/933811835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5526","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","15:45:00","MST","2021-05-17 22:45:00",NA,"0.135",135,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811838","UTAHDWQ_WQX-BLMMOAB210517-4955791-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955791-0517-4-C/results/933811838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5527","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","14:00:00","MST","2021-04-07 21:00:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811867","UTAHDWQ_WQX-BLMMOAB210407-4955810-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955810-0407-4-C/results/933811867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5528","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","14:00:00","MST","2021-04-07 21:00:00",NA,"0.132",132,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811870","UTAHDWQ_WQX-BLMMOAB210407-4955810-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955810-0407-4-C/results/933811870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5529","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","14:45:00","MST","2021-05-17 21:45:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811879","UTAHDWQ_WQX-BLMMOAB210517-4955810-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955810-0517-4-C/results/933811879/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5530","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","14:45:00","MST","2021-05-17 21:45:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811882","UTAHDWQ_WQX-BLMMOAB210517-4955810-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955810-0517-4-C/results/933811882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5531","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-07","13:30:00","MST","2021-04-07 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811911","UTAHDWQ_WQX-BLMMOAB210407-4955815-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955815-0407-4-C/results/933811911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5532","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-07","13:30:00","MST","2021-04-07 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811914","UTAHDWQ_WQX-BLMMOAB210407-4955815-0407-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955815-0407-4-C/results/933811914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5533","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","14:00:00","MST","2021-05-17 21:00:00",NA,"0.1",100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811923","UTAHDWQ_WQX-BLMMOAB210517-4955815-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955815-0517-4-C/results/933811923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5534","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","14:00:00","MST","2021-05-17 21:00:00",NA,"0.127",127,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811926","UTAHDWQ_WQX-BLMMOAB210517-4955815-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955815-0517-4-C/results/933811926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5535","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-23","14:56:00","MST","2021-04-23 21:56:00",NA,"0.653",653,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811956","UTAHDWQ_WQX-NPSCANR210423-4956290-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4956290-0423-4-C/results/933811956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5536","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-23","14:56:00","MST","2021-04-23 21:56:00",NA,"0.683",683,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811959","UTAHDWQ_WQX-NPSCANR210423-4956290-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4956290-0423-4-C/results/933811959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5537","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-19","17:05:00","MST","2021-05-20 00:05:00",NA,"0.708",708,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811989","UTAHDWQ_WQX-NPSCANR210519-4956290-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4956290-0519-4-C/results/933811989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5538","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-19","17:05:00","MST","2021-05-20 00:05:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933811992","UTAHDWQ_WQX-NPSCANR210519-4956290-0519-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4956290-0519-4-C/results/933811992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5539","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","15:45:00","MST","2021-06-21 22:45:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812021","UTAHDWQ_WQX-NPSCANR210619-4956290-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4956290-0621-4-C/results/933812021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5540","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","15:45:00","MST","2021-06-21 22:45:00",NA,"0.684",684,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812024","UTAHDWQ_WQX-NPSCANR210619-4956290-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4956290-0621-4-C/results/933812024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5541","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-15","14:10:00","MST","2021-07-15 21:10:00",NA,"0.761",761,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812054","UTAHDWQ_WQX-NPSCANR210715-4956290-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4956290-0715-4-C/results/933812054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5542","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-15","14:10:00","MST","2021-07-15 21:10:00",NA,"0.779",779,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812057","UTAHDWQ_WQX-NPSCANR210715-4956290-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4956290-0715-4-C/results/933812057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5543","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-26","14:11:00","MST","2021-08-26 21:11:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812087","UTAHDWQ_WQX-NPSCANR210826-4956290-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4956290-0826-4-C/results/933812087/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5544","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","14:11:00","MST","2021-08-26 21:11:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812090","UTAHDWQ_WQX-NPSCANR210826-4956290-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4956290-0826-4-C/results/933812090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5545","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-23","15:02:00","MST","2021-04-23 22:02:00",NA,"0.686",686,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812153","UTAHDWQ_WQX-NPSCANR210423-4956291-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4956291-0423-4-C/results/933812153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5546","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-23","15:02:00","MST","2021-04-23 22:02:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812156","UTAHDWQ_WQX-NPSCANR210423-4956291-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4956291-0423-4-C/results/933812156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5547","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","15:45:00","MST","2021-06-21 22:45:00",NA,"0.464",464,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812186","UTAHDWQ_WQX-NPSCANR210619-4956291-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4956291-0621-4-C/results/933812186/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5548","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","15:45:00","MST","2021-06-21 22:45:00",NA,"0.488",488,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812189","UTAHDWQ_WQX-NPSCANR210619-4956291-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4956291-0621-4-C/results/933812189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5549","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-26","14:14:00","MST","2021-08-26 21:14:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812219","UTAHDWQ_WQX-NPSCANR210826-4956291-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4956291-0826-4-C/results/933812219/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5550","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","14:14:00","MST","2021-08-26 21:14:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812222","UTAHDWQ_WQX-NPSCANR210826-4956291-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4956291-0826-4-C/results/933812222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5551","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-14","15:00:00","MST","2021-04-14 22:00:00",NA,"0.11",110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812251","UTAHDWQ_WQX-BLMMOAB210407-4958750-0414-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","FISHER CK AT MOUTH","River/Stream",NA,"38.7433200000",38.74332,"-109.1351100000",-109.13511,"OK","14030004","UTAHDWQ_WQX-4958750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.7433200000","-109.1351100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4958750-0414-4-C/results/933812251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8825","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-14","15:00:00","MST","2021-04-14 22:00:00",NA,"0.111",111,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812254","UTAHDWQ_WQX-BLMMOAB210407-4958750-0414-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","FISHER CK AT MOUTH","River/Stream",NA,"38.7433200000",38.74332,"-109.1351100000",-109.13511,"OK","14030004","UTAHDWQ_WQX-4958750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.7433200000","-109.1351100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4958750-0414-4-C/results/933812254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5553","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-28","10:10:00","MST","2021-04-28 17:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812289","UTAHDWQ_WQX-JRBBH210428-4990006-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4990006-0428-4-C/results/933812289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5554","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","10:10:00","MST","2021-04-28 17:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812292","UTAHDWQ_WQX-JRBBH210428-4990006-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4990006-0428-4-C/results/933812292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8828","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-26","10:00:00","MST","2021-05-26 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812319","UTAHDWQ_WQX-JRBBH210526-4990006-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4990006-0526-4-C/results/933812319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5556","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:00:00","MST","2021-05-26 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812322","UTAHDWQ_WQX-JRBBH210526-4990006-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4990006-0526-4-C/results/933812322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5557","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","10:30:00","MST","2021-06-28 17:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812349","UTAHDWQ_WQX-JRBBH210628-4990006-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4990006-0628-4-C/results/933812349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5558","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","10:30:00","MST","2021-06-28 17:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812352","UTAHDWQ_WQX-JRBBH210628-4990006-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4990006-0628-4-C/results/933812352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5559","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","11:30:00","MST","2021-07-26 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812379","UTAHDWQ_WQX-JRBBH210726-4990006-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4990006-0726-4-C/results/933812379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5560","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","11:30:00","MST","2021-07-26 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812382","UTAHDWQ_WQX-JRBBH210726-4990006-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4990006-0726-4-C/results/933812382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5561","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-26","09:25:00","MST","2021-08-26 16:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812409","UTAHDWQ_WQX-JRBBH210826-4990006-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4990006-0826-4-C/results/933812409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5562","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","09:25:00","MST","2021-08-26 16:25:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812412","UTAHDWQ_WQX-JRBBH210826-4990006-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4990006-0826-4-C/results/933812412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5563","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","11:10:00","MST","2021-04-20 18:10:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812441","UTAHDWQ_WQX-DC210420-4990360-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990360-0420-4-C/results/933812441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5564","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","11:10:00","MST","2021-04-20 18:10:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812445","UTAHDWQ_WQX-DC210420-4990360-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990360-0420-4-C/results/933812445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5565","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","11:20:00","MST","2021-05-18 18:20:00",NA,"0.3",300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812469","UTAHDWQ_WQX-DC210518-4990360-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990360-0518-4-C/results/933812469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5566","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","11:20:00","MST","2021-05-18 18:20:00",NA,"0.239",239,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812473","UTAHDWQ_WQX-DC210518-4990360-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","DUEL CK @ 850 East crossing","River/Stream",NA,"40.9163900000",40.91639,"-111.8658100000",-111.86581,"OK","16020102","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9163900000","-111.8658100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990360-0518-4-C/results/933812473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5567","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","09:10:00","MST","2021-04-20 16:10:00",NA,"0.456",456,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812482","UTAHDWQ_WQX-DC210420-4990373-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990373-0420-4-C/results/933812482/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8841","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","09:10:00","MST","2021-04-20 16:10:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812486","UTAHDWQ_WQX-DC210420-4990373-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990373-0420-4-C/results/933812486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5569","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","09:10:00","MST","2021-05-18 16:10:00",NA,"0.517",517,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812510","UTAHDWQ_WQX-DC210518-4990373-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990373-0518-4-C/results/933812510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5570","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","09:10:00","MST","2021-05-18 16:10:00",NA,"0.477",477,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812514","UTAHDWQ_WQX-DC210518-4990373-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990373-0518-4-C/results/933812514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8844","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","09:30:00","MST","2021-06-22 16:30:00",NA,"0.64",640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812523","UTAHDWQ_WQX-DC210622-4990373-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990373-0622-4-C/results/933812523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5572","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","09:30:00","MST","2021-06-22 16:30:00",NA,"0.604",604,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812527","UTAHDWQ_WQX-DC210622-4990373-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990373-0622-4-C/results/933812527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5573","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","10:00:00","MST","2021-07-27 17:00:00",NA,"0.882",882,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812552","UTAHDWQ_WQX-DC210727-4990373-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990373-0727-4-C/results/933812552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5574","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","10:00:00","MST","2021-07-27 17:00:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812556","UTAHDWQ_WQX-DC210727-4990373-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990373-0727-4-C/results/933812556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5575","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","13:00:00","MST","2021-08-17 20:00:00",NA,"0.993",993,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812565","UTAHDWQ_WQX-DC210817-4990373-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990373-0817-4-C/results/933812565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5576","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","13:00:00","MST","2021-08-17 20:00:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812569","UTAHDWQ_WQX-DC210817-4990373-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ 900 W","River/Stream",NA,"40.9257900000",40.92579,"-111.9002200000",-111.90022,"OK","16020102","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9257900000","-111.9002200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990373-0817-4-C/results/933812569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5577","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","11:20:00","MST","2021-04-20 18:20:00",NA,"0.3",300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812593","UTAHDWQ_WQX-DC210420-4990376-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990376-0420-4-C/results/933812593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5578","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","11:20:00","MST","2021-04-20 18:20:00",NA,"0.317",317,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812597","UTAHDWQ_WQX-DC210420-4990376-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990376-0420-4-C/results/933812597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5579","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","11:30:00","MST","2021-05-18 18:30:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812621","UTAHDWQ_WQX-DC210518-4990376-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990376-0518-4-C/results/933812621/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5580","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","11:30:00","MST","2021-05-18 18:30:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812625","UTAHDWQ_WQX-DC210518-4990376-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990376-0518-4-C/results/933812625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5581","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","12:20:00","MST","2021-06-22 19:20:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812634","UTAHDWQ_WQX-DC210622-4990376-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990376-0622-4-C/results/933812634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5582","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","12:20:00","MST","2021-06-22 19:20:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812638","UTAHDWQ_WQX-DC210622-4990376-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990376-0622-4-C/results/933812638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5583","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","13:00:00","MST","2021-07-27 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812663","UTAHDWQ_WQX-DC210727-4990376-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990376-0727-4-C/results/933812663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5584","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","13:00:00","MST","2021-07-27 20:00:00",NA,"0.143",143,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812667","UTAHDWQ_WQX-DC210727-4990376-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990376-0727-4-C/results/933812667/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5585","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","12:40:00","MST","2021-08-17 19:40:00",NA,"0.087",87,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812676","UTAHDWQ_WQX-DC210817-4990376-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990376-0817-4-C/results/933812676/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5586","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","12:40:00","MST","2021-08-17 19:40:00",NA,"0.139",139,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812680","UTAHDWQ_WQX-DC210817-4990376-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"40.9232400000",40.92324,"-111.8648600000",-111.86486,"OK","16020102","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9232400000","-111.8648600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990376-0817-4-C/results/933812680/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5587","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","08:00:00","MST","2021-04-20 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812704","UTAHDWQ_WQX-DC210420-4990555-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990555-0420-4-C/results/933812704/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5588","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","08:00:00","MST","2021-04-20 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812708","UTAHDWQ_WQX-DC210420-4990555-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990555-0420-4-C/results/933812708/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5589","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","08:00:00","MST","2021-05-18 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812732","UTAHDWQ_WQX-DC210518-4990555-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990555-0518-4-C/results/933812732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8863","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","08:00:00","MST","2021-05-18 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812736","UTAHDWQ_WQX-DC210518-4990555-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990555-0518-4-C/results/933812736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5591","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","08:45:00","MST","2021-06-22 15:45:00",NA,"0.116",116,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812745","UTAHDWQ_WQX-DC210622-4990555-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990555-0622-4-C/results/933812745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5592","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","08:45:00","MST","2021-06-22 15:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812749","UTAHDWQ_WQX-DC210622-4990555-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990555-0622-4-C/results/933812749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8866","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","09:15:00","MST","2021-07-27 16:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812774","UTAHDWQ_WQX-DC210727-4990555-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990555-0727-4-C/results/933812774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5594","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","09:15:00","MST","2021-07-27 16:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812778","UTAHDWQ_WQX-DC210727-4990555-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990555-0727-4-C/results/933812778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5595","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","08:00:00","MST","2021-08-17 15:00:00",NA,"0.104",104,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812787","UTAHDWQ_WQX-DC210817-4990555-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990555-0817-4-C/results/933812787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5596","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","08:00:00","MST","2021-08-17 15:00:00",NA,"0.096",96,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812791","UTAHDWQ_WQX-DC210817-4990555-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990555-0817-4-C/results/933812791/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5597","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","11:00:00","MST","2021-04-20 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812815","UTAHDWQ_WQX-DC210420-4990620-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990620-0420-4-C/results/933812815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5598","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","11:00:00","MST","2021-04-20 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812819","UTAHDWQ_WQX-DC210420-4990620-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990620-0420-4-C/results/933812819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5599","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","11:05:00","MST","2021-05-18 18:05:00",NA,"0.143",143,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812843","UTAHDWQ_WQX-DC210518-4990620-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990620-0518-4-C/results/933812843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5600","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","11:05:00","MST","2021-05-18 18:05:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812847","UTAHDWQ_WQX-DC210518-4990620-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990620-0518-4-C/results/933812847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5601","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","12:20:00","MST","2021-08-17 19:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812856","UTAHDWQ_WQX-DC210817-4990620-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990620-0817-4-C/results/933812856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5602","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","12:20:00","MST","2021-08-17 19:20:00",NA,"0.187",187,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812860","UTAHDWQ_WQX-DC210817-4990620-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AB 1300 EAST","River/Stream",NA,"40.8930800000",40.89308,"-111.8527100000",-111.85271,"OK","16020102","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8930800000","-111.8527100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990620-0817-4-C/results/933812860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5603","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","09:45:00","MST","2021-04-20 16:45:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812884","UTAHDWQ_WQX-DC210420-4990640-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990640-0420-4-C/results/933812884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5604","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","09:45:00","MST","2021-04-20 16:45:00",NA,"0.429",429,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812888","UTAHDWQ_WQX-DC210420-4990640-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990640-0420-4-C/results/933812888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5605","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","09:50:00","MST","2021-05-18 16:50:00",NA,"0.748",748,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812912","UTAHDWQ_WQX-DC210518-4990640-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990640-0518-4-C/results/933812912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8879","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","09:50:00","MST","2021-05-18 16:50:00",NA,"0.573",573,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812916","UTAHDWQ_WQX-DC210518-4990640-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990640-0518-4-C/results/933812916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5607","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","10:00:00","MST","2021-06-22 17:00:00",NA,"0.637",637,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812925","UTAHDWQ_WQX-DC210622-4990640-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990640-0622-4-C/results/933812925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5608","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","10:00:00","MST","2021-06-22 17:00:00",NA,"0.664",664,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812929","UTAHDWQ_WQX-DC210622-4990640-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990640-0622-4-C/results/933812929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8882","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","11:25:00","MST","2021-07-27 18:25:00",NA,"0.675",675,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812954","UTAHDWQ_WQX-DC210727-4990640-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990640-0727-4-C/results/933812954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5610","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","11:25:00","MST","2021-07-27 18:25:00",NA,"0.66",660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812958","UTAHDWQ_WQX-DC210727-4990640-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990640-0727-4-C/results/933812958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5611","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","10:45:00","MST","2021-08-17 17:45:00",NA,"0.827",827,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812967","UTAHDWQ_WQX-DC210817-4990640-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990640-0817-4-C/results/933812967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5612","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","10:45:00","MST","2021-08-17 17:45:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812971","UTAHDWQ_WQX-DC210817-4990640-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"40.9093900000",40.90939,"-111.9110500000",-111.91105,"OK","16020102","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9093900000","-111.9110500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990640-0817-4-C/results/933812971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5613","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","10:50:00","MST","2021-04-20 17:50:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812995","UTAHDWQ_WQX-DC210420-4990650-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990650-0420-4-C/results/933812995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5614","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","10:50:00","MST","2021-04-20 17:50:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933812999","UTAHDWQ_WQX-DC210420-4990650-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990650-0420-4-C/results/933812999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5615","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","11:00:00","MST","2021-05-18 18:00:00",NA,"0.428",428,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813023","UTAHDWQ_WQX-DC210518-4990650-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990650-0518-4-C/results/933813023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5616","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","11:00:00","MST","2021-05-18 18:00:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813027","UTAHDWQ_WQX-DC210518-4990650-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990650-0518-4-C/results/933813027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5617","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","11:40:00","MST","2021-06-22 18:40:00",NA,"0.331",331,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813036","UTAHDWQ_WQX-DC210622-4990650-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990650-0622-4-C/results/933813036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5618","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","11:40:00","MST","2021-06-22 18:40:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813040","UTAHDWQ_WQX-DC210622-4990650-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990650-0622-4-C/results/933813040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5619","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","12:45:00","MST","2021-07-27 19:45:00",NA,"0.111",111,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813065","UTAHDWQ_WQX-DC210727-4990650-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990650-0727-4-C/results/933813065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5620","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","12:45:00","MST","2021-07-27 19:45:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813069","UTAHDWQ_WQX-DC210727-4990650-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990650-0727-4-C/results/933813069/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5621","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","12:15:00","MST","2021-08-17 19:15:00",NA,"0.133",133,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813078","UTAHDWQ_WQX-DC210817-4990650-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990650-0817-4-C/results/933813078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5622","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","12:15:00","MST","2021-08-17 19:15:00",NA,"0.128",128,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813082","UTAHDWQ_WQX-DC210817-4990650-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"40.8808900000",40.88089,"-111.8428200000",-111.84282,"OK","16020102","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8808900000","-111.8428200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990650-0817-4-C/results/933813082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5623","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","09:25:00","MST","2021-04-20 16:25:00",NA,"0.139",139,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813106","UTAHDWQ_WQX-DC210420-4990680-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990680-0420-4-C/results/933813106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5624","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","09:25:00","MST","2021-04-20 16:25:00",NA,"0.151",151,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813110","UTAHDWQ_WQX-DC210420-4990680-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990680-0420-4-C/results/933813110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5625","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","09:30:00","MST","2021-05-18 16:30:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813134","UTAHDWQ_WQX-DC210518-4990680-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990680-0518-4-C/results/933813134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5626","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","09:30:00","MST","2021-05-18 16:30:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813138","UTAHDWQ_WQX-DC210518-4990680-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990680-0518-4-C/results/933813138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5627","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","10:00:00","MST","2021-06-22 17:00:00",NA,"0.666",666,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813147","UTAHDWQ_WQX-DC210622-4990680-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990680-0622-4-C/results/933813147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8901","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","10:00:00","MST","2021-06-22 17:00:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813151","UTAHDWQ_WQX-DC210622-4990680-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990680-0622-4-C/results/933813151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5629","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","11:05:00","MST","2021-07-27 18:05:00",NA,"0.912",912,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813176","UTAHDWQ_WQX-DC210727-4990680-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990680-0727-4-C/results/933813176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5630","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","11:05:00","MST","2021-07-27 18:05:00",NA,"0.771",771,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813180","UTAHDWQ_WQX-DC210727-4990680-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990680-0727-4-C/results/933813180/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8904","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","11:00:00","MST","2021-08-17 18:00:00",NA,"0.693",693,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813189","UTAHDWQ_WQX-DC210817-4990680-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990680-0817-4-C/results/933813189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5632","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","11:00:00","MST","2021-08-17 18:00:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813193","UTAHDWQ_WQX-DC210817-4990680-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK AT 1100 WEST","River/Stream",NA,"40.8898200000",40.88982,"-111.9126400000",-111.91264,"OK","16020102","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8898200000","-111.9126400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990680-0817-4-C/results/933813193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5633","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","10:35:00","MST","2021-04-20 17:35:00",NA,"0.107",107,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813217","UTAHDWQ_WQX-DC210420-4990700-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990700-0420-4-C/results/933813217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5634","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","10:35:00","MST","2021-04-20 17:35:00",NA,"0.128",128,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813221","UTAHDWQ_WQX-DC210420-4990700-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990700-0420-4-C/results/933813221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5635","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","10:40:00","MST","2021-05-18 17:40:00",NA,"0.197",197,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813245","UTAHDWQ_WQX-DC210518-4990700-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990700-0518-4-C/results/933813245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8909","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","10:40:00","MST","2021-05-18 17:40:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813249","UTAHDWQ_WQX-DC210518-4990700-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990700-0518-4-C/results/933813249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5637","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","11:20:00","MST","2021-06-22 18:20:00",NA,"0.187",187,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813258","UTAHDWQ_WQX-DC210622-4990700-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990700-0622-4-C/results/933813258/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5638","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","11:20:00","MST","2021-06-22 18:20:00",NA,"0.17",170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813262","UTAHDWQ_WQX-DC210622-4990700-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990700-0622-4-C/results/933813262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8912","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","12:25:00","MST","2021-07-27 19:25:00",NA,"0.097",97,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813287","UTAHDWQ_WQX-DC210727-4990700-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990700-0727-4-C/results/933813287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5640","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","12:25:00","MST","2021-07-27 19:25:00",NA,"0.143",143,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813291","UTAHDWQ_WQX-DC210727-4990700-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990700-0727-4-C/results/933813291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5641","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","11:50:00","MST","2021-08-17 18:50:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813300","UTAHDWQ_WQX-DC210817-4990700-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990700-0817-4-C/results/933813300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5642","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","11:50:00","MST","2021-08-17 18:50:00",NA,"0.1",100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813304","UTAHDWQ_WQX-DC210817-4990700-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","MILL CK @ Mueller Park Entrance","River/Stream",NA,"40.8680000000",40.868,"-111.8457700000",-111.84577,"OK","16020102","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8680000000","-111.8457700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990700-0817-4-C/results/933813304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5643","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","10:00:00","MST","2021-04-20 17:00:00",NA,"2.72",2720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813328","UTAHDWQ_WQX-DC210420-4990987-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990987-0420-4-C/results/933813328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5644","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","10:00:00","MST","2021-04-20 17:00:00",NA,"2.66",2660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813332","UTAHDWQ_WQX-DC210420-4990987-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990987-0420-4-C/results/933813332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5645","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","10:15:00","MST","2021-05-18 17:15:00",NA,"2.08",2080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813356","UTAHDWQ_WQX-DC210518-4990987-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990987-0518-4-C/results/933813356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5646","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","10:15:00","MST","2021-05-18 17:15:00",NA,"2.09",2090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813360","UTAHDWQ_WQX-DC210518-4990987-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990987-0518-4-C/results/933813360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5647","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","10:40:00","MST","2021-06-22 17:40:00",NA,"2.13",2130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813369","UTAHDWQ_WQX-DC210622-4990987-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990987-0622-4-C/results/933813369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5648","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","10:40:00","MST","2021-06-22 17:40:00",NA,"2.36",2360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813373","UTAHDWQ_WQX-DC210622-4990987-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990987-0622-4-C/results/933813373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5649","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","11:40:00","MST","2021-07-27 18:40:00",NA,"1.87",1870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813398","UTAHDWQ_WQX-DC210727-4990987-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990987-0727-4-C/results/933813398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5650","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","11:40:00","MST","2021-07-27 18:40:00",NA,"1.93",1930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813402","UTAHDWQ_WQX-DC210727-4990987-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990987-0727-4-C/results/933813402/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5651","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","10:20:00","MST","2021-08-17 17:20:00",NA,"3.12",3120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813411","UTAHDWQ_WQX-DC210817-4990987-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990987-0817-4-C/results/933813411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5652","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","10:20:00","MST","2021-08-17 17:20:00",NA,"1.92",1920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813415","UTAHDWQ_WQX-DC210817-4990987-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"40.8492700000",40.84927,"-111.9543300000",-111.95433,"OK","16020204","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8492700000","-111.9543300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990987-0817-4-C/results/933813415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5653","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","10:15:00","MST","2021-04-20 17:15:00",NA,"0.121",121,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813439","UTAHDWQ_WQX-DC210420-4990996-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990996-0420-4-C/results/933813439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5654","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","10:15:00","MST","2021-04-20 17:15:00",NA,"0.127",127,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813443","UTAHDWQ_WQX-DC210420-4990996-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990996-0420-4-C/results/933813443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5655","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","10:20:00","MST","2021-05-18 17:20:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813467","UTAHDWQ_WQX-DC210518-4990996-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990996-0518-4-C/results/933813467/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5656","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","10:20:00","MST","2021-05-18 17:20:00",NA,"0.203",203,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813471","UTAHDWQ_WQX-DC210518-4990996-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990996-0518-4-C/results/933813471/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5657","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","11:00:00","MST","2021-06-22 18:00:00",NA,"0.374",374,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813480","UTAHDWQ_WQX-DC210622-4990996-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990996-0622-4-C/results/933813480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5658","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","11:00:00","MST","2021-06-22 18:00:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813484","UTAHDWQ_WQX-DC210622-4990996-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990996-0622-4-C/results/933813484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5659","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","11:05:00","MST","2021-06-22 18:05:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813504","UTAHDWQ_WQX-DC210622-4990997-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990997-0622-4-C/results/933813504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5660","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","11:05:00","MST","2021-06-22 18:05:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813513","UTAHDWQ_WQX-DC210622-4990997-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990997-0622-4-C/results/933813513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5661","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","12:05:00","MST","2021-07-27 19:05:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813538","UTAHDWQ_WQX-DC210727-4990996-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990996-0727-4-C/results/933813538/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5662","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","12:05:00","MST","2021-07-27 19:05:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813542","UTAHDWQ_WQX-DC210727-4990996-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990996-0727-4-C/results/933813542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5663","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","11:20:00","MST","2021-08-17 18:20:00",NA,"0.222",222,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813551","UTAHDWQ_WQX-DC210817-4990996-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990996-0817-4-C/results/933813551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5664","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","11:20:00","MST","2021-08-17 18:20:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813555","UTAHDWQ_WQX-DC210817-4990996-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990996-0817-4-C/results/933813555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5665","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-20","10:20:00","MST","2021-04-20 17:20:00",NA,"0.094",94,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813579","UTAHDWQ_WQX-DC210420-4990997-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990997-0420-4-C/results/933813579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5666","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-20","10:20:00","MST","2021-04-20 17:20:00",NA,"0.124",124,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813583","UTAHDWQ_WQX-DC210420-4990997-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990997-0420-4-C/results/933813583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5667","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-18","10:25:00","MST","2021-05-18 17:25:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813607","UTAHDWQ_WQX-DC210518-4990997-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990997-0518-4-C/results/933813607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5668","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-18","10:25:00","MST","2021-05-18 17:25:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813611","UTAHDWQ_WQX-DC210518-4990997-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990997-0518-4-C/results/933813611/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5669","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","12:10:00","MST","2021-07-27 19:10:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813620","UTAHDWQ_WQX-DC210727-4990997-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990997-0727-4-C/results/933813620/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5670","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","12:10:00","MST","2021-07-27 19:10:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813624","UTAHDWQ_WQX-DC210727-4990997-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990997-0727-4-C/results/933813624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5671","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","11:25:00","MST","2021-08-17 18:25:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813633","UTAHDWQ_WQX-DC210817-4990997-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990997-0817-4-C/results/933813633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5672","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","11:25:00","MST","2021-08-17 18:25:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813637","UTAHDWQ_WQX-DC210817-4990997-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","40.8462900000",40.84629,"-111.8533600000",-111.85336,"OK","16020204","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.8462900000","-111.8533600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990997-0817-4-C/results/933813637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5673","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-28","10:00:00","MST","2021-04-28 17:00:00",NA,"4.22",4220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813659","UTAHDWQ_WQX-JRBBH210428-4994175-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994175-0428-4-C/results/933813659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8947","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","10:00:00","MST","2021-04-28 17:00:00",NA,"4.13",4130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813662","UTAHDWQ_WQX-JRBBH210428-4994175-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994175-0428-4-C/results/933813662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5675","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-26","09:00:00","MST","2021-05-26 16:00:00",NA,"2.96",2960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813689","UTAHDWQ_WQX-JRBBH210526-4994175-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994175-0526-4-C/results/933813689/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5676","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","09:00:00","MST","2021-05-26 16:00:00",NA,"3.02",3020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813692","UTAHDWQ_WQX-JRBBH210526-4994175-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994175-0526-4-C/results/933813692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8950","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","10:00:00","MST","2021-06-28 17:00:00",NA,"3.35",3350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813719","UTAHDWQ_WQX-JRBBH210628-4994175-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4994175-0628-4-C/results/933813719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5678","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","10:00:00","MST","2021-06-28 17:00:00",NA,"3.62",3620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813722","UTAHDWQ_WQX-JRBBH210628-4994175-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4994175-0628-4-C/results/933813722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5679","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","11:00:00","MST","2021-07-26 18:00:00",NA,"3.08",3080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813749","UTAHDWQ_WQX-JRBBH210726-4994175-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994175-0726-4-C/results/933813749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5680","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","11:00:00","MST","2021-07-26 18:00:00",NA,"3.49",3490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813752","UTAHDWQ_WQX-JRBBH210726-4994175-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994175-0726-4-C/results/933813752/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5681","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-26","09:05:00","MST","2021-08-26 16:05:00",NA,"3.02",3020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813779","UTAHDWQ_WQX-JRBBH210826-4994175-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4994175-0826-4-C/results/933813779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5682","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","09:05:00","MST","2021-08-26 16:05:00",NA,"3.25",3250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813782","UTAHDWQ_WQX-JRBBH210826-4994175-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4994175-0826-4-C/results/933813782/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5683","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","14:35:00","MST","2021-09-22 21:35:00",NA,"2.66",2660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813809","UTAHDWQ_WQX-JRBBH210922-4994175-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994175-0922-4-C/results/933813809/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5684","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","14:35:00","MST","2021-09-22 21:35:00",NA,"3.23",3230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813812","UTAHDWQ_WQX-JRBBH210922-4994175-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994175-0922-4-C/results/933813812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5685","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-28","09:10:00","MST","2021-04-28 16:10:00",NA,"4.52",4520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813839","UTAHDWQ_WQX-JRBBH210428-4994270-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994270-0428-4-C/results/933813839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5686","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","09:10:00","MST","2021-04-28 16:10:00",NA,"4.65",4650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813842","UTAHDWQ_WQX-JRBBH210428-4994270-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994270-0428-4-C/results/933813842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5687","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-26","08:30:00","MST","2021-05-26 15:30:00",NA,"3.19",3190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813869","UTAHDWQ_WQX-JRBBH210526-4994270-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994270-0526-4-C/results/933813869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5688","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","08:30:00","MST","2021-05-26 15:30:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813872","UTAHDWQ_WQX-JRBBH210526-4994270-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994270-0526-4-C/results/933813872/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5689","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","09:20:00","MST","2021-06-28 16:20:00",NA,"3.84",3840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813899","UTAHDWQ_WQX-JRBBH210628-4994270-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4994270-0628-4-C/results/933813899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5690","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","09:20:00","MST","2021-06-28 16:20:00",NA,"3.79",3790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813902","UTAHDWQ_WQX-JRBBH210628-4994270-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4994270-0628-4-C/results/933813902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5691","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","10:15:00","MST","2021-07-26 17:15:00",NA,"3.77",3770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813929","UTAHDWQ_WQX-JRBBH210726-4994270-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994270-0726-4-C/results/933813929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5692","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","10:15:00","MST","2021-07-26 17:15:00",NA,"3.85",3850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813932","UTAHDWQ_WQX-JRBBH210726-4994270-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994270-0726-4-C/results/933813932/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5693","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-26","08:35:00","MST","2021-08-26 15:35:00",NA,"3.48",3480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813959","UTAHDWQ_WQX-JRBBH210826-4994270-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4994270-0826-4-C/results/933813959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5694","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","08:35:00","MST","2021-08-26 15:35:00",NA,"3.06",3060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813962","UTAHDWQ_WQX-JRBBH210826-4994270-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4994270-0826-4-C/results/933813962/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5695","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","14:05:00","MST","2021-09-22 21:05:00",NA,"3.52",3520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813989","UTAHDWQ_WQX-JRBBH210922-4994270-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994270-0922-4-C/results/933813989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5696","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","14:05:00","MST","2021-09-22 21:05:00",NA,"3.49",3490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933813992","UTAHDWQ_WQX-JRBBH210922-4994270-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994270-0922-4-C/results/933813992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5697","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-28","09:15:00","MST","2021-04-28 16:15:00",NA,"4.74",4740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814019","UTAHDWQ_WQX-JRBBH210428-4994271-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994271-0428-4-C/results/933814019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5698","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-28","09:15:00","MST","2021-04-28 16:15:00",NA,"4.45",4450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814022","UTAHDWQ_WQX-JRBBH210428-4994271-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994271-0428-4-C/results/933814022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5699","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-26","08:40:00","MST","2021-05-26 15:40:00",NA,"3.19",3190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814049","UTAHDWQ_WQX-JRBBH210526-4994271-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994271-0526-4-C/results/933814049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5700","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","08:40:00","MST","2021-05-26 15:40:00",NA,"3.21",3210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814052","UTAHDWQ_WQX-JRBBH210526-4994271-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994271-0526-4-C/results/933814052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5701","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","10:30:00","MST","2021-07-26 17:30:00",NA,"3.5",3500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814079","UTAHDWQ_WQX-JRBBH210726-4994271-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994271-0726-4-C/results/933814079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5702","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","10:30:00","MST","2021-07-26 17:30:00",NA,"3.78",3780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814082","UTAHDWQ_WQX-JRBBH210726-4994271-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994271-0726-4-C/results/933814082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5703","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","14:15:00","MST","2021-09-22 21:15:00",NA,"3.36",3360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814109","UTAHDWQ_WQX-JRBBH210922-4994271-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994271-0922-4-C/results/933814109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5704","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","14:15:00","MST","2021-09-22 21:15:00",NA,"3.51",3510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814112","UTAHDWQ_WQX-JRBBH210922-4994271-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994271-0922-4-C/results/933814112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5705","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","15:45:00","MST","2021-05-10 22:45:00",NA,"0.654",654,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814146","UTAHDWQ_WQX-UTLK210510-4994790-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994790-0510-4-C/results/933814146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5706","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","15:45:00","MST","2021-05-10 22:45:00",NA,"0.738",738,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814151","UTAHDWQ_WQX-UTLK210510-4994790-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994790-0510-4-C/results/933814151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5707","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","15:45:00","MST","2021-06-15 22:45:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814165","UTAHDWQ_WQX-UTLK210614-4994790-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4994790-0615-4-C/results/933814165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5708","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","15:45:00","MST","2021-06-15 22:45:00",NA,"0.704",704,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814170","UTAHDWQ_WQX-UTLK210614-4994790-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4994790-0615-4-C/results/933814170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5709","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","16:40:00","MST","2021-07-14 23:40:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814184","UTAHDWQ_WQX-UTLK210712-4994790-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994790-0714-4-C/results/933814184/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5710","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","16:40:00","MST","2021-07-14 23:40:00",NA,"0.968",968,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814189","UTAHDWQ_WQX-UTLK210712-4994790-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994790-0714-4-C/results/933814189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5711","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","15:20:00","MST","2021-08-18 22:20:00",NA,"0.863",863,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814203","UTAHDWQ_WQX-UTLK210816-4994790-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994790-0818-4-C/results/933814203/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5712","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","15:20:00","MST","2021-08-18 22:20:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814208","UTAHDWQ_WQX-UTLK210816-4994790-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994790-0818-4-C/results/933814208/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5713","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","14:00:00","MST","2021-09-14 21:00:00",NA,"0.98",980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814222","UTAHDWQ_WQX-UTLK210913-4994790-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994790-0914-4-C/results/933814222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5714","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","14:00:00","MST","2021-09-14 21:00:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814227","UTAHDWQ_WQX-UTLK210913-4994790-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994790-0914-4-C/results/933814227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5715","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","16:00:00","MST","2021-05-10 23:00:00",NA,"0.662",662,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814241","UTAHDWQ_WQX-UTLK210510-4994792-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994792-0510-4-C/results/933814241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5716","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","16:00:00","MST","2021-05-10 23:00:00",NA,"0.67",670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814246","UTAHDWQ_WQX-UTLK210510-4994792-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994792-0510-4-C/results/933814246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5717","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","17:00:00","MST","2021-07-15 00:00:00",NA,"0.804",804,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814260","UTAHDWQ_WQX-UTLK210712-4994792-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994792-0714-4-C/results/933814260/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5718","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","17:00:00","MST","2021-07-15 00:00:00",NA,"0.761",761,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814265","UTAHDWQ_WQX-UTLK210712-4994792-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994792-0714-4-C/results/933814265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5719","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","14:20:00","MST","2021-09-14 21:20:00",NA,"0.985",985,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814279","UTAHDWQ_WQX-UTLK210913-4994792-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994792-0914-4-C/results/933814279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5720","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","14:20:00","MST","2021-09-14 21:20:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814284","UTAHDWQ_WQX-UTLK210913-4994792-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994792-0914-4-C/results/933814284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5721","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","15:00:00","MST","2021-08-18 22:00:00",NA,"0.775",775,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814298","UTAHDWQ_WQX-UTLK210816-4994804-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Creek at 145 N (Saratoga Springs)","River/Stream",NA,"40.3650400000",40.36504,"-111.8839300000",-111.88393,"OK","16020201","UTAHDWQ_WQX-4994804",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3650400000","-111.8839300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994804-0818-4-C/results/933814298/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5722","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","15:00:00","MST","2021-08-18 22:00:00",NA,"0.892",892,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814303","UTAHDWQ_WQX-UTLK210816-4994804-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Creek at 145 N (Saratoga Springs)","River/Stream",NA,"40.3650400000",40.36504,"-111.8839300000",-111.88393,"OK","16020201","UTAHDWQ_WQX-4994804",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3650400000","-111.8839300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994804-0818-4-C/results/933814303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5723","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","16:25:00","MST","2021-04-13 23:25:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814317","UTAHDWQ_WQX-UTLK210412-4994950-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4994950-0413-4-C/results/933814317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5724","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","16:25:00","MST","2021-04-13 23:25:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814322","UTAHDWQ_WQX-UTLK210412-4994950-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4994950-0413-4-C/results/933814322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5725","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","15:20:00","MST","2021-05-10 22:20:00",NA,"1.45",1450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814336","UTAHDWQ_WQX-UTLK210510-4994950-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994950-0510-4-C/results/933814336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5726","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","15:20:00","MST","2021-05-10 22:20:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814341","UTAHDWQ_WQX-UTLK210510-4994950-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994950-0510-4-C/results/933814341/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5727","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","15:30:00","MST","2021-06-15 22:30:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814355","UTAHDWQ_WQX-UTLK210614-4994950-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4994950-0615-4-C/results/933814355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5728","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","15:30:00","MST","2021-06-15 22:30:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814360","UTAHDWQ_WQX-UTLK210614-4994950-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4994950-0615-4-C/results/933814360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5729","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","16:05:00","MST","2021-07-14 23:05:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814374","UTAHDWQ_WQX-UTLK210712-4994950-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994950-0714-4-C/results/933814374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5730","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","16:05:00","MST","2021-07-14 23:05:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814379","UTAHDWQ_WQX-UTLK210712-4994950-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994950-0714-4-C/results/933814379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5731","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","14:40:00","MST","2021-08-18 21:40:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814393","UTAHDWQ_WQX-UTLK210816-4994950-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994950-0818-4-C/results/933814393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5732","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","14:40:00","MST","2021-08-18 21:40:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814398","UTAHDWQ_WQX-UTLK210816-4994950-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994950-0818-4-C/results/933814398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9006","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:45:00","MST","2021-09-14 20:45:00",NA,"2.45",2450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814412","UTAHDWQ_WQX-UTLK210913-4994950-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994950-0914-4-C/results/933814412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5734","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","13:45:00","MST","2021-09-14 20:45:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814417","UTAHDWQ_WQX-UTLK210913-4994950-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994950-0914-4-C/results/933814417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5735","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","11:20:00","MST","2021-04-29 18:20:00",NA,"2.03",2030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814427","UTAHDWQ_WQX-NPSETALTIMP210429-4994970-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210429-4994970-0429-4-C/results/933814427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9009","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","11:20:00","MST","2021-04-29 18:20:00",NA,"2.02",2020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814430","UTAHDWQ_WQX-NPSETALTIMP210429-4994970-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210429-4994970-0429-4-C/results/933814430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5737","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","11:25:00","MST","2021-05-27 18:25:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814459","UTAHDWQ_WQX-NPSETALTIMP210527-4994970-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210527-4994970-0527-4-C/results/933814459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5738","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","11:25:00","MST","2021-05-27 18:25:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814462","UTAHDWQ_WQX-NPSETALTIMP210527-4994970-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210527-4994970-0527-4-C/results/933814462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9012","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-23","10:46:00","MST","2021-06-23 17:46:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814476","UTAHDWQ_WQX-NPSETALTIMP210623-4994970-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210623-4994970-0623-4-C/results/933814476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5740","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-23","10:46:00","MST","2021-06-23 17:46:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814479","UTAHDWQ_WQX-NPSETALTIMP210623-4994970-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210623-4994970-0623-4-C/results/933814479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5741","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-21","11:14:00","MST","2021-07-21 18:14:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814493","UTAHDWQ_WQX-NPSETALTIMP210721-4994970-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210721-4994970-0721-4-C/results/933814493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9015","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-21","11:14:00","MST","2021-07-21 18:14:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814496","UTAHDWQ_WQX-NPSETALTIMP210721-4994970-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210721-4994970-0721-4-C/results/933814496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5743","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-19","11:22:00","MST","2021-08-19 18:22:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814529","UTAHDWQ_WQX-NPSETALTIMP210819-4994970-0819-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210819-4994970-0819-4-C/results/933814529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5744","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-19","11:22:00","MST","2021-08-19 18:22:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814532","UTAHDWQ_WQX-NPSETALTIMP210819-4994970-0819-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210819-4994970-0819-4-C/results/933814532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5745","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","11:20:00","MST","2021-09-21 18:20:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814542","UTAHDWQ_WQX-NPSETALTIMP210921-4994970-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210921-4994970-0921-4-C/results/933814542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5746","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:20:00","MST","2021-09-21 18:20:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814545","UTAHDWQ_WQX-NPSETALTIMP210921-4994970-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210921-4994970-0921-4-C/results/933814545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5747","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","15:40:00","MST","2021-04-13 22:40:00",NA,"10.4",10400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814565","UTAHDWQ_WQX-UTLK210412-4995038-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995038-0413-4-C/results/933814565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5748","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","15:40:00","MST","2021-04-13 22:40:00",NA,"9.68",9680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814570","UTAHDWQ_WQX-UTLK210412-4995038-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995038-0413-4-C/results/933814570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5749","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","15:00:00","MST","2021-05-10 22:00:00",NA,"7.5",7500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814585","UTAHDWQ_WQX-UTLK210510-4995038-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995038-0510-4-C/results/933814585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5750","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","15:00:00","MST","2021-05-10 22:00:00",NA,"7.56",7560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814590","UTAHDWQ_WQX-UTLK210510-4995038-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995038-0510-4-C/results/933814590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5751","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","15:10:00","MST","2021-06-15 22:10:00",NA,"6.27",6270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814607","UTAHDWQ_WQX-UTLK210614-4995038-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995038-0615-4-C/results/933814607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5752","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","15:10:00","MST","2021-06-15 22:10:00",NA,"6.17",6170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814612","UTAHDWQ_WQX-UTLK210614-4995038-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995038-0615-4-C/results/933814612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5753","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","15:35:00","MST","2021-07-14 22:35:00",NA,"9.65",9650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814627","UTAHDWQ_WQX-UTLK210712-4995038-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995038-0714-4-C/results/933814627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5754","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","15:35:00","MST","2021-07-14 22:35:00",NA,"9.6",9600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814632","UTAHDWQ_WQX-UTLK210712-4995038-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995038-0714-4-C/results/933814632/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5755","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","14:00:00","MST","2021-08-18 21:00:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814649","UTAHDWQ_WQX-UTLK210816-4995038-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995038-0818-4-C/results/933814649/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5756","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","14:00:00","MST","2021-08-18 21:00:00",NA,"10.9",10900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814654","UTAHDWQ_WQX-UTLK210816-4995038-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995038-0818-4-C/results/933814654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5757","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","13:30:00","MST","2021-09-14 20:30:00",NA,"7.87",7870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814670","UTAHDWQ_WQX-UTLK210913-4995038-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995038-0914-4-C/results/933814670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5758","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","13:30:00","MST","2021-09-14 20:30:00",NA,"6.91",6910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814675","UTAHDWQ_WQX-UTLK210913-4995038-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995038-0914-4-C/results/933814675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5759","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","15:50:00","MST","2021-04-13 22:50:00",NA,"2.8",2800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814691","UTAHDWQ_WQX-UTLK210412-4995041-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995041-0413-4-C/results/933814691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5760","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","15:50:00","MST","2021-04-13 22:50:00",NA,"2.3",2300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814696","UTAHDWQ_WQX-UTLK210412-4995041-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995041-0413-4-C/results/933814696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5761","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","14:50:00","MST","2021-05-10 21:50:00",NA,"2.48",2480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814711","UTAHDWQ_WQX-UTLK210510-4995041-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995041-0510-4-C/results/933814711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5762","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","14:50:00","MST","2021-05-10 21:50:00",NA,"2.47",2470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814716","UTAHDWQ_WQX-UTLK210510-4995041-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995041-0510-4-C/results/933814716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5763","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","15:25:00","MST","2021-04-13 22:25:00",NA,"3.03",3030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814731","UTAHDWQ_WQX-UTLK210412-4995120-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995120-0413-4-C/results/933814731/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5764","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","15:25:00","MST","2021-04-13 22:25:00",NA,"2.96",2960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814736","UTAHDWQ_WQX-UTLK210412-4995120-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995120-0413-4-C/results/933814736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5765","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","14:30:00","MST","2021-05-10 21:30:00",NA,"2.83",2830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814750","UTAHDWQ_WQX-UTLK210510-4995120-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995120-0510-4-C/results/933814750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5766","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","14:30:00","MST","2021-05-10 21:30:00",NA,"2.81",2810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814755","UTAHDWQ_WQX-UTLK210510-4995120-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995120-0510-4-C/results/933814755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5767","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","14:45:00","MST","2021-06-15 21:45:00",NA,"2.87",2870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814769","UTAHDWQ_WQX-UTLK210614-4995120-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995120-0615-4-C/results/933814769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5768","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","14:45:00","MST","2021-06-15 21:45:00",NA,"2.78",2780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814774","UTAHDWQ_WQX-UTLK210614-4995120-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995120-0615-4-C/results/933814774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5769","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","15:00:00","MST","2021-07-14 22:00:00",NA,"2.68",2680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814788","UTAHDWQ_WQX-UTLK210712-4995120-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995120-0714-4-C/results/933814788/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5770","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","15:00:00","MST","2021-07-14 22:00:00",NA,"2.69",2690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814793","UTAHDWQ_WQX-UTLK210712-4995120-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995120-0714-4-C/results/933814793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5771","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","13:45:00","MST","2021-08-18 20:45:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814807","UTAHDWQ_WQX-UTLK210816-4995120-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995120-0818-4-C/results/933814807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5772","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","13:45:00","MST","2021-08-18 20:45:00",NA,"1.94",1940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814812","UTAHDWQ_WQX-UTLK210816-4995120-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995120-0818-4-C/results/933814812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5773","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","12:50:00","MST","2021-09-14 19:50:00",NA,"3.6",3600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814826","UTAHDWQ_WQX-UTLK210913-4995120-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995120-0914-4-C/results/933814826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5774","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","12:50:00","MST","2021-09-14 19:50:00",NA,"3.15",3150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814831","UTAHDWQ_WQX-UTLK210913-4995120-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995120-0914-4-C/results/933814831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5775","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","14:55:00","MST","2021-04-13 21:55:00",NA,"19.8",19800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814910","UTAHDWQ_WQX-UTLK210412-4995251-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Orem WRF GW OUTFALL-WLA","River/Stream",NA,"40.2768800000",40.27688,"-111.7440100000",-111.74401,"OK","16020201","UTAHDWQ_WQX-4995251",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2768800000","-111.7440100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995251-0413-4-C/results/933814910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5776","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","14:55:00","MST","2021-04-13 21:55:00",NA,"19.6",19600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814915","UTAHDWQ_WQX-UTLK210412-4995251-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Orem WRF GW OUTFALL-WLA","River/Stream",NA,"40.2768800000",40.27688,"-111.7440100000",-111.74401,"OK","16020201","UTAHDWQ_WQX-4995251",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2768800000","-111.7440100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995251-0413-4-C/results/933814915/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5777","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","14:50:00","MST","2021-04-13 21:50:00",NA,"0.656",656,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814973","UTAHDWQ_WQX-UTLK210412-4995252-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995252-0413-4-C/results/933814973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5778","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","14:50:00","MST","2021-04-13 21:50:00",NA,"0.659",659,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814978","UTAHDWQ_WQX-UTLK210412-4995252-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995252-0413-4-C/results/933814978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9052","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","14:10:00","MST","2021-05-10 21:10:00",NA,"0.563",563,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814993","UTAHDWQ_WQX-UTLK210510-4995252-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995252-0510-4-C/results/933814993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5780","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","14:10:00","MST","2021-05-10 21:10:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933814998","UTAHDWQ_WQX-UTLK210510-4995252-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995252-0510-4-C/results/933814998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5781","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","14:20:00","MST","2021-06-15 21:20:00",NA,"0.565",565,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815015","UTAHDWQ_WQX-UTLK210614-4995252-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995252-0615-4-C/results/933815015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9055","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","14:20:00","MST","2021-06-15 21:20:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815020","UTAHDWQ_WQX-UTLK210614-4995252-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995252-0615-4-C/results/933815020/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5783","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","10:00:00","MST","2021-05-10 17:00:00",NA,"0.468",468,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815034","UTAHDWQ_WQX-UTLK210510-4995310-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995310-0510-4-C/results/933815034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5784","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","10:00:00","MST","2021-05-10 17:00:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815039","UTAHDWQ_WQX-UTLK210510-4995310-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995310-0510-4-C/results/933815039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5785","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","10:00:00","MST","2021-06-15 17:00:00",NA,"0.78",780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815053","UTAHDWQ_WQX-UTLK210614-4995310-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995310-0615-4-C/results/933815053/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5786","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:00:00","MST","2021-06-15 17:00:00",NA,"0.688",688,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815058","UTAHDWQ_WQX-UTLK210614-4995310-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995310-0615-4-C/results/933815058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5787","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","10:55:00","MST","2021-04-13 17:55:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815074","UTAHDWQ_WQX-UTLK210412-4995465-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995465-0413-4-C/results/933815074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5788","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","10:55:00","MST","2021-04-13 17:55:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815079","UTAHDWQ_WQX-UTLK210412-4995465-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995465-0413-4-C/results/933815079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5789","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","11:00:00","MST","2021-05-10 18:00:00",NA,"2.03",2030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815094","UTAHDWQ_WQX-UTLK210510-4995465-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995465-0510-4-C/results/933815094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5790","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","11:00:00","MST","2021-05-10 18:00:00",NA,"1.98",1980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815099","UTAHDWQ_WQX-UTLK210510-4995465-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995465-0510-4-C/results/933815099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5791","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","11:45:00","MST","2021-04-13 18:45:00",NA,"0.303",303,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815114","UTAHDWQ_WQX-UTLK210412-4995578-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995578-0413-4-C/results/933815114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5792","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","11:45:00","MST","2021-04-13 18:45:00",NA,"0.221",221,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815119","UTAHDWQ_WQX-UTLK210412-4995578-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995578-0413-4-C/results/933815119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5793","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","11:30:00","MST","2021-05-10 18:30:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815133","UTAHDWQ_WQX-UTLK210510-4995578-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995578-0510-4-C/results/933815133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5794","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","11:30:00","MST","2021-05-10 18:30:00",NA,"0.485",485,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815138","UTAHDWQ_WQX-UTLK210510-4995578-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995578-0510-4-C/results/933815138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5795","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","11:40:00","MST","2021-06-15 18:40:00",NA,"0.696",696,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815152","UTAHDWQ_WQX-UTLK210614-4995578-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995578-0615-4-C/results/933815152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5796","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","11:40:00","MST","2021-06-15 18:40:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815157","UTAHDWQ_WQX-UTLK210614-4995578-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995578-0615-4-C/results/933815157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5797","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","10:45:00","MST","2021-07-14 17:45:00",NA,"0.92",920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815171","UTAHDWQ_WQX-UTLK210712-4995578-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995578-0714-4-C/results/933815171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5798","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","10:45:00","MST","2021-07-14 17:45:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815176","UTAHDWQ_WQX-UTLK210712-4995578-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995578-0714-4-C/results/933815176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5799","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","10:15:00","MST","2021-08-18 17:15:00",NA,"0.979",979,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815190","UTAHDWQ_WQX-UTLK210816-4995578-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995578-0818-4-C/results/933815190/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5800","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","10:15:00","MST","2021-08-18 17:15:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815195","UTAHDWQ_WQX-UTLK210816-4995578-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995578-0818-4-C/results/933815195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5801","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","10:30:00","MST","2021-09-14 17:30:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815209","UTAHDWQ_WQX-UTLK210913-4995578-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995578-0914-4-C/results/933815209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5802","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","10:30:00","MST","2021-09-14 17:30:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815214","UTAHDWQ_WQX-UTLK210913-4995578-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995578-0914-4-C/results/933815214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5803","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","12:05:00","MST","2021-04-13 19:05:00",NA,"11.7",11700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815230","UTAHDWQ_WQX-UTLK210412-4996000-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996000-0413-4-C/results/933815230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5804","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","12:05:00","MST","2021-04-13 19:05:00",NA,"10.3",10300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815235","UTAHDWQ_WQX-UTLK210412-4996000-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996000-0413-4-C/results/933815235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5805","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","11:50:00","MST","2021-05-10 18:50:00",NA,"5.62",5620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815250","UTAHDWQ_WQX-UTLK210510-4996000-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996000-0510-4-C/results/933815250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5806","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","11:50:00","MST","2021-05-10 18:50:00",NA,"5.47",5470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815255","UTAHDWQ_WQX-UTLK210510-4996000-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996000-0510-4-C/results/933815255/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9080","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","11:50:00","MST","2021-06-15 18:50:00",NA,"12",12000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815272","UTAHDWQ_WQX-UTLK210614-4996000-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996000-0615-4-C/results/933815272/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5808","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","11:50:00","MST","2021-06-15 18:50:00",NA,"12",12000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815277","UTAHDWQ_WQX-UTLK210614-4996000-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996000-0615-4-C/results/933815277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5809","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-12","12:50:00","MST","2021-07-12 19:50:00",NA,"3.49",3490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815293","UTAHDWQ_WQX-UTLK210712-4996040-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996040-0712-4-C/results/933815293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9083","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-12","12:50:00","MST","2021-07-12 19:50:00",NA,"3.1",3100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815298","UTAHDWQ_WQX-UTLK210712-4996040-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996040-0712-4-C/results/933815298/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5811","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","11:10:00","MST","2021-08-17 18:10:00",NA,"3.3",3300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815314","UTAHDWQ_WQX-UTLK210816-4996040-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996040-0817-4-C/results/933815314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5812","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","11:10:00","MST","2021-08-17 18:10:00",NA,"3.8",3800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815319","UTAHDWQ_WQX-UTLK210816-4996040-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996040-0817-4-C/results/933815319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5813","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","11:10:00","MST","2021-09-15 18:10:00",NA,"4.55",4550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815335","UTAHDWQ_WQX-UTLK210913-4996040-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996040-0915-4-C/results/933815335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5814","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","11:10:00","MST","2021-09-15 18:10:00",NA,"4.03",4030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815340","UTAHDWQ_WQX-UTLK210913-4996040-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996040-0915-4-C/results/933815340/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5815","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","12:40:00","MST","2021-04-13 19:40:00",NA,"1.72",1720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815356","UTAHDWQ_WQX-UTLK210412-4996044-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996044-0413-4-C/results/933815356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5816","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","12:40:00","MST","2021-04-13 19:40:00",NA,"1.72",1720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815361","UTAHDWQ_WQX-UTLK210412-4996044-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996044-0413-4-C/results/933815361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5817","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","12:20:00","MST","2021-05-10 19:20:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815375","UTAHDWQ_WQX-UTLK210510-4996044-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996044-0510-4-C/results/933815375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5818","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","12:20:00","MST","2021-05-10 19:20:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815380","UTAHDWQ_WQX-UTLK210510-4996044-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996044-0510-4-C/results/933815380/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5819","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","12:00:00","MST","2021-06-15 19:00:00",NA,"2.42",2420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815394","UTAHDWQ_WQX-UTLK210614-4996044-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996044-0615-4-C/results/933815394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5820","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","12:00:00","MST","2021-06-15 19:00:00",NA,"2.33",2330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815399","UTAHDWQ_WQX-UTLK210614-4996044-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996044-0615-4-C/results/933815399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5821","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","11:30:00","MST","2021-07-14 18:30:00",NA,"2.46",2460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815413","UTAHDWQ_WQX-UTLK210712-4996044-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996044-0714-4-C/results/933815413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5822","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","11:30:00","MST","2021-07-14 18:30:00",NA,"2.49",2490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815418","UTAHDWQ_WQX-UTLK210712-4996044-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996044-0714-4-C/results/933815418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5823","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","10:40:00","MST","2021-08-18 17:40:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815432","UTAHDWQ_WQX-UTLK210816-4996044-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996044-0818-4-C/results/933815432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5824","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","10:40:00","MST","2021-08-18 17:40:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815437","UTAHDWQ_WQX-UTLK210816-4996044-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996044-0818-4-C/results/933815437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5825","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","11:25:00","MST","2021-09-14 18:25:00",NA,"2.43",2430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815451","UTAHDWQ_WQX-UTLK210913-4996044-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996044-0914-4-C/results/933815451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5826","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","11:25:00","MST","2021-09-14 18:25:00",NA,"2.02",2020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815456","UTAHDWQ_WQX-UTLK210913-4996044-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996044-0914-4-C/results/933815456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5827","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","13:00:00","MST","2021-04-13 20:00:00",NA,"0.609",609,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815470","UTAHDWQ_WQX-UTLK210412-4996100-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996100-0413-4-C/results/933815470/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5828","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","13:00:00","MST","2021-04-13 20:00:00",NA,"0.653",653,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815475","UTAHDWQ_WQX-UTLK210412-4996100-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996100-0413-4-C/results/933815475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5829","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","12:45:00","MST","2021-05-10 19:45:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815489","UTAHDWQ_WQX-UTLK210510-4996100-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996100-0510-4-C/results/933815489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5830","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","12:45:00","MST","2021-05-10 19:45:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815494","UTAHDWQ_WQX-UTLK210510-4996100-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996100-0510-4-C/results/933815494/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5831","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","12:15:00","MST","2021-06-15 19:15:00",NA,"0.672",672,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815508","UTAHDWQ_WQX-UTLK210614-4996100-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996100-0615-4-C/results/933815508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5832","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","12:15:00","MST","2021-06-15 19:15:00",NA,"0.608",608,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815513","UTAHDWQ_WQX-UTLK210614-4996100-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996100-0615-4-C/results/933815513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5833","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","11:50:00","MST","2021-07-14 18:50:00",NA,"0.959",959,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815527","UTAHDWQ_WQX-UTLK210712-4996100-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996100-0714-4-C/results/933815527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5834","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","11:50:00","MST","2021-07-14 18:50:00",NA,"0.669",669,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815532","UTAHDWQ_WQX-UTLK210712-4996100-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996100-0714-4-C/results/933815532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5835","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","11:00:00","MST","2021-08-18 18:00:00",NA,"0.861",861,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815546","UTAHDWQ_WQX-UTLK210816-4996100-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996100-0818-4-C/results/933815546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5836","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","11:00:00","MST","2021-08-18 18:00:00",NA,"0.906",906,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815551","UTAHDWQ_WQX-UTLK210816-4996100-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996100-0818-4-C/results/933815551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5837","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","11:40:00","MST","2021-09-14 18:40:00",NA,"0.715",715,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815565","UTAHDWQ_WQX-UTLK210913-4996100-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996100-0914-4-C/results/933815565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5838","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","11:40:00","MST","2021-09-14 18:40:00",NA,"0.844",844,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815570","UTAHDWQ_WQX-UTLK210913-4996100-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996100-0914-4-C/results/933815570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5839","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","13:10:00","MST","2021-04-13 20:10:00",NA,"7.89",7890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815584","UTAHDWQ_WQX-UTLK210412-4996275-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996275-0413-4-C/results/933815584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5840","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","13:10:00","MST","2021-04-13 20:10:00",NA,"8",8000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815589","UTAHDWQ_WQX-UTLK210412-4996275-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996275-0413-4-C/results/933815589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5841","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","12:55:00","MST","2021-05-10 19:55:00",NA,"6.28",6280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815603","UTAHDWQ_WQX-UTLK210510-4996275-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996275-0510-4-C/results/933815603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5842","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","12:55:00","MST","2021-05-10 19:55:00",NA,"6.28",6280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815608","UTAHDWQ_WQX-UTLK210510-4996275-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996275-0510-4-C/results/933815608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5843","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","12:30:00","MST","2021-06-15 19:30:00",NA,"9.43",9430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815622","UTAHDWQ_WQX-UTLK210614-4996275-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996275-0615-4-C/results/933815622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5844","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","12:30:00","MST","2021-06-15 19:30:00",NA,"9.57",9570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815627","UTAHDWQ_WQX-UTLK210614-4996275-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996275-0615-4-C/results/933815627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9118","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","12:00:00","MST","2021-07-14 19:00:00",NA,"9.45",9450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815641","UTAHDWQ_WQX-UTLK210712-4996275-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996275-0714-4-C/results/933815641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5846","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","12:00:00","MST","2021-07-14 19:00:00",NA,"9.65",9650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815646","UTAHDWQ_WQX-UTLK210712-4996275-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996275-0714-4-C/results/933815646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5847","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","11:15:00","MST","2021-08-18 18:15:00",NA,"4.51",4510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815660","UTAHDWQ_WQX-UTLK210816-4996275-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996275-0818-4-C/results/933815660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9121","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","11:15:00","MST","2021-08-18 18:15:00",NA,"4.38",4380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815665","UTAHDWQ_WQX-UTLK210816-4996275-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996275-0818-4-C/results/933815665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5849","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","12:00:00","MST","2021-09-14 19:00:00",NA,"10.4",10400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815679","UTAHDWQ_WQX-UTLK210913-4996275-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996275-0914-4-C/results/933815679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5850","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","12:00:00","MST","2021-09-14 19:00:00",NA,"9.58",9580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815684","UTAHDWQ_WQX-UTLK210913-4996275-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996275-0914-4-C/results/933815684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9124","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","13:40:00","MST","2021-04-13 20:40:00",NA,"12.6",12600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815700","UTAHDWQ_WQX-UTLK210412-4996540-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996540-0413-4-C/results/933815700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5852","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","13:40:00","MST","2021-04-13 20:40:00",NA,"12.6",12600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815705","UTAHDWQ_WQX-UTLK210412-4996540-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996540-0413-4-C/results/933815705/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5853","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","13:20:00","MST","2021-05-10 20:20:00",NA,"4.8",4800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815720","UTAHDWQ_WQX-UTLK210510-4996540-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996540-0510-4-C/results/933815720/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5854","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","13:20:00","MST","2021-05-10 20:20:00",NA,"4.06",4060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815725","UTAHDWQ_WQX-UTLK210510-4996540-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996540-0510-4-C/results/933815725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5855","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","12:50:00","MST","2021-06-15 19:50:00",NA,"9.98",9980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815742","UTAHDWQ_WQX-UTLK210614-4996540-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996540-0615-4-C/results/933815742/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5856","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","12:50:00","MST","2021-06-15 19:50:00",NA,"9.88",9880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815747","UTAHDWQ_WQX-UTLK210614-4996540-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996540-0615-4-C/results/933815747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5857","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","12:55:00","MST","2021-07-14 19:55:00",NA,"7.89",7890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815762","UTAHDWQ_WQX-UTLK210712-4996540-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996540-0714-4-C/results/933815762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5858","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","12:55:00","MST","2021-07-14 19:55:00",NA,"7.35",7350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815767","UTAHDWQ_WQX-UTLK210712-4996540-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996540-0714-4-C/results/933815767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5859","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","12:00:00","MST","2021-08-18 19:00:00",NA,"10.9",10900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815784","UTAHDWQ_WQX-UTLK210816-4996540-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996540-0818-4-C/results/933815784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9133","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","12:00:00","MST","2021-08-18 19:00:00",NA,"11.1",11100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815789","UTAHDWQ_WQX-UTLK210816-4996540-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996540-0818-4-C/results/933815789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5861","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","12:10:00","MST","2021-09-14 19:10:00",NA,"14.2",14200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815804","UTAHDWQ_WQX-UTLK210913-4996540-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996540-0914-4-C/results/933815804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5862","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","12:10:00","MST","2021-09-14 19:10:00",NA,"13.8",13800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815809","UTAHDWQ_WQX-UTLK210913-4996540-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996540-0914-4-C/results/933815809/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9136","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","13:25:00","MST","2021-04-13 20:25:00",NA,"11.6",11600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815825","UTAHDWQ_WQX-UTLK210412-4996566-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996566-0413-4-C/results/933815825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5864","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","13:25:00","MST","2021-04-13 20:25:00",NA,"11.9",11900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815830","UTAHDWQ_WQX-UTLK210412-4996566-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996566-0413-4-C/results/933815830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5865","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","13:05:00","MST","2021-05-10 20:05:00",NA,"11.8",11800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815845","UTAHDWQ_WQX-UTLK210510-4996566-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996566-0510-4-C/results/933815845/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5866","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","13:05:00","MST","2021-05-10 20:05:00",NA,"11.7",11700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815850","UTAHDWQ_WQX-UTLK210510-4996566-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996566-0510-4-C/results/933815850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5867","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","12:40:00","MST","2021-06-15 19:40:00",NA,"6.85",6850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815866","UTAHDWQ_WQX-UTLK210614-4996566-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996566-0615-4-C/results/933815866/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9141","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","12:40:00","MST","2021-06-15 19:40:00",NA,"7.03",7030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815871","UTAHDWQ_WQX-UTLK210614-4996566-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996566-0615-4-C/results/933815871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5869","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","12:30:00","MST","2021-07-14 19:30:00",NA,"5.5",5500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815886","UTAHDWQ_WQX-UTLK210712-4996566-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996566-0714-4-C/results/933815886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5870","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","12:30:00","MST","2021-07-14 19:30:00",NA,"5.17",5170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815891","UTAHDWQ_WQX-UTLK210712-4996566-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996566-0714-4-C/results/933815891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9144","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","11:30:00","MST","2021-08-18 18:30:00",NA,"11.7",11700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815908","UTAHDWQ_WQX-UTLK210816-4996566-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996566-0818-4-C/results/933815908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5872","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","11:30:00","MST","2021-08-18 18:30:00",NA,"11.5",11500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815913","UTAHDWQ_WQX-UTLK210816-4996566-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996566-0818-4-C/results/933815913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5873","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","12:15:00","MST","2021-09-14 19:15:00",NA,"13.2",13200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815928","UTAHDWQ_WQX-UTLK210913-4996566-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996566-0914-4-C/results/933815928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9147","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","12:15:00","MST","2021-09-14 19:15:00",NA,"13.1",13100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815933","UTAHDWQ_WQX-UTLK210913-4996566-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996566-0914-4-C/results/933815933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5875","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","14:15:00","MST","2021-04-13 21:15:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815947","UTAHDWQ_WQX-UTLK210412-4996680-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996680-0413-4-C/results/933815947/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5876","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","14:15:00","MST","2021-04-13 21:15:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815952","UTAHDWQ_WQX-UTLK210412-4996680-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996680-0413-4-C/results/933815952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5877","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","13:35:00","MST","2021-05-10 20:35:00",NA,"0.43",430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815966","UTAHDWQ_WQX-UTLK210510-4996680-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996680-0510-4-C/results/933815966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5878","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","13:35:00","MST","2021-05-10 20:35:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815971","UTAHDWQ_WQX-UTLK210510-4996680-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996680-0510-4-C/results/933815971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5879","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","13:00:00","MST","2021-06-15 20:00:00",NA,"0.687",687,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815985","UTAHDWQ_WQX-UTLK210614-4996680-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996680-0615-4-C/results/933815985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5880","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","13:00:00","MST","2021-06-15 20:00:00",NA,"0.637",637,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933815990","UTAHDWQ_WQX-UTLK210614-4996680-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996680-0615-4-C/results/933815990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5881","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","13:25:00","MST","2021-07-14 20:25:00",NA,"0.966",966,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816004","UTAHDWQ_WQX-UTLK210712-4996680-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996680-0714-4-C/results/933816004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5882","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","13:25:00","MST","2021-07-14 20:25:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816009","UTAHDWQ_WQX-UTLK210712-4996680-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996680-0714-4-C/results/933816009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5883","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","12:45:00","MST","2021-08-18 19:45:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816023","UTAHDWQ_WQX-UTLK210816-4996680-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996680-0818-4-C/results/933816023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5884","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","12:45:00","MST","2021-08-18 19:45:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816028","UTAHDWQ_WQX-UTLK210816-4996680-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996680-0818-4-C/results/933816028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5885","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","12:30:00","MST","2021-09-14 19:30:00",NA,"0.762",762,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816042","UTAHDWQ_WQX-UTLK210913-4996680-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996680-0914-4-C/results/933816042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5886","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","12:30:00","MST","2021-09-14 19:30:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816047","UTAHDWQ_WQX-UTLK210913-4996680-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996680-0914-4-C/results/933816047/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5887","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","12:02:00","MST","2021-04-29 19:02:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816053","UTAHDWQ_WQX-MAINCK210429-4996880-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996880-0429-4-C/results/933816053/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5888","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","12:02:00","MST","2021-04-29 19:02:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816056","UTAHDWQ_WQX-MAINCK210429-4996880-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996880-0429-4-C/results/933816056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5889","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-24","11:51:00","MST","2021-05-24 18:51:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816062","UTAHDWQ_WQX-MAINCK210524-4996880-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996880-0524-4-C/results/933816062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5890","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-24","11:51:00","MST","2021-05-24 18:51:00",NA,"1.47",1470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816065","UTAHDWQ_WQX-MAINCK210524-4996880-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996880-0524-4-C/results/933816065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5891","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","13:50:00","MST","2021-04-29 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816071","UTAHDWQ_WQX-MAINCK210429-4996903-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996903-0429-4-C/results/933816071/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5892","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","13:50:00","MST","2021-04-29 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816074","UTAHDWQ_WQX-MAINCK210429-4996903-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996903-0429-4-C/results/933816074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5893","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-24","13:41:00","MST","2021-05-24 20:41:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816098","UTAHDWQ_WQX-MAINCK210524-4996903-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996903-0524-4-C/results/933816098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5894","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-24","13:41:00","MST","2021-05-24 20:41:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816101","UTAHDWQ_WQX-MAINCK210524-4996903-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996903-0524-4-C/results/933816101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5895","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","15:05:00","MST","2021-06-21 22:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816107","UTAHDWQ_WQX-MAINCK210621-4996903-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996903-0621-4-C/results/933816107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5896","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","15:05:00","MST","2021-06-21 22:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816110","UTAHDWQ_WQX-MAINCK210621-4996903-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996903-0621-4-C/results/933816110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5897","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:40:00","MST","2021-07-19 21:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816116","UTAHDWQ_WQX-MAINCK210719-4996903-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-4996903-0719-4-C/results/933816116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5898","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","14:40:00","MST","2021-07-19 21:40:00",NA,"0.63",630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816119","UTAHDWQ_WQX-MAINCK210719-4996903-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-4996903-0719-4-C/results/933816119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5899","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","13:37:00","MST","2021-08-25 20:37:00",NA,"0.102",102,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816143","UTAHDWQ_WQX-MAINCK210825-4996903-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-4996903-0825-4-C/results/933816143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5900","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","13:37:00","MST","2021-08-25 20:37:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816146","UTAHDWQ_WQX-MAINCK210825-4996903-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-4996903-0825-4-C/results/933816146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5901","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","14:26:00","MST","2021-09-09 21:26:00",NA,"0.138",138,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816152","UTAHDWQ_WQX-MAINCK210909-4996903-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-4996903-0909-4-C/results/933816152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5902","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","14:26:00","MST","2021-09-09 21:26:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816155","UTAHDWQ_WQX-MAINCK210909-4996903-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-4996903-0909-4-C/results/933816155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5903","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","11:35:00","MST","2021-04-29 18:35:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816161","UTAHDWQ_WQX-MAINCK210429-4996905-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996905-0429-4-C/results/933816161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5904","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","11:35:00","MST","2021-04-29 18:35:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816164","UTAHDWQ_WQX-MAINCK210429-4996905-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996905-0429-4-C/results/933816164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5905","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-24","11:22:00","MST","2021-05-24 18:22:00",NA,"0.194",194,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816170","UTAHDWQ_WQX-MAINCK210524-4996905-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996905-0524-4-C/results/933816170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5906","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-24","11:22:00","MST","2021-05-24 18:22:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816173","UTAHDWQ_WQX-MAINCK210524-4996905-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996905-0524-4-C/results/933816173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5907","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","13:37:00","MST","2021-06-21 20:37:00",NA,"0.36",360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816179","UTAHDWQ_WQX-MAINCK210621-4996905-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996905-0621-4-C/results/933816179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5908","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","13:37:00","MST","2021-06-21 20:37:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816182","UTAHDWQ_WQX-MAINCK210621-4996905-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996905-0621-4-C/results/933816182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5909","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","11:40:00","MST","2021-04-29 18:40:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816188","UTAHDWQ_WQX-MAINCK210429-4996906-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996906-0429-4-C/results/933816188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5910","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","11:40:00","MST","2021-04-29 18:40:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816191","UTAHDWQ_WQX-MAINCK210429-4996906-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996906-0429-4-C/results/933816191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5911","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-24","11:30:00","MST","2021-05-24 18:30:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816197","UTAHDWQ_WQX-MAINCK210524-4996906-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996906-0524-4-C/results/933816197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5912","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-24","11:30:00","MST","2021-05-24 18:30:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816200","UTAHDWQ_WQX-MAINCK210524-4996906-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996906-0524-4-C/results/933816200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9186","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","13:40:00","MST","2021-06-21 20:40:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816206","UTAHDWQ_WQX-MAINCK210621-4996906-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996906-0621-4-C/results/933816206/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5914","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","13:40:00","MST","2021-06-21 20:40:00",NA,"0.427",427,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816209","UTAHDWQ_WQX-MAINCK210621-4996906-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996906-0621-4-C/results/933816209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5915","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","10:44:00","MST","2021-04-29 17:44:00",NA,"0.094",94,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816215","UTAHDWQ_WQX-MAINCK210429-4996910-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996910-0429-4-C/results/933816215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2645","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","10:44:00","MST","2021-04-29 17:44:00",NA,"0.095",95,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816218","UTAHDWQ_WQX-MAINCK210429-4996910-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996910-0429-4-C/results/933816218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5917","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","10:14:00","MST","2021-04-29 17:14:00",NA,"0.121",121,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816224","UTAHDWQ_WQX-MAINCK210429-4996913-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996913-0429-4-C/results/933816224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2646","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","10:14:00","MST","2021-04-29 17:14:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816227","UTAHDWQ_WQX-MAINCK210429-4996913-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996913-0429-4-C/results/933816227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5919","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-24","10:28:00","MST","2021-05-24 17:28:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816233","UTAHDWQ_WQX-MAINCK210524-4996913-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996913-0524-4-C/results/933816233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5920","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-24","10:28:00","MST","2021-05-24 17:28:00",NA,"0.17",170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816236","UTAHDWQ_WQX-MAINCK210524-4996913-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996913-0524-4-C/results/933816236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5921","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","12:54:00","MST","2021-06-21 19:54:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816242","UTAHDWQ_WQX-MAINCK210621-4996913-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996913-0621-4-C/results/933816242/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5922","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","12:54:00","MST","2021-06-21 19:54:00",NA,"0.191",191,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816245","UTAHDWQ_WQX-MAINCK210621-4996913-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996913-0621-4-C/results/933816245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5923","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","10:10:00","MST","2021-06-15 17:10:00",NA,"0.438",438,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816341","UTAHDWQ_WQX-LAKES210614-5900970-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","CUTLER RES AB DAM 01","Lake",NA,"41.8377000000",41.8377,"-112.0443900000",-112.04439,"OK","16010202","UTAHDWQ_WQX-5900970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8377000000","-112.0443900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900970-0615-2-C/results/933816341/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5924","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:10:00","MST","2021-06-15 17:10:00",NA,"0.59",590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816345","UTAHDWQ_WQX-LAKES210614-5900970-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","CUTLER RES AB DAM 01","Lake",NA,"41.8377000000",41.8377,"-112.0443900000",-112.04439,"OK","16010202","UTAHDWQ_WQX-5900970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8377000000","-112.0443900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900970-0615-2-C/results/933816345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5925","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","10:50:00","MST","2021-09-14 17:50:00",NA,"0.492",492,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816355","UTAHDWQ_WQX-LAKES210913-5900970-0914-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","CUTLER RES AB DAM 01","Lake",NA,"41.8377000000",41.8377,"-112.0443900000",-112.04439,"OK","16010202","UTAHDWQ_WQX-5900970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8377000000","-112.0443900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900970-0914-2-C/results/933816355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5926","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","10:50:00","MST","2021-09-14 17:50:00",NA,"0.469",469,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816359","UTAHDWQ_WQX-LAKES210913-5900970-0914-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","CUTLER RES AB DAM 01","Lake",NA,"41.8377000000",41.8377,"-112.0443900000",-112.04439,"OK","16010202","UTAHDWQ_WQX-5900970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8377000000","-112.0443900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900970-0914-2-C/results/933816359/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5927","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","10:40:00","MST","2021-06-15 17:40:00",NA,"0.48",480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816369","UTAHDWQ_WQX-LAKES210614-5900980-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES E OF HIGHWAY BRIDGE 02","Lake",NA,"41.8435300000",41.84353,"-112.0024500000",-112.00245,"OK","16010202","UTAHDWQ_WQX-5900980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8435300000","-112.0024500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900980-0615-2-C/results/933816369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5928","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","10:40:00","MST","2021-06-15 17:40:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816373","UTAHDWQ_WQX-LAKES210614-5900980-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES E OF HIGHWAY BRIDGE 02","Lake",NA,"41.8435300000",41.84353,"-112.0024500000",-112.00245,"OK","16010202","UTAHDWQ_WQX-5900980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8435300000","-112.0024500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900980-0615-2-C/results/933816373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5929","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","11:10:00","MST","2021-09-14 18:10:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816400","UTAHDWQ_WQX-LAKES210913-5900980-0914-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES E OF HIGHWAY BRIDGE 02","Lake",NA,"41.8435300000",41.84353,"-112.0024500000",-112.00245,"OK","16010202","UTAHDWQ_WQX-5900980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8435300000","-112.0024500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900980-0914-2-C/results/933816400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5930","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","11:10:00","MST","2021-09-14 18:10:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816404","UTAHDWQ_WQX-LAKES210913-5900980-0914-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES E OF HIGHWAY BRIDGE 02","Lake",NA,"41.8435300000",41.84353,"-112.0024500000",-112.00245,"OK","16010202","UTAHDWQ_WQX-5900980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8435300000","-112.0024500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900980-0914-2-C/results/933816404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5931","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","11:40:00","MST","2021-06-15 18:40:00",NA,"0.508",508,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816414","UTAHDWQ_WQX-LAKES210614-5900990-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES AT CNFL / CLAY SLOUGH 03","Lake",NA,"41.8249300000",41.82493,"-111.9532800000",-111.95328,"OK","16010202","UTAHDWQ_WQX-5900990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8249300000","-111.9532800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900990-0615-2-C/results/933816414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5932","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","11:40:00","MST","2021-06-15 18:40:00",NA,"0.511",511,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816418","UTAHDWQ_WQX-LAKES210614-5900990-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES AT CNFL / CLAY SLOUGH 03","Lake",NA,"41.8249300000",41.82493,"-111.9532800000",-111.95328,"OK","16010202","UTAHDWQ_WQX-5900990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8249300000","-111.9532800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900990-0615-2-C/results/933816418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5933","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","12:10:00","MST","2021-09-14 19:10:00",NA,"0.456",456,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816428","UTAHDWQ_WQX-LAKES210913-5900990-0914-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES AT CNFL / CLAY SLOUGH 03","Lake",NA,"41.8249300000",41.82493,"-111.9532800000",-111.95328,"OK","16010202","UTAHDWQ_WQX-5900990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8249300000","-111.9532800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900990-0914-2-C/results/933816428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5934","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","12:10:00","MST","2021-09-14 19:10:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816432","UTAHDWQ_WQX-LAKES210913-5900990-0914-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES AT CNFL / CLAY SLOUGH 03","Lake",NA,"41.8249300000",41.82493,"-111.9532800000",-111.95328,"OK","16010202","UTAHDWQ_WQX-5900990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8249300000","-111.9532800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900990-0914-2-C/results/933816432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5935","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","12:00:00","MST","2021-06-15 19:00:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816442","UTAHDWQ_WQX-LAKES210614-5901000-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"41.7871500000",41.78715,"-111.9549500000",-111.95495,"OK","16010202","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7871500000","-111.9549500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5901000-0615-2-C/results/933816442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5936","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","12:00:00","MST","2021-06-15 19:00:00",NA,"0.523",523,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816446","UTAHDWQ_WQX-LAKES210614-5901000-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"41.7871500000",41.78715,"-111.9549500000",-111.95495,"OK","16010202","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7871500000","-111.9549500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5901000-0615-2-C/results/933816446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5937","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","12:05:00","MST","2021-06-15 19:05:00",NA,"0.637",637,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816451","UTAHDWQ_WQX-LAKES210614-5901000-0615-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"41.7871500000",41.78715,"-111.9549500000",-111.95495,"OK","16010202","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7871500000","-111.9549500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5901000-0615-29-C/results/933816451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5938","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","12:05:00","MST","2021-06-15 19:05:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816455","UTAHDWQ_WQX-LAKES210614-5901000-0615-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"41.7871500000",41.78715,"-111.9549500000",-111.95495,"OK","16010202","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7871500000","-111.9549500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5901000-0615-29-C/results/933816455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5939","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","12:25:00","MST","2021-09-14 19:25:00",NA,"0.65",650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816465","UTAHDWQ_WQX-LAKES210913-5901000-0914-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"41.7871500000",41.78715,"-111.9549500000",-111.95495,"OK","16010202","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7871500000","-111.9549500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901000-0914-2-C/results/933816465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5940","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","12:25:00","MST","2021-09-14 19:25:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816469","UTAHDWQ_WQX-LAKES210913-5901000-0914-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"41.7871500000",41.78715,"-111.9549500000",-111.95495,"OK","16010202","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7871500000","-111.9549500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901000-0914-2-C/results/933816469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5941","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","12:35:00","MST","2021-09-14 19:35:00",NA,"0.678",678,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816474","UTAHDWQ_WQX-LAKES210913-5901000-0914-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"41.7871500000",41.78715,"-111.9549500000",-111.95495,"OK","16010202","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7871500000","-111.9549500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901000-0914-29-C/results/933816474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5942","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","12:35:00","MST","2021-09-14 19:35:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816478","UTAHDWQ_WQX-LAKES210913-5901000-0914-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"41.7871500000",41.78715,"-111.9549500000",-111.95495,"OK","16010202","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7871500000","-111.9549500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901000-0914-29-C/results/933816478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5943","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","13:50:00","MST","2021-06-01 20:50:00",NA,"0.277",277,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816505","UTAHDWQ_WQX-LAKES210531-5901670-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-2-C/results/933816505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5944","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","13:50:00","MST","2021-06-01 20:50:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816509","UTAHDWQ_WQX-LAKES210531-5901670-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-2-C/results/933816509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5945","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","13:55:00","MST","2021-06-01 20:55:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816514","UTAHDWQ_WQX-LAKES210531-5901670-0601-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-23-C/results/933816514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5946","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","13:55:00","MST","2021-06-01 20:55:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816518","UTAHDWQ_WQX-LAKES210531-5901670-0601-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-23-C/results/933816518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5947","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","14:00:00","MST","2021-06-01 21:00:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","11.01",11.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816523","UTAHDWQ_WQX-LAKES210531-5901670-0601-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-27-C/results/933816523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5948","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","14:00:00","MST","2021-06-01 21:00:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","11.01",11.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816527","UTAHDWQ_WQX-LAKES210531-5901670-0601-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-27-C/results/933816527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5949","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","14:05:00","MST","2021-06-01 21:05:00",NA,"0.433",433,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18.02",18.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816532","UTAHDWQ_WQX-LAKES210531-5901670-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-29-C/results/933816532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5950","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","14:05:00","MST","2021-06-01 21:05:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18.02",18.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816536","UTAHDWQ_WQX-LAKES210531-5901670-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-29-C/results/933816536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5951","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","11:25:00","MST","2021-09-15 18:25:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816563","UTAHDWQ_WQX-LAKES210913-5901670-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901670-0915-2-C/results/933816563/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5952","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","11:25:00","MST","2021-09-15 18:25:00",NA,"0.304",304,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816567","UTAHDWQ_WQX-LAKES210913-5901670-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901670-0915-2-C/results/933816567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2681","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","11:40:00","MST","2021-09-15 18:40:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816572","UTAHDWQ_WQX-LAKES210913-5901670-0915-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901670-0915-29-C/results/933816572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5954","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","11:40:00","MST","2021-09-15 18:40:00",NA,"0.364",364,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816576","UTAHDWQ_WQX-LAKES210913-5901670-0915-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01","Lake",NA,"41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901670-0915-29-C/results/933816576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5955","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","14:25:00","MST","2021-06-01 21:25:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816603","UTAHDWQ_WQX-LAKES210531-5901680-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES MIDLAKE 02","Lake",NA,"41.6193800000",41.61938,"-111.8593800000",-111.85938,"OK","16010203","UTAHDWQ_WQX-5901680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6193800000","-111.8593800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901680-0601-2-C/results/933816603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2682","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","14:25:00","MST","2021-06-01 21:25:00",NA,"0.244",244,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816607","UTAHDWQ_WQX-LAKES210531-5901680-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES MIDLAKE 02","Lake",NA,"41.6193800000",41.61938,"-111.8593800000",-111.85938,"OK","16010203","UTAHDWQ_WQX-5901680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6193800000","-111.8593800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901680-0601-2-C/results/933816607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2683","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","14:30:00","MST","2021-06-01 21:30:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","13.06",13.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816612","UTAHDWQ_WQX-LAKES210531-5901680-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES MIDLAKE 02","Lake",NA,"41.6193800000",41.61938,"-111.8593800000",-111.85938,"OK","16010203","UTAHDWQ_WQX-5901680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6193800000","-111.8593800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901680-0601-29-C/results/933816612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9231","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","14:30:00","MST","2021-06-01 21:30:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","13.06",13.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816616","UTAHDWQ_WQX-LAKES210531-5901680-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES MIDLAKE 02","Lake",NA,"41.6193800000",41.61938,"-111.8593800000",-111.85938,"OK","16010203","UTAHDWQ_WQX-5901680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6193800000","-111.8593800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901680-0601-29-C/results/933816616/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5958","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","14:40:00","MST","2021-06-01 21:40:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816626","UTAHDWQ_WQX-LAKES210531-5901690-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES 03 NEAR UPPER END","Lake",NA,"41.6125500000",41.61255,"-111.8519700000",-111.85197,"OK","16010203","UTAHDWQ_WQX-5901690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6125500000","-111.8519700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901690-0601-2-C/results/933816626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2685","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","14:40:00","MST","2021-06-01 21:40:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816630","UTAHDWQ_WQX-LAKES210531-5901690-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES 03 NEAR UPPER END","Lake",NA,"41.6125500000",41.61255,"-111.8519700000",-111.85197,"OK","16010203","UTAHDWQ_WQX-5901690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6125500000","-111.8519700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901690-0601-2-C/results/933816630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9234","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","14:10:00","MST","2021-06-01 21:10:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816640","UTAHDWQ_WQX-LAKES210531-5901720-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01 Replicate of 5901670","Lake","Replicate of 5901670","41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901720-0601-2-C/results/933816640/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2687","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","14:10:00","MST","2021-06-01 21:10:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816644","UTAHDWQ_WQX-LAKES210531-5901720-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01 Replicate of 5901670","Lake","Replicate of 5901670","41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901720-0601-2-C/results/933816644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2688","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","11:55:00","MST","2021-09-15 18:55:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816654","UTAHDWQ_WQX-LAKES210913-5901720-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01 Replicate of 5901670","Lake","Replicate of 5901670","41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901720-0915-2-C/results/933816654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5962","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","11:55:00","MST","2021-09-15 18:55:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816658","UTAHDWQ_WQX-LAKES210913-5901720-0915-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","HYRUM RES AB DAM 01 Replicate of 5901670","Lake","Replicate of 5901670","41.6254900000",41.62549,"-111.8713400000",-111.87134,"OK","16010203","UTAHDWQ_WQX-5901720",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6254900000","-111.8713400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901720-0915-2-C/results/933816658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2689","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-13","11:15:00","MST","2021-07-13 18:15:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816685","UTAHDWQ_WQX-LAKES210712-5906510-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","LITTLE CK RES AB DAM 01","Lake",NA,"41.6743900000",41.67439,"-111.2288100000",-111.22881,"OK","16010101","UTAHDWQ_WQX-5906510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6743900000","-111.2288100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906510-0713-2-C/results/933816685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9239","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-13","11:15:00","MST","2021-07-13 18:15:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816689","UTAHDWQ_WQX-LAKES210712-5906510-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","LITTLE CK RES AB DAM 01","Lake",NA,"41.6743900000",41.67439,"-111.2288100000",-111.22881,"OK","16010101","UTAHDWQ_WQX-5906510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6743900000","-111.2288100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906510-0713-2-C/results/933816689/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5964","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-03","09:30:00","MST","2021-05-03 16:30:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816695","UTAHDWQ_WQX-BRI210503-5906850-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-5906850-0503-4-C/results/933816695/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5965","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-03","09:30:00","MST","2021-05-03 16:30:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816698","UTAHDWQ_WQX-BRI210503-5906850-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-5906850-0503-4-C/results/933816698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9242","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","10:15:00","MST","2021-06-07 17:15:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816704","UTAHDWQ_WQX-BRI210607-5906850-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-5906850-0607-4-C/results/933816704/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5967","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","10:15:00","MST","2021-06-07 17:15:00",NA,"0.62",620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816707","UTAHDWQ_WQX-BRI210607-5906850-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-5906850-0607-4-C/results/933816707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5968","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","11:50:00","MST","2021-06-21 18:50:00",NA,"0.39",390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816730","UTAHDWQ_WQX-BRI210621-5906850-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-5906850-0621-4-C/results/933816730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5969","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","11:50:00","MST","2021-06-21 18:50:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816733","UTAHDWQ_WQX-BRI210621-5906850-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"41.4679900000",41.46799,"-111.3164900000",-111.31649,"OK","16010101","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4679900000","-111.3164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-5906850-0621-4-C/results/933816733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5970","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","13:30:00","MST","2021-07-14 20:30:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816760","UTAHDWQ_WQX-LAKES210712-5906860-0714-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-2-C/results/933816760/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5971","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","13:30:00","MST","2021-07-14 20:30:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816764","UTAHDWQ_WQX-LAKES210712-5906860-0714-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-2-C/results/933816764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5972","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","13:45:00","MST","2021-07-14 20:45:00",NA,"0.681",681,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","10.02",10.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816786","UTAHDWQ_WQX-LAKES210712-5906860-0714-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-29-C/results/933816786/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5973","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","13:45:00","MST","2021-07-14 20:45:00",NA,"0.631",631,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","10.02",10.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816790","UTAHDWQ_WQX-LAKES210712-5906860-0714-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-29-C/results/933816790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5974","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","13:35:00","MST","2021-07-14 20:35:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816795","UTAHDWQ_WQX-LAKES210712-5906860-0714-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-23-C/results/933816795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5975","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","13:35:00","MST","2021-07-14 20:35:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816799","UTAHDWQ_WQX-LAKES210712-5906860-0714-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-23-C/results/933816799/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5976","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","13:40:00","MST","2021-07-14 20:40:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","9.01",9.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816804","UTAHDWQ_WQX-LAKES210712-5906860-0714-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-27-C/results/933816804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5977","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","13:40:00","MST","2021-07-14 20:40:00",NA,"0.488",488,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","9.01",9.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816808","UTAHDWQ_WQX-LAKES210712-5906860-0714-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-27-C/results/933816808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5978","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","14:00:00","MST","2021-09-29 21:00:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816818","UTAHDWQ_WQX-LAKES210927-5906860-0929-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906860-0929-2-C/results/933816818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5979","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","14:00:00","MST","2021-09-29 21:00:00",NA,"0.509",509,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816822","UTAHDWQ_WQX-LAKES210927-5906860-0929-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906860-0929-2-C/results/933816822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5980","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","14:20:00","MST","2021-09-29 21:20:00",NA,"0.926",926,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816827","UTAHDWQ_WQX-LAKES210927-5906860-0929-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906860-0929-29-C/results/933816827/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5981","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","14:20:00","MST","2021-09-29 21:20:00",NA,"0.772",772,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816831","UTAHDWQ_WQX-LAKES210927-5906860-0929-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK RES AB DAM 01","Lake",NA,"41.4663300000",41.46633,"-111.3196400000",-111.31964,"OK","16010101","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4663300000","-111.3196400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906860-0929-29-C/results/933816831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5982","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","12:45:00","MST","2021-07-14 19:45:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816875","UTAHDWQ_WQX-LAKES210712-5906900-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK AB WOODRUFF CK RES","River/Stream",NA,"41.4624400000",41.46244,"-111.3488200000",-111.34882,"OK","16010101","UTAHDWQ_WQX-5906900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4624400000","-111.3488200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906900-0714-4-C/results/933816875/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5983","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","12:45:00","MST","2021-07-14 19:45:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816879","UTAHDWQ_WQX-LAKES210712-5906900-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK AB WOODRUFF CK RES","River/Stream",NA,"41.4624400000",41.46244,"-111.3488200000",-111.34882,"OK","16010101","UTAHDWQ_WQX-5906900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4624400000","-111.3488200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906900-0714-4-C/results/933816879/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5984","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","13:25:00","MST","2021-09-29 20:25:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816889","UTAHDWQ_WQX-LAKES210927-5906900-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK AB WOODRUFF CK RES","River/Stream",NA,"41.4624400000",41.46244,"-111.3488200000",-111.34882,"OK","16010101","UTAHDWQ_WQX-5906900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4624400000","-111.3488200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906900-0929-4-C/results/933816889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5985","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","13:25:00","MST","2021-09-29 20:25:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816893","UTAHDWQ_WQX-LAKES210927-5906900-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","WOODRUFF CK AB WOODRUFF CK RES","River/Stream",NA,"41.4624400000",41.46244,"-111.3488200000",-111.34882,"OK","16010101","UTAHDWQ_WQX-5906900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4624400000","-111.3488200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906900-0929-4-C/results/933816893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5986","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","10:15:00","MST","2021-07-14 17:15:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816920","UTAHDWQ_WQX-LAKES210712-5907130-0714-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"41.5052200000",41.50522,"-111.3207600000",-111.32076,"OK","16010101","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5052200000","-111.3207600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907130-0714-2-C/results/933816920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5987","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","10:15:00","MST","2021-07-14 17:15:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816924","UTAHDWQ_WQX-LAKES210712-5907130-0714-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"41.5052200000",41.50522,"-111.3207600000",-111.32076,"OK","16010101","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5052200000","-111.3207600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907130-0714-2-C/results/933816924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5988","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","10:30:00","MST","2021-07-14 17:30:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816946","UTAHDWQ_WQX-LAKES210712-5907130-0714-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"41.5052200000",41.50522,"-111.3207600000",-111.32076,"OK","16010101","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5052200000","-111.3207600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907130-0714-29-C/results/933816946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5989","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","10:30:00","MST","2021-07-14 17:30:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816950","UTAHDWQ_WQX-LAKES210712-5907130-0714-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"41.5052200000",41.50522,"-111.3207600000",-111.32076,"OK","16010101","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5052200000","-111.3207600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907130-0714-29-C/results/933816950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5990","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","12:05:00","MST","2021-09-29 19:05:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816960","UTAHDWQ_WQX-LAKES210927-5907130-0929-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"41.5052200000",41.50522,"-111.3207600000",-111.32076,"OK","16010101","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5052200000","-111.3207600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907130-0929-2-C/results/933816960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5991","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","12:05:00","MST","2021-09-29 19:05:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816964","UTAHDWQ_WQX-LAKES210927-5907130-0929-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"41.5052200000",41.50522,"-111.3207600000",-111.32076,"OK","16010101","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5052200000","-111.3207600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907130-0929-2-C/results/933816964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5992","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","12:20:00","MST","2021-09-29 19:20:00",NA,"0.791",791,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816969","UTAHDWQ_WQX-LAKES210927-5907130-0929-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"41.5052200000",41.50522,"-111.3207600000",-111.32076,"OK","16010101","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5052200000","-111.3207600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907130-0929-29-C/results/933816969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5993","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","12:20:00","MST","2021-09-29 19:20:00",NA,"0.743",743,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933816973","UTAHDWQ_WQX-LAKES210927-5907130-0929-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"41.5052200000",41.50522,"-111.3207600000",-111.32076,"OK","16010101","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5052200000","-111.3207600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907130-0929-29-C/results/933816973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5994","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","11:10:00","MST","2021-07-14 18:10:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817017","UTAHDWQ_WQX-LAKES210712-5907150-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK AB BIRCH CK RES","River/Stream",NA,"41.5035500000",41.50355,"-111.3368600000",-111.33686,"OK","16010101","UTAHDWQ_WQX-5907150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5035500000","-111.3368600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907150-0714-4-C/results/933817017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9271","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","11:10:00","MST","2021-07-14 18:10:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817021","UTAHDWQ_WQX-LAKES210712-5907150-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK AB BIRCH CK RES","River/Stream",NA,"41.5035500000",41.50355,"-111.3368600000",-111.33686,"OK","16010101","UTAHDWQ_WQX-5907150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5035500000","-111.3368600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907150-0714-4-C/results/933817021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5996","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-29","11:55:00","MST","2021-09-29 18:55:00",NA,"0.167",167,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817031","UTAHDWQ_WQX-LAKES210927-5907150-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK AB BIRCH CK RES","River/Stream",NA,"41.5035500000",41.50355,"-111.3368600000",-111.33686,"OK","16010101","UTAHDWQ_WQX-5907150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5035500000","-111.3368600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907150-0929-4-C/results/933817031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5997","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-29","11:55:00","MST","2021-09-29 18:55:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817035","UTAHDWQ_WQX-LAKES210927-5907150-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","BIRCH CK AB BIRCH CK RES","River/Stream",NA,"41.5035500000",41.50355,"-111.3368600000",-111.33686,"OK","16010101","UTAHDWQ_WQX-5907150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5035500000","-111.3368600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907150-0929-4-C/results/933817035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9274","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-07","11:25:00","MST","2021-07-07 18:25:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817062","UTAHDWQ_WQX-LAKES210705-5907780-0707-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-2-C/results/933817062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5999","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-07","11:25:00","MST","2021-07-07 18:25:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817066","UTAHDWQ_WQX-LAKES210705-5907780-0707-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-2-C/results/933817066/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6000","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-07","11:30:00","MST","2021-07-07 18:30:00",NA,"0.203",203,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817071","UTAHDWQ_WQX-LAKES210705-5907780-0707-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-23-C/results/933817071/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6001","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-07","11:30:00","MST","2021-07-07 18:30:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817075","UTAHDWQ_WQX-LAKES210705-5907780-0707-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-23-C/results/933817075/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6002","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-07","11:35:00","MST","2021-07-07 18:35:00",NA,"0.631",631,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817080","UTAHDWQ_WQX-LAKES210705-5907780-0707-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-27-C/results/933817080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6003","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-07","11:35:00","MST","2021-07-07 18:35:00",NA,"0.179",179,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817084","UTAHDWQ_WQX-LAKES210705-5907780-0707-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-27-C/results/933817084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6004","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-07","11:40:00","MST","2021-07-07 18:40:00",NA,"0.589",589,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817089","UTAHDWQ_WQX-LAKES210705-5907780-0707-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-29-C/results/933817089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6005","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-07","11:40:00","MST","2021-07-07 18:40:00",NA,"0.195",195,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817093","UTAHDWQ_WQX-LAKES210705-5907780-0707-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-29-C/results/933817093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6006","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-08","11:50:00","MST","2021-09-08 18:50:00",NA,"0.749",749,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817120","UTAHDWQ_WQX-LAKES210906-5907780-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907780-0908-2-C/results/933817120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6007","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-08","11:50:00","MST","2021-09-08 18:50:00",NA,"0.439",439,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817124","UTAHDWQ_WQX-LAKES210906-5907780-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907780-0908-2-C/results/933817124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6008","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-08","12:05:00","MST","2021-09-08 19:05:00",NA,"1.73",1730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","10.88",10.88,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817129","UTAHDWQ_WQX-LAKES210906-5907780-0908-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907780-0908-29-C/results/933817129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6009","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-08","12:05:00","MST","2021-09-08 19:05:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","10.88",10.88,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817133","UTAHDWQ_WQX-LAKES210906-5907780-0908-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WHITNEY RES AB DAM 01","Lake",NA,"40.8371700000",40.83717,"-110.9285100000",-110.92851,"OK","16010101","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8371700000","-110.9285100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907780-0908-29-C/results/933817133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6010","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-07","10:55:00","MST","2021-07-07 17:55:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817160","UTAHDWQ_WQX-LAKES210705-5907800-0707-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","W FK BEAR R AB WHITNEY RES","River/Stream",NA,"40.8257800000",40.82578,"-110.9293400000",-110.92934,"OK","16010101","UTAHDWQ_WQX-5907800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8257800000","-110.9293400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907800-0707-4-C/results/933817160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6011","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-07","10:55:00","MST","2021-07-07 17:55:00",NA,"0.375",375,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817164","UTAHDWQ_WQX-LAKES210705-5907800-0707-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","W FK BEAR R AB WHITNEY RES","River/Stream",NA,"40.8257800000",40.82578,"-110.9293400000",-110.92934,"OK","16010101","UTAHDWQ_WQX-5907800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8257800000","-110.9293400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907800-0707-4-C/results/933817164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6012","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-08","11:20:00","MST","2021-09-08 18:20:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817191","UTAHDWQ_WQX-LAKES210906-5907800-0908-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","W FK BEAR R AB WHITNEY RES","River/Stream",NA,"40.8257800000",40.82578,"-110.9293400000",-110.92934,"OK","16010101","UTAHDWQ_WQX-5907800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8257800000","-110.9293400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907800-0908-4-C/results/933817191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6013","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-08","11:20:00","MST","2021-09-08 18:20:00",NA,"0.204",204,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817195","UTAHDWQ_WQX-LAKES210906-5907800-0908-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","W FK BEAR R AB WHITNEY RES","River/Stream",NA,"40.8257800000",40.82578,"-110.9293400000",-110.92934,"OK","16010101","UTAHDWQ_WQX-5907800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8257800000","-110.9293400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907800-0908-4-C/results/933817195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6014","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-07","11:10:00","MST","2021-07-07 18:10:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817222","UTAHDWQ_WQX-LAKES210705-5907810-0707-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR","River/Stream",NA,"40.8396700000",40.83967,"-110.9321200000",-110.93212,"OK","16010101","UTAHDWQ_WQX-5907810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8396700000","-110.9321200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907810-0707-4-C/results/933817222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6015","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-07","11:10:00","MST","2021-07-07 18:10:00",NA,"0.327",327,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817226","UTAHDWQ_WQX-LAKES210705-5907810-0707-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR","River/Stream",NA,"40.8396700000",40.83967,"-110.9321200000",-110.93212,"OK","16010101","UTAHDWQ_WQX-5907810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8396700000","-110.9321200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907810-0707-4-C/results/933817226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6016","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-08","11:35:00","MST","2021-09-08 18:35:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817253","UTAHDWQ_WQX-LAKES210906-5907810-0908-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR","River/Stream",NA,"40.8396700000",40.83967,"-110.9321200000",-110.93212,"OK","16010101","UTAHDWQ_WQX-5907810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8396700000","-110.9321200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907810-0908-4-C/results/933817253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6017","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-08","11:35:00","MST","2021-09-08 18:35:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817257","UTAHDWQ_WQX-LAKES210906-5907810-0908-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR","River/Stream",NA,"40.8396700000",40.83967,"-110.9321200000",-110.93212,"OK","16010101","UTAHDWQ_WQX-5907810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8396700000","-110.9321200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907810-0908-4-C/results/933817257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6018","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","11:08:00","MST","2021-04-29 18:08:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817280","UTAHDWQ_WQX-MAINCK210429-5910280-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910280-0429-4-C/results/933817280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6019","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","11:08:00","MST","2021-04-29 18:08:00",NA,"1.88",1880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817283","UTAHDWQ_WQX-MAINCK210429-5910280-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910280-0429-4-C/results/933817283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6020","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-24","10:56:00","MST","2021-05-24 17:56:00",NA,"1.94",1940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817289","UTAHDWQ_WQX-MAINCK210524-5910280-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910280-0524-4-C/results/933817289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6021","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-24","10:56:00","MST","2021-05-24 17:56:00",NA,"2.01",2010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817292","UTAHDWQ_WQX-MAINCK210524-5910280-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910280-0524-4-C/results/933817292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6022","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","13:20:00","MST","2021-06-21 20:20:00",NA,"1.98",1980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817298","UTAHDWQ_WQX-MAINCK210621-5910280-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910280-0621-4-C/results/933817298/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6023","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","13:20:00","MST","2021-06-21 20:20:00",NA,"1.97",1970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817301","UTAHDWQ_WQX-MAINCK210621-5910280-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910280-0621-4-C/results/933817301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6024","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","13:31:00","MST","2021-07-19 20:31:00",NA,"1.9",1900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817307","UTAHDWQ_WQX-MAINCK210719-5910280-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910280-0719-4-C/results/933817307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6025","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","13:31:00","MST","2021-07-19 20:31:00",NA,"1.99",1990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817310","UTAHDWQ_WQX-MAINCK210719-5910280-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910280-0719-4-C/results/933817310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6026","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","11:23:00","MST","2021-08-25 18:23:00",NA,"2.05",2050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817316","UTAHDWQ_WQX-MAINCK210825-5910280-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910280-0825-4-C/results/933817316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6027","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","11:23:00","MST","2021-08-25 18:23:00",NA,"1.92",1920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817319","UTAHDWQ_WQX-MAINCK210825-5910280-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910280-0825-4-C/results/933817319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6028","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","10:11:00","MST","2021-09-09 17:11:00",NA,"1.93",1930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817325","UTAHDWQ_WQX-MAINCK210909-5910280-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910280-0909-4-C/results/933817325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6029","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","10:11:00","MST","2021-09-09 17:11:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817328","UTAHDWQ_WQX-MAINCK210909-5910280-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910280-0909-4-C/results/933817328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6030","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","13:12:00","MST","2021-04-29 20:12:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817334","UTAHDWQ_WQX-MAINCK210429-5910290-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910290-0429-4-C/results/933817334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6031","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","13:12:00","MST","2021-04-29 20:12:00",NA,"0.516",516,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817337","UTAHDWQ_WQX-MAINCK210429-5910290-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910290-0429-4-C/results/933817337/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6032","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-24","13:02:00","MST","2021-05-24 20:02:00",NA,"0.552",552,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817343","UTAHDWQ_WQX-MAINCK210524-5910290-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910290-0524-4-C/results/933817343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9309","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-24","13:02:00","MST","2021-05-24 20:02:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817346","UTAHDWQ_WQX-MAINCK210524-5910290-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910290-0524-4-C/results/933817346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6034","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","14:01:00","MST","2021-06-21 21:01:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817352","UTAHDWQ_WQX-MAINCK210621-5910290-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910290-0621-4-C/results/933817352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6035","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","14:01:00","MST","2021-06-21 21:01:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817355","UTAHDWQ_WQX-MAINCK210621-5910290-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910290-0621-4-C/results/933817355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9312","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:06:00","MST","2021-07-19 21:06:00",NA,"0.339",339,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817361","UTAHDWQ_WQX-MAINCK210719-5910290-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910290-0719-4-C/results/933817361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6037","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","14:06:00","MST","2021-07-19 21:06:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817364","UTAHDWQ_WQX-MAINCK210719-5910290-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910290-0719-4-C/results/933817364/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6038","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","11:50:00","MST","2021-08-25 18:50:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817370","UTAHDWQ_WQX-MAINCK210825-5910290-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910290-0825-4-C/results/933817370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6039","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","11:50:00","MST","2021-08-25 18:50:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817373","UTAHDWQ_WQX-MAINCK210825-5910290-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910290-0825-4-C/results/933817373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6040","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","10:32:00","MST","2021-09-09 17:32:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817379","UTAHDWQ_WQX-MAINCK210909-5910290-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910290-0909-4-C/results/933817379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6041","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","10:32:00","MST","2021-09-09 17:32:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817382","UTAHDWQ_WQX-MAINCK210909-5910290-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910290-0909-4-C/results/933817382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6042","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","13:37:00","MST","2021-04-29 20:37:00",NA,"0.399",399,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817388","UTAHDWQ_WQX-MAINCK210429-5910619-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910619-0429-4-C/results/933817388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6043","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","13:37:00","MST","2021-04-29 20:37:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817391","UTAHDWQ_WQX-MAINCK210429-5910619-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910619-0429-4-C/results/933817391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6044","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-24","13:29:00","MST","2021-05-24 20:29:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817415","UTAHDWQ_WQX-MAINCK210524-5910619-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910619-0524-4-C/results/933817415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6045","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-24","13:29:00","MST","2021-05-24 20:29:00",NA,"0.418",418,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817418","UTAHDWQ_WQX-MAINCK210524-5910619-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910619-0524-4-C/results/933817418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6046","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","14:45:00","MST","2021-06-21 21:45:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817424","UTAHDWQ_WQX-MAINCK210621-5910619-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910619-0621-4-C/results/933817424/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6047","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","14:45:00","MST","2021-06-21 21:45:00",NA,"0.547",547,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817427","UTAHDWQ_WQX-MAINCK210621-5910619-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910619-0621-4-C/results/933817427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6048","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:25:00","MST","2021-07-19 21:25:00",NA,"0.306",306,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817433","UTAHDWQ_WQX-MAINCK210719-5910619-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910619-0719-4-C/results/933817433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6049","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","14:25:00","MST","2021-07-19 21:25:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817436","UTAHDWQ_WQX-MAINCK210719-5910619-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910619-0719-4-C/results/933817436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6050","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","12:15:00","MST","2021-08-25 19:15:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817460","UTAHDWQ_WQX-MAINCK210825-5910619-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910619-0825-4-C/results/933817460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6051","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","12:15:00","MST","2021-08-25 19:15:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817463","UTAHDWQ_WQX-MAINCK210825-5910619-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910619-0825-4-C/results/933817463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6052","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","10:58:00","MST","2021-09-09 17:58:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817469","UTAHDWQ_WQX-MAINCK210909-5910619-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910619-0909-4-C/results/933817469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6053","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","10:58:00","MST","2021-09-09 17:58:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817472","UTAHDWQ_WQX-MAINCK210909-5910619-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910619-0909-4-C/results/933817472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6054","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","12:45:00","MST","2021-04-29 19:45:00",NA,"0.246",246,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817478","UTAHDWQ_WQX-MAINCK210429-5910620-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910620-0429-4-C/results/933817478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6055","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","12:45:00","MST","2021-04-29 19:45:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817481","UTAHDWQ_WQX-MAINCK210429-5910620-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910620-0429-4-C/results/933817481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6056","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-24","12:32:00","MST","2021-05-24 19:32:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817487","UTAHDWQ_WQX-MAINCK210524-5910620-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910620-0524-4-C/results/933817487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6057","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-24","12:32:00","MST","2021-05-24 19:32:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817490","UTAHDWQ_WQX-MAINCK210524-5910620-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910620-0524-4-C/results/933817490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6058","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","14:24:00","MST","2021-06-21 21:24:00",NA,"0.602",602,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817496","UTAHDWQ_WQX-MAINCK210621-5910620-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910620-0621-4-C/results/933817496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6059","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","14:24:00","MST","2021-06-21 21:24:00",NA,"0.671",671,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817499","UTAHDWQ_WQX-MAINCK210621-5910620-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910620-0621-4-C/results/933817499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6060","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-13","11:30:00","MST","2021-04-13 18:30:00",NA,"3.59",3590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817513","UTAHDWQ_WQX-UTLK210412-5919910-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-5919910-0413-4-C/results/933817513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6061","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-13","11:30:00","MST","2021-04-13 18:30:00",NA,"4.03",4030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817518","UTAHDWQ_WQX-UTLK210412-5919910-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-5919910-0413-4-C/results/933817518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6062","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","11:15:00","MST","2021-05-10 18:15:00",NA,"5.5",5500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817532","UTAHDWQ_WQX-UTLK210510-5919910-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-5919910-0510-4-C/results/933817532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6063","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","11:15:00","MST","2021-05-10 18:15:00",NA,"5.4",5400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817537","UTAHDWQ_WQX-UTLK210510-5919910-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-5919910-0510-4-C/results/933817537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6064","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","11:10:00","MST","2021-06-15 18:10:00",NA,"3.22",3220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817551","UTAHDWQ_WQX-UTLK210614-5919910-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-5919910-0615-4-C/results/933817551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6065","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","11:10:00","MST","2021-06-15 18:10:00",NA,"3.07",3070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817556","UTAHDWQ_WQX-UTLK210614-5919910-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-5919910-0615-4-C/results/933817556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6066","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-14","10:25:00","MST","2021-07-14 17:25:00",NA,"3.88",3880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817570","UTAHDWQ_WQX-UTLK210712-5919910-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-5919910-0714-4-C/results/933817570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6067","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-14","10:25:00","MST","2021-07-14 17:25:00",NA,"4.04",4040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817575","UTAHDWQ_WQX-UTLK210712-5919910-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-5919910-0714-4-C/results/933817575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6068","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-18","09:50:00","MST","2021-08-18 16:50:00",NA,"4.38",4380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817589","UTAHDWQ_WQX-UTLK210816-5919910-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-5919910-0818-4-C/results/933817589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6069","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-18","09:50:00","MST","2021-08-18 16:50:00",NA,"4.41",4410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817594","UTAHDWQ_WQX-UTLK210816-5919910-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-5919910-0818-4-C/results/933817594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6070","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","11:10:00","MST","2021-09-14 18:10:00",NA,"4.4",4400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817608","UTAHDWQ_WQX-UTLK210913-5919910-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-5919910-0914-4-C/results/933817608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6071","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-14","11:10:00","MST","2021-09-14 18:10:00",NA,"3.51",3510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817613","UTAHDWQ_WQX-UTLK210913-5919910-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-5919910-0914-4-C/results/933817613/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6072","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-26","08:42:00","MST","2021-05-26 15:42:00",NA,"0.678",678,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817619","UTAHDWQ_WQX-SPANISHFKR210526-5919920-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210526-5919920-0526-4-C/results/933817619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6073","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","10:33:00","MST","2021-07-19 17:33:00",NA,"0.573",573,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817625","UTAHDWQ_WQX-SPANISHFKR210719-5919920-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919920-0719-4-C/results/933817625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6074","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","10:33:00","MST","2021-07-19 17:33:00",NA,"0.564",564,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817628","UTAHDWQ_WQX-SPANISHFKR210719-5919920-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919920-0719-4-C/results/933817628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6075","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","11:58:00","MST","2021-09-09 18:58:00",NA,"0.504",504,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817634","UTAHDWQ_WQX-SPANISHFKR210909-5919920-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919920-0909-4-C/results/933817634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6076","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","11:58:00","MST","2021-09-09 18:58:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817637","UTAHDWQ_WQX-SPANISHFKR210909-5919920-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919920-0909-4-C/results/933817637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6077","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","14:40:00","MST","2021-07-19 21:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817643","UTAHDWQ_WQX-SPANISHFKR210719-5919942-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919942-0719-4-C/results/933817643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6078","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","14:40:00","MST","2021-07-19 21:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817646","UTAHDWQ_WQX-SPANISHFKR210719-5919942-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919942-0719-4-C/results/933817646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6079","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","14:25:00","MST","2021-09-09 21:25:00",NA,"0.166",166,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817652","UTAHDWQ_WQX-SPANISHFKR210909-5919942-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919942-0909-4-C/results/933817652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6080","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","14:25:00","MST","2021-09-09 21:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817655","UTAHDWQ_WQX-SPANISHFKR210909-5919942-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919942-0909-4-C/results/933817655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6081","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-26","09:20:00","MST","2021-05-26 16:20:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817661","UTAHDWQ_WQX-SPANISHFKR210526-5919970-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210526-5919970-0526-4-C/results/933817661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6082","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","11:47:00","MST","2021-07-19 18:47:00",NA,"0.916",916,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817667","UTAHDWQ_WQX-SPANISHFKR210719-5919970-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919970-0719-4-C/results/933817667/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6083","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","11:47:00","MST","2021-07-19 18:47:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817670","UTAHDWQ_WQX-SPANISHFKR210719-5919970-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919970-0719-4-C/results/933817670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6084","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","13:09:00","MST","2021-09-09 20:09:00",NA,"0.666",666,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817676","UTAHDWQ_WQX-SPANISHFKR210909-5919970-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919970-0909-4-C/results/933817676/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6085","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","13:09:00","MST","2021-09-09 20:09:00",NA,"0.82",820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817679","UTAHDWQ_WQX-SPANISHFKR210909-5919970-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919970-0909-4-C/results/933817679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6086","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-26","09:26:00","MST","2021-05-26 16:26:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817685","UTAHDWQ_WQX-SPANISHFKR210526-5919971-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210526-5919971-0526-4-C/results/933817685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6087","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","11:47:00","MST","2021-07-19 18:47:00",NA,"0.922",922,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817691","UTAHDWQ_WQX-SPANISHFKR210719-5919971-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919971-0719-4-C/results/933817691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6088","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","11:47:00","MST","2021-07-19 18:47:00",NA,"0.848",848,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817694","UTAHDWQ_WQX-SPANISHFKR210719-5919971-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919971-0719-4-C/results/933817694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6089","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-09","13:10:00","MST","2021-09-09 20:10:00",NA,"0.71",710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817700","UTAHDWQ_WQX-SPANISHFKR210909-5919971-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919971-0909-4-C/results/933817700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6090","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-09","13:10:00","MST","2021-09-09 20:10:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817703","UTAHDWQ_WQX-SPANISHFKR210909-5919971-0909-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919971-0909-4-C/results/933817703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6091","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","12:40:00","MST","2021-06-22 19:40:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817713","UTAHDWQ_WQX-LAKES210621-5931000-0622-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931000-0622-2-C/results/933817713/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6092","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","12:40:00","MST","2021-06-22 19:40:00",NA,"0.41",410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817717","UTAHDWQ_WQX-LAKES210621-5931000-0622-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931000-0622-2-C/results/933817717/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6093","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","12:55:00","MST","2021-06-22 19:55:00",NA,"0.379",379,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","6.99",6.99,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817722","UTAHDWQ_WQX-LAKES210621-5931000-0622-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931000-0622-29-C/results/933817722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6094","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","12:55:00","MST","2021-06-22 19:55:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","6.99",6.99,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817726","UTAHDWQ_WQX-LAKES210621-5931000-0622-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931000-0622-29-C/results/933817726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6095","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-31","10:20:00","MST","2021-08-31 17:20:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817753","UTAHDWQ_WQX-LAKES210830-5931000-0831-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931000-0831-2-C/results/933817753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6096","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-31","10:20:00","MST","2021-08-31 17:20:00",NA,"0.576",576,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817757","UTAHDWQ_WQX-LAKES210830-5931000-0831-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931000-0831-2-C/results/933817757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6097","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-31","10:35:00","MST","2021-08-31 17:35:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817762","UTAHDWQ_WQX-LAKES210830-5931000-0831-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931000-0831-29-C/results/933817762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6098","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-31","10:35:00","MST","2021-08-31 17:35:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817766","UTAHDWQ_WQX-LAKES210830-5931000-0831-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931000-0831-29-C/results/933817766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6099","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","12:35:00","MST","2021-06-22 19:35:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817793","UTAHDWQ_WQX-LAKES210621-5931190-0622-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000","Lake","Replicate of 5931000","39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931190-0622-2-C/results/933817793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6100","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","12:35:00","MST","2021-06-22 19:35:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817797","UTAHDWQ_WQX-LAKES210621-5931190-0622-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000","Lake","Replicate of 5931000","39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931190-0622-2-C/results/933817797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6101","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-31","10:50:00","MST","2021-08-31 17:50:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817807","UTAHDWQ_WQX-LAKES210830-5931190-0831-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000","Lake","Replicate of 5931000","39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931190-0831-2-C/results/933817807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6102","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-31","10:50:00","MST","2021-08-31 17:50:00",NA,"0.876",876,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817811","UTAHDWQ_WQX-LAKES210830-5931190-0831-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000","Lake","Replicate of 5931000","39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931190-0831-2-C/results/933817811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6103","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","16:30:00","MST","2021-04-29 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817817","UTAHDWQ_WQX-MUDCK210428-5931467-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931467-0429-4-C/results/933817817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6104","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","16:30:00","MST","2021-04-29 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817820","UTAHDWQ_WQX-MUDCK210428-5931467-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931467-0429-4-C/results/933817820/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9381","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","14:00:00","MST","2021-05-25 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817826","UTAHDWQ_WQX-MUDCK210525-5931467-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931467-0525-4-C/results/933817826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6106","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","14:00:00","MST","2021-05-25 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817829","UTAHDWQ_WQX-MUDCK210525-5931467-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931467-0525-4-C/results/933817829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6107","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","15:00:00","MST","2021-06-29 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817835","UTAHDWQ_WQX-MUDCK210629-5931467-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Other;Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931467-0629-4-C/results/933817835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9384","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","15:00:00","MST","2021-06-29 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817838","UTAHDWQ_WQX-MUDCK210629-5931467-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Other;Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931467-0629-4-C/results/933817838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6109","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","12:00:00","MST","2021-08-25 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817844","UTAHDWQ_WQX-MUDCK210823-5931467-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931467-0825-4-C/results/933817844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6110","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","12:00:00","MST","2021-08-25 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817847","UTAHDWQ_WQX-MUDCK210823-5931467-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931467-0825-4-C/results/933817847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6111","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","15:00:00","MST","2021-09-20 22:00:00",NA,"0.101",101,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817853","UTAHDWQ_WQX-MUDCK210920-5931467-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931467-0920-4-C/results/933817853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6112","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-20","15:00:00","MST","2021-09-20 22:00:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817856","UTAHDWQ_WQX-MUDCK210920-5931467-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931467-0920-4-C/results/933817856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9389","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","14:15:00","MST","2021-04-29 21:15:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817862","UTAHDWQ_WQX-MUDCK210428-5931480-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931480-0429-4-C/results/933817862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6114","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","14:15:00","MST","2021-04-29 21:15:00",NA,"0.84",840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817865","UTAHDWQ_WQX-MUDCK210428-5931480-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931480-0429-4-C/results/933817865/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6115","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","11:00:00","MST","2021-05-25 18:00:00",NA,"0.537",537,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817871","UTAHDWQ_WQX-MUDCK210525-5931480-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931480-0525-4-C/results/933817871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9392","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","11:00:00","MST","2021-05-25 18:00:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817874","UTAHDWQ_WQX-MUDCK210525-5931480-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931480-0525-4-C/results/933817874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6117","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","11:00:00","MST","2021-06-29 18:00:00",NA,"0.737",737,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817880","UTAHDWQ_WQX-MUDCK210629-5931480-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Other;Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931480-0629-4-C/results/933817880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6118","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","11:00:00","MST","2021-06-29 18:00:00",NA,"0.941",941,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817883","UTAHDWQ_WQX-MUDCK210629-5931480-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Other;Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931480-0629-4-C/results/933817883/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6119","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","11:00:00","MST","2021-07-27 18:00:00",NA,"0.393",393,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817889","UTAHDWQ_WQX-MUDCK210723-5931480-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931480-0727-4-C/results/933817889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6120","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","11:00:00","MST","2021-07-27 18:00:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817892","UTAHDWQ_WQX-MUDCK210723-5931480-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931480-0727-4-C/results/933817892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6121","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","11:30:00","MST","2021-08-25 18:30:00",NA,"0.783",783,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817898","UTAHDWQ_WQX-MUDCK210823-5931480-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931480-0825-4-C/results/933817898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6122","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","11:30:00","MST","2021-08-25 18:30:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817901","UTAHDWQ_WQX-MUDCK210823-5931480-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931480-0825-4-C/results/933817901/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6123","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","11:50:00","MST","2021-09-20 18:50:00",NA,"0.531",531,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817907","UTAHDWQ_WQX-MUDCK210920-5931480-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931480-0920-4-C/results/933817907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6124","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-20","11:50:00","MST","2021-09-20 18:50:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817910","UTAHDWQ_WQX-MUDCK210920-5931480-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931480-0920-4-C/results/933817910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6125","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","14:35:00","MST","2021-04-29 21:35:00",NA,"0.581",581,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817916","UTAHDWQ_WQX-MUDCK210428-5931481-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931481-0429-4-C/results/933817916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6126","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","14:35:00","MST","2021-04-29 21:35:00",NA,"0.594",594,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817919","UTAHDWQ_WQX-MUDCK210428-5931481-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931481-0429-4-C/results/933817919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6127","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","11:05:00","MST","2021-05-25 18:05:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817925","UTAHDWQ_WQX-MUDCK210525-5931481-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931481-0525-4-C/results/933817925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6128","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","11:05:00","MST","2021-05-25 18:05:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817928","UTAHDWQ_WQX-MUDCK210525-5931481-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931481-0525-4-C/results/933817928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6129","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","11:10:00","MST","2021-06-29 18:10:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817934","UTAHDWQ_WQX-MUDCK210629-5931481-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Other",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931481-0629-4-C/results/933817934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6130","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","11:10:00","MST","2021-06-29 18:10:00",NA,"0.502",502,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817937","UTAHDWQ_WQX-MUDCK210629-5931481-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Other",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931481-0629-4-C/results/933817937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6131","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","11:05:00","MST","2021-07-27 18:05:00",NA,"0.375",375,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817943","UTAHDWQ_WQX-MUDCK210723-5931481-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931481-0727-4-C/results/933817943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6132","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","11:05:00","MST","2021-07-27 18:05:00",NA,"0.509",509,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817946","UTAHDWQ_WQX-MUDCK210723-5931481-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931481-0727-4-C/results/933817946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6133","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","11:35:00","MST","2021-08-25 18:35:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817952","UTAHDWQ_WQX-MUDCK210823-5931481-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931481-0825-4-C/results/933817952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6134","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","11:35:00","MST","2021-08-25 18:35:00",NA,"0.796",796,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817955","UTAHDWQ_WQX-MUDCK210823-5931481-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931481-0825-4-C/results/933817955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6135","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","11:55:00","MST","2021-09-20 18:55:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817959","UTAHDWQ_WQX-MUDCK210920-5931481-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931481-0920-4-C/results/933817959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6136","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-20","11:55:00","MST","2021-09-20 18:55:00",NA,"0.601",601,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817962","UTAHDWQ_WQX-MUDCK210920-5931481-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931481-0920-4-C/results/933817962/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6137","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","13:45:00","MST","2021-04-29 20:45:00",NA,"0.659",659,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817968","UTAHDWQ_WQX-MUDCK210428-5931510-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931510-0429-4-C/results/933817968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6138","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","13:45:00","MST","2021-04-29 20:45:00",NA,"0.524",524,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817971","UTAHDWQ_WQX-MUDCK210428-5931510-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931510-0429-4-C/results/933817971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6139","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","10:35:00","MST","2021-05-25 17:35:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817977","UTAHDWQ_WQX-MUDCK210525-5931510-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931510-0525-4-C/results/933817977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6140","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","10:35:00","MST","2021-05-25 17:35:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817980","UTAHDWQ_WQX-MUDCK210525-5931510-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931510-0525-4-C/results/933817980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9417","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","10:30:00","MST","2021-06-29 17:30:00",NA,"0.167",167,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817986","UTAHDWQ_WQX-MUDCK210629-5931510-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Other;Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931510-0629-4-C/results/933817986/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6142","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","10:30:00","MST","2021-06-29 17:30:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817989","UTAHDWQ_WQX-MUDCK210629-5931510-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Other;Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931510-0629-4-C/results/933817989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6143","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","10:30:00","MST","2021-07-27 17:30:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817995","UTAHDWQ_WQX-MUDCK210723-5931510-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931510-0727-4-C/results/933817995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9420","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","10:30:00","MST","2021-07-27 17:30:00",NA,"0.636",636,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933817998","UTAHDWQ_WQX-MUDCK210723-5931510-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931510-0727-4-C/results/933817998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6145","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","11:10:00","MST","2021-08-25 18:10:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818004","UTAHDWQ_WQX-MUDCK210823-5931510-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931510-0825-4-C/results/933818004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6146","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","11:10:00","MST","2021-08-25 18:10:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818007","UTAHDWQ_WQX-MUDCK210823-5931510-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931510-0825-4-C/results/933818007/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6147","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","11:30:00","MST","2021-09-20 18:30:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818013","UTAHDWQ_WQX-MUDCK210920-5931510-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931510-0920-4-C/results/933818013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6148","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-20","11:30:00","MST","2021-09-20 18:30:00",NA,"0.485",485,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818016","UTAHDWQ_WQX-MUDCK210920-5931510-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931510-0920-4-C/results/933818016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6149","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","14:00:00","MST","2021-04-29 21:00:00",NA,"0.623",623,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818022","UTAHDWQ_WQX-MUDCK210428-5931513-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931513-0429-4-C/results/933818022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6150","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","14:00:00","MST","2021-04-29 21:00:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818025","UTAHDWQ_WQX-MUDCK210428-5931513-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931513-0429-4-C/results/933818025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6151","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","10:45:00","MST","2021-05-25 17:45:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818031","UTAHDWQ_WQX-MUDCK210525-5931513-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931513-0525-4-C/results/933818031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6152","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","10:45:00","MST","2021-05-25 17:45:00",NA,"0.374",374,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818034","UTAHDWQ_WQX-MUDCK210525-5931513-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931513-0525-4-C/results/933818034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6153","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","11:30:00","MST","2021-06-29 18:30:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818040","UTAHDWQ_WQX-MUDCK210629-5931513-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Other",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931513-0629-4-C/results/933818040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6154","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","11:30:00","MST","2021-06-29 18:30:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818043","UTAHDWQ_WQX-MUDCK210629-5931513-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Other",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931513-0629-4-C/results/933818043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6155","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","10:40:00","MST","2021-07-27 17:40:00",NA,"0.484",484,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818049","UTAHDWQ_WQX-MUDCK210723-5931513-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931513-0727-4-C/results/933818049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6156","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","10:40:00","MST","2021-07-27 17:40:00",NA,"0.604",604,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818052","UTAHDWQ_WQX-MUDCK210723-5931513-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931513-0727-4-C/results/933818052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6157","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","11:20:00","MST","2021-08-25 18:20:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818058","UTAHDWQ_WQX-MUDCK210823-5931513-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931513-0825-4-C/results/933818058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6158","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","11:20:00","MST","2021-08-25 18:20:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818061","UTAHDWQ_WQX-MUDCK210823-5931513-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931513-0825-4-C/results/933818061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6159","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","11:40:00","MST","2021-09-20 18:40:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818067","UTAHDWQ_WQX-MUDCK210920-5931513-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931513-0920-4-C/results/933818067/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6160","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-20","11:40:00","MST","2021-09-20 18:40:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818070","UTAHDWQ_WQX-MUDCK210920-5931513-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931513-0920-4-C/results/933818070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6161","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","13:30:00","MST","2021-04-29 20:30:00",NA,"0.72",720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818076","UTAHDWQ_WQX-MUDCK210428-5931545-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931545-0429-4-C/results/933818076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6162","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","13:30:00","MST","2021-04-29 20:30:00",NA,"0.914",914,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818079","UTAHDWQ_WQX-MUDCK210428-5931545-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931545-0429-4-C/results/933818079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6163","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","10:30:00","MST","2021-05-25 17:30:00",NA,"0.49",490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818085","UTAHDWQ_WQX-MUDCK210525-5931545-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931545-0525-4-C/results/933818085/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6164","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","10:30:00","MST","2021-05-25 17:30:00",NA,"0.593",593,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818088","UTAHDWQ_WQX-MUDCK210525-5931545-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931545-0525-4-C/results/933818088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6165","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","10:00:00","MST","2021-06-29 17:00:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818094","UTAHDWQ_WQX-MUDCK210629-5931545-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Other;Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931545-0629-4-C/results/933818094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6166","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","10:00:00","MST","2021-06-29 17:00:00",NA,"1.47",1470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818097","UTAHDWQ_WQX-MUDCK210629-5931545-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Other;Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931545-0629-4-C/results/933818097/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9443","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","10:25:00","MST","2021-07-27 17:25:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818103","UTAHDWQ_WQX-MUDCK210723-5931545-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931545-0727-4-C/results/933818103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6168","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","10:25:00","MST","2021-07-27 17:25:00",NA,"0.539",539,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818106","UTAHDWQ_WQX-MUDCK210723-5931545-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931545-0727-4-C/results/933818106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6169","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","11:00:00","MST","2021-08-25 18:00:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818112","UTAHDWQ_WQX-MUDCK210823-5931545-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931545-0825-4-C/results/933818112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9446","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","11:00:00","MST","2021-08-25 18:00:00",NA,"0.486",486,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818115","UTAHDWQ_WQX-MUDCK210823-5931545-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931545-0825-4-C/results/933818115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6171","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","11:15:00","MST","2021-09-20 18:15:00",NA,"0.525",525,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818121","UTAHDWQ_WQX-MUDCK210920-5931545-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931545-0920-4-C/results/933818121/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6172","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-20","11:15:00","MST","2021-09-20 18:15:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818124","UTAHDWQ_WQX-MUDCK210920-5931545-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931545-0920-4-C/results/933818124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6173","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-29","14:45:00","MST","2021-04-29 21:45:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818130","UTAHDWQ_WQX-MUDCK210428-5931645-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931645-0429-4-C/results/933818130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6174","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-29","14:45:00","MST","2021-04-29 21:45:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818133","UTAHDWQ_WQX-MUDCK210428-5931645-0429-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931645-0429-4-C/results/933818133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6175","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","11:20:00","MST","2021-05-25 18:20:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818139","UTAHDWQ_WQX-MUDCK210525-5931645-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931645-0525-4-C/results/933818139/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6176","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","11:20:00","MST","2021-05-25 18:20:00",NA,"0.289",289,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818142","UTAHDWQ_WQX-MUDCK210525-5931645-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931645-0525-4-C/results/933818142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6177","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-29","11:30:00","MST","2021-06-29 18:30:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818148","UTAHDWQ_WQX-MUDCK210629-5931645-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Other",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931645-0629-4-C/results/933818148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6178","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-29","11:30:00","MST","2021-06-29 18:30:00",NA,"0.712",712,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818151","UTAHDWQ_WQX-MUDCK210629-5931645-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Other",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931645-0629-4-C/results/933818151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6179","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","11:20:00","MST","2021-07-27 18:20:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818157","UTAHDWQ_WQX-MUDCK210723-5931645-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931645-0727-4-C/results/933818157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6180","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","11:20:00","MST","2021-07-27 18:20:00",NA,"0.344",344,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818160","UTAHDWQ_WQX-MUDCK210723-5931645-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931645-0727-4-C/results/933818160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6181","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-25","11:50:00","MST","2021-08-25 18:50:00",NA,"0.46",460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818166","UTAHDWQ_WQX-MUDCK210823-5931645-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931645-0825-4-C/results/933818166/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6182","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-25","11:50:00","MST","2021-08-25 18:50:00",NA,"0.204",204,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818169","UTAHDWQ_WQX-MUDCK210823-5931645-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931645-0825-4-C/results/933818169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6183","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","12:10:00","MST","2021-09-20 19:10:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818175","UTAHDWQ_WQX-MUDCK210920-5931645-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931645-0920-4-C/results/933818175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6184","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-20","12:10:00","MST","2021-09-20 19:10:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818178","UTAHDWQ_WQX-MUDCK210920-5931645-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931645-0920-4-C/results/933818178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6185","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-22","10:35:00","MST","2021-06-22 17:35:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818188","UTAHDWQ_WQX-LAKES210621-5931650-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","FISH CK AB SCOFIELD RES","River/Stream",NA,"39.7752400000",39.77524,"-111.1860000000",-111.186,"OK","14060007","UTAHDWQ_WQX-5931650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7752400000","-111.1860000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931650-0622-4-C/results/933818188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6186","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-22","10:35:00","MST","2021-06-22 17:35:00",NA,"0.258",258,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818192","UTAHDWQ_WQX-LAKES210621-5931650-0622-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","FISH CK AB SCOFIELD RES","River/Stream",NA,"39.7752400000",39.77524,"-111.1860000000",-111.186,"OK","14060007","UTAHDWQ_WQX-5931650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7752400000","-111.1860000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931650-0622-4-C/results/933818192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6187","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-31","11:30:00","MST","2021-08-31 18:30:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818219","UTAHDWQ_WQX-LAKES210830-5931650-0831-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","FISH CK AB SCOFIELD RES","River/Stream",NA,"39.7752400000",39.77524,"-111.1860000000",-111.186,"OK","14060007","UTAHDWQ_WQX-5931650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7752400000","-111.1860000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931650-0831-4-C/results/933818219/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6188","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-31","11:30:00","MST","2021-08-31 18:30:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818223","UTAHDWQ_WQX-LAKES210830-5931650-0831-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","FISH CK AB SCOFIELD RES","River/Stream",NA,"39.7752400000",39.77524,"-111.1860000000",-111.186,"OK","14060007","UTAHDWQ_WQX-5931650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7752400000","-111.1860000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931650-0831-4-C/results/933818223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6189","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","15:15:00","MST","2021-06-28 22:15:00",NA,"0.881",881,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818250","UTAHDWQ_WQX-LAKES210628-5937850-0628-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937850-0628-2-C/results/933818250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6190","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","15:15:00","MST","2021-06-28 22:15:00",NA,"0.917",917,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818254","UTAHDWQ_WQX-LAKES210628-5937850-0628-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937850-0628-2-C/results/933818254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6191","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","15:30:00","MST","2021-06-28 22:30:00",NA,"0.91",910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818259","UTAHDWQ_WQX-LAKES210628-5937850-0628-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937850-0628-29-C/results/933818259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6192","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","15:30:00","MST","2021-06-28 22:30:00",NA,"0.955",955,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818263","UTAHDWQ_WQX-LAKES210628-5937850-0628-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937850-0628-29-C/results/933818263/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6193","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","16:00:00","MST","2021-08-17 23:00:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818290","UTAHDWQ_WQX-LAKES210817-5937850-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937850-0817-2-C/results/933818290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6194","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","16:00:00","MST","2021-08-17 23:00:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818294","UTAHDWQ_WQX-LAKES210817-5937850-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937850-0817-2-C/results/933818294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6195","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","16:30:00","MST","2021-08-17 23:30:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.06",5.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818299","UTAHDWQ_WQX-LAKES210817-5937850-0817-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937850-0817-29-C/results/933818299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6196","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","16:30:00","MST","2021-08-17 23:30:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.06",5.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818303","UTAHDWQ_WQX-LAKES210817-5937850-0817-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937850-0817-29-C/results/933818303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6197","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","15:40:00","MST","2021-06-28 22:40:00",NA,"0.928",928,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818330","UTAHDWQ_WQX-LAKES210628-5937852-0628-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937852-0628-2-C/results/933818330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6198","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","15:40:00","MST","2021-06-28 22:40:00",NA,"0.913",913,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818334","UTAHDWQ_WQX-LAKES210628-5937852-0628-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937852-0628-2-C/results/933818334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6199","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","16:15:00","MST","2021-08-17 23:15:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818344","UTAHDWQ_WQX-LAKES210817-5937852-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937852-0817-2-C/results/933818344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6200","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","16:15:00","MST","2021-08-17 23:15:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818348","UTAHDWQ_WQX-LAKES210817-5937852-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937852-0817-2-C/results/933818348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6201","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","16:40:00","MST","2021-08-17 23:40:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818358","UTAHDWQ_WQX-LAKES210817-5937860-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES W MIDLAKE 02","Lake",NA,"40.7741000000",40.7741,"-109.3017000000",-109.3017,"OK","14040106","UTAHDWQ_WQX-5937860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741000000","-109.3017000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937860-0817-2-C/results/933818358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6202","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","16:40:00","MST","2021-08-17 23:40:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818362","UTAHDWQ_WQX-LAKES210817-5937860-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES W MIDLAKE 02","Lake",NA,"40.7741000000",40.7741,"-109.3017000000",-109.3017,"OK","14040106","UTAHDWQ_WQX-5937860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741000000","-109.3017000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937860-0817-2-C/results/933818362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6203","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","14:55:00","MST","2021-06-28 21:55:00",NA,"0.87",870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818372","UTAHDWQ_WQX-LAKES210628-5937870-0628-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937870-0628-2-C/results/933818372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6204","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","14:55:00","MST","2021-06-28 21:55:00",NA,"0.875",875,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818376","UTAHDWQ_WQX-LAKES210628-5937870-0628-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937870-0628-2-C/results/933818376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6205","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","17:00:00","MST","2021-08-18 00:00:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818386","UTAHDWQ_WQX-LAKES210817-5937870-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937870-0817-2-C/results/933818386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6206","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","17:00:00","MST","2021-08-18 00:00:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818390","UTAHDWQ_WQX-LAKES210817-5937870-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937870-0817-2-C/results/933818390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6207","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-19","14:00:00","MST","2021-04-19 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818398","UTAHDWQ_WQX-NFSDIXIE210419-5949855-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service;National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210419-5949855-0419-4-C/results/933818398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6208","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","10:30:00","MST","2021-06-07 17:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818422","UTAHDWQ_WQX-NFSDIXIE210607-5949855-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949855-0607-4-C/results/933818422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6209","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","10:30:00","MST","2021-06-07 17:30:00",NA,"0.082",82,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818425","UTAHDWQ_WQX-NFSDIXIE210607-5949855-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949855-0607-4-C/results/933818425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6210","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","11:15:00","MST","2021-06-28 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818431","UTAHDWQ_WQX-NFSDIXIE210628-5949855-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949855-0628-4-C/results/933818431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6211","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","11:15:00","MST","2021-06-28 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818434","UTAHDWQ_WQX-NFSDIXIE210628-5949855-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949855-0628-4-C/results/933818434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6212","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","12:00:00","MST","2021-07-19 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818459","UTAHDWQ_WQX-NFSDIXIE210719-5949855-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210719-5949855-0719-4-C/results/933818459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6213","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","17:00:00","MST","2021-08-10 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818468","UTAHDWQ_WQX-NFSDIXIE210809-5949855-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210809-5949855-0809-4-C/results/933818468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6214","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","11:10:00","MST","2021-09-20 18:10:00",NA,"0.104",104,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818494","UTAHDWQ_WQX-NFSDIXIE210920-5949855-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210920-5949855-0920-4-C/results/933818494/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6215","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-19","15:15:00","MST","2021-04-19 22:15:00",NA,"1.72",1720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818520","UTAHDWQ_WQX-NFSDIXIE210419-5949890-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service;National Park Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210419-5949890-0419-4-C/results/933818520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6216","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","09:45:00","MST","2021-06-07 16:45:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818544","UTAHDWQ_WQX-NFSDIXIE210607-5949890-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949890-0607-4-C/results/933818544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6217","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","09:45:00","MST","2021-06-07 16:45:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818547","UTAHDWQ_WQX-NFSDIXIE210607-5949890-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949890-0607-4-C/results/933818547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6218","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","10:00:00","MST","2021-06-28 17:00:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818553","UTAHDWQ_WQX-NFSDIXIE210628-5949890-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949890-0628-4-C/results/933818553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6219","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","10:00:00","MST","2021-06-28 17:00:00",NA,"0.276",276,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818556","UTAHDWQ_WQX-NFSDIXIE210628-5949890-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949890-0628-4-C/results/933818556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6220","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","10:20:00","MST","2021-07-19 17:20:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818581","UTAHDWQ_WQX-NFSDIXIE210719-5949890-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210719-5949890-0719-4-C/results/933818581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6221","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","11:05:00","MST","2021-08-09 18:05:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818590","UTAHDWQ_WQX-NFSDIXIE210809-5949890-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210809-5949890-0809-4-C/results/933818590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6222","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","12:10:00","MST","2021-09-20 19:10:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818616","UTAHDWQ_WQX-NFSDIXIE210920-5949890-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210920-5949890-0920-4-C/results/933818616/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6223","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-19","15:15:00","MST","2021-04-19 22:15:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818642","UTAHDWQ_WQX-NFSDIXIE210419-5949892-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service;National Park Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210419-5949892-0419-4-C/results/933818642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6224","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","10:00:00","MST","2021-06-07 17:00:00",NA,"0.359",359,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818666","UTAHDWQ_WQX-NFSDIXIE210607-5949892-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949892-0607-4-C/results/933818666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6225","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","10:00:00","MST","2021-06-07 17:00:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818669","UTAHDWQ_WQX-NFSDIXIE210607-5949892-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949892-0607-4-C/results/933818669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6226","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","10:15:00","MST","2021-06-28 17:15:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818675","UTAHDWQ_WQX-NFSDIXIE210628-5949892-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949892-0628-4-C/results/933818675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6227","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","10:15:00","MST","2021-06-28 17:15:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818678","UTAHDWQ_WQX-NFSDIXIE210628-5949892-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949892-0628-4-C/results/933818678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6228","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","10:40:00","MST","2021-07-19 17:40:00",NA,"0.256",256,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818703","UTAHDWQ_WQX-NFSDIXIE210719-5949892-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210719-5949892-0719-4-C/results/933818703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6229","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","11:30:00","MST","2021-08-09 18:30:00",NA,"0.244",244,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818712","UTAHDWQ_WQX-NFSDIXIE210809-5949892-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210809-5949892-0809-4-C/results/933818712/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6230","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","12:20:00","MST","2021-09-20 19:20:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818738","UTAHDWQ_WQX-NFSDIXIE210920-5949892-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210920-5949892-0920-4-C/results/933818738/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6231","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-19","14:20:00","MST","2021-04-19 21:20:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818764","UTAHDWQ_WQX-NFSDIXIE210419-5949920-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service;National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210419-5949920-0419-4-C/results/933818764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6232","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","11:00:00","MST","2021-06-07 18:00:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818788","UTAHDWQ_WQX-NFSDIXIE210607-5949920-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949920-0607-4-C/results/933818788/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6233","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","11:00:00","MST","2021-06-07 18:00:00",NA,"0.394",394,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818791","UTAHDWQ_WQX-NFSDIXIE210607-5949920-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949920-0607-4-C/results/933818791/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6234","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","11:00:00","MST","2021-06-28 18:00:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818797","UTAHDWQ_WQX-NFSDIXIE210628-5949920-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949920-0628-4-C/results/933818797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6235","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","11:00:00","MST","2021-06-28 18:00:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818800","UTAHDWQ_WQX-NFSDIXIE210628-5949920-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949920-0628-4-C/results/933818800/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6236","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","11:05:00","MST","2021-07-19 18:05:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818825","UTAHDWQ_WQX-NFSDIXIE210719-5949920-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210719-5949920-0719-4-C/results/933818825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6237","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","12:20:00","MST","2021-08-09 19:20:00",NA,"0.22",220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818834","UTAHDWQ_WQX-NFSDIXIE210809-5949920-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210809-5949920-0809-4-C/results/933818834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6238","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","13:05:00","MST","2021-09-20 20:05:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818860","UTAHDWQ_WQX-NFSDIXIE210920-5949920-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210920-5949920-0920-4-C/results/933818860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6239","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-19","13:15:00","MST","2021-04-19 20:15:00",NA,"0.31",310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818886","UTAHDWQ_WQX-NFSDIXIE210419-5949930-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service;National Park Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210419-5949930-0419-4-C/results/933818886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6240","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","09:00:00","MST","2021-06-07 16:00:00",NA,"0.203",203,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818910","UTAHDWQ_WQX-NFSDIXIE210607-5949930-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949930-0607-4-C/results/933818910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6241","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","09:00:00","MST","2021-06-07 16:00:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818913","UTAHDWQ_WQX-NFSDIXIE210607-5949930-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949930-0607-4-C/results/933818913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2969","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-28","09:15:00","MST","2021-06-28 16:15:00",NA,"0.123",123,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818919","UTAHDWQ_WQX-NFSDIXIE210628-5949930-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949930-0628-4-C/results/933818919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6243","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-28","09:15:00","MST","2021-06-28 16:15:00",NA,"0.131",131,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818922","UTAHDWQ_WQX-NFSDIXIE210628-5949930-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949930-0628-4-C/results/933818922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6244","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","09:40:00","MST","2021-07-19 16:40:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818947","UTAHDWQ_WQX-NFSDIXIE210719-5949930-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210719-5949930-0719-4-C/results/933818947/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6245","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-09","09:35:00","MST","2021-08-09 16:35:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818956","UTAHDWQ_WQX-NFSDIXIE210809-5949930-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210809-5949930-0809-4-C/results/933818956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6246","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-20","10:21:00","MST","2021-09-20 17:21:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933818982","UTAHDWQ_WQX-NFSDIXIE210920-5949930-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210920-5949930-0920-4-C/results/933818982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6247","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-18","18:30:00","MST","2021-06-19 01:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819008","UTAHDWQ_WQX-BORLP210615-5952422-0618-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952422-0618-2-C/results/933819008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6248","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-18","18:30:00","MST","2021-06-19 01:30:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819012","UTAHDWQ_WQX-BORLP210615-5952422-0618-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952422-0618-2-C/results/933819012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6249","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-18","18:35:00","MST","2021-06-19 01:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819017","UTAHDWQ_WQX-BORLP210615-5952422-0618-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952422-0618-29-C/results/933819017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6250","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-18","18:35:00","MST","2021-06-19 01:35:00",NA,"0.132",132,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819021","UTAHDWQ_WQX-BORLP210615-5952422-0618-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952422-0618-29-C/results/933819021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6251","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","15:10:00","MST","2021-09-23 22:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819046","UTAHDWQ_WQX-BORLP210920-5952422-0923-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952422-0923-2-C/results/933819046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6252","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","15:10:00","MST","2021-09-23 22:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819050","UTAHDWQ_WQX-BORLP210920-5952422-0923-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952422-0923-2-C/results/933819050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6253","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","15:15:00","MST","2021-09-23 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819055","UTAHDWQ_WQX-BORLP210920-5952422-0923-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952422-0923-29-C/results/933819055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6254","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","15:15:00","MST","2021-09-23 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819059","UTAHDWQ_WQX-BORLP210920-5952422-0923-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952422-0923-29-C/results/933819059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9531","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-16","09:35:00","MST","2021-06-16 16:35:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819185","UTAHDWQ_WQX-BORLP210615-5952560-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952560-0616-2-C/results/933819185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6256","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","09:35:00","MST","2021-06-16 16:35:00",NA,"0.325",325,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819189","UTAHDWQ_WQX-BORLP210615-5952560-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952560-0616-2-C/results/933819189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6257","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-16","10:20:00","MST","2021-06-16 17:20:00",NA,"0.43",430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","89",89,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819194","UTAHDWQ_WQX-BORLP210615-5952560-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952560-0616-29-C/results/933819194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9534","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","10:20:00","MST","2021-06-16 17:20:00",NA,"0.515",515,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","89",89,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819198","UTAHDWQ_WQX-BORLP210615-5952560-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952560-0616-29-C/results/933819198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6259","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","11:55:00","MST","2021-09-21 18:55:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819223","UTAHDWQ_WQX-BORLP210920-5952560-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952560-0921-2-C/results/933819223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6260","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","11:55:00","MST","2021-09-21 18:55:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819227","UTAHDWQ_WQX-BORLP210920-5952560-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952560-0921-2-C/results/933819227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6261","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","12:15:00","MST","2021-09-21 19:15:00",NA,"0.457",457,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","83.5",83.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819232","UTAHDWQ_WQX-BORLP210920-5952560-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952560-0921-29-C/results/933819232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6262","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","12:15:00","MST","2021-09-21 19:15:00",NA,"0.479",479,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","83.5",83.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819236","UTAHDWQ_WQX-BORLP210920-5952560-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952560-0921-29-C/results/933819236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9539","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-16","11:50:00","MST","2021-06-16 18:50:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819261","UTAHDWQ_WQX-BORLP210615-5952590-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952590-0616-2-C/results/933819261/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6264","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","11:50:00","MST","2021-06-16 18:50:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819265","UTAHDWQ_WQX-BORLP210615-5952590-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952590-0616-2-C/results/933819265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6265","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-16","12:10:00","MST","2021-06-16 19:10:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","48.5",48.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819270","UTAHDWQ_WQX-BORLP210615-5952590-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952590-0616-29-C/results/933819270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9542","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-16","12:10:00","MST","2021-06-16 19:10:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","48.5",48.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819274","UTAHDWQ_WQX-BORLP210615-5952590-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952590-0616-29-C/results/933819274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6267","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","14:50:00","MST","2021-09-21 21:50:00",NA,"0.73",730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819299","UTAHDWQ_WQX-BORLP210920-5952590-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952590-0921-2-C/results/933819299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6268","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","14:50:00","MST","2021-09-21 21:50:00",NA,"0.719",719,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819303","UTAHDWQ_WQX-BORLP210920-5952590-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952590-0921-2-C/results/933819303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6269","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","15:15:00","MST","2021-09-21 22:15:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","45",45,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819308","UTAHDWQ_WQX-BORLP210920-5952590-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952590-0921-29-C/results/933819308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6270","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","15:15:00","MST","2021-09-21 22:15:00",NA,"0.531",531,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","45",45,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819312","UTAHDWQ_WQX-BORLP210920-5952590-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952590-0921-29-C/results/933819312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6271","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-18","11:50:00","MST","2021-06-18 18:50:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819336","UTAHDWQ_WQX-BORLP210615-5952700-0618-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952700-0618-2-C/results/933819336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6272","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-18","11:50:00","MST","2021-06-18 18:50:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819340","UTAHDWQ_WQX-BORLP210615-5952700-0618-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952700-0618-2-C/results/933819340/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6273","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-18","12:20:00","MST","2021-06-18 19:20:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.5",34.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819345","UTAHDWQ_WQX-BORLP210615-5952700-0618-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952700-0618-29-C/results/933819345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6274","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-18","12:20:00","MST","2021-06-18 19:20:00",NA,"0.461",461,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.5",34.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819349","UTAHDWQ_WQX-BORLP210615-5952700-0618-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952700-0618-29-C/results/933819349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6275","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","14:40:00","MST","2021-09-23 21:40:00",NA,"0.473",473,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819374","UTAHDWQ_WQX-BORLP210920-5952700-0923-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952700-0923-2-C/results/933819374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6276","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","14:40:00","MST","2021-09-23 21:40:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819378","UTAHDWQ_WQX-BORLP210920-5952700-0923-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952700-0923-2-C/results/933819378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6277","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","14:50:00","MST","2021-09-23 21:50:00",NA,"0.68",680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","29",29,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819383","UTAHDWQ_WQX-BORLP210920-5952700-0923-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952700-0923-29-C/results/933819383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6278","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","14:50:00","MST","2021-09-23 21:50:00",NA,"0.609",609,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","29",29,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819387","UTAHDWQ_WQX-BORLP210920-5952700-0923-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952700-0923-29-C/results/933819387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6279","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-18","12:30:00","MST","2021-06-18 19:30:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819412","UTAHDWQ_WQX-BORLP210615-5952740-0618-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952740-0618-4-C/results/933819412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6280","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-18","12:30:00","MST","2021-06-18 19:30:00",NA,"0.907",907,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819416","UTAHDWQ_WQX-BORLP210615-5952740-0618-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952740-0618-4-C/results/933819416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6281","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","15:50:00","MST","2021-09-23 22:50:00",NA,"0.608",608,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819441","UTAHDWQ_WQX-BORLP210920-5952740-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952740-0923-4-C/results/933819441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6282","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","15:50:00","MST","2021-09-23 22:50:00",NA,"0.571",571,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819445","UTAHDWQ_WQX-BORLP210920-5952740-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952740-0923-4-C/results/933819445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6283","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-17","09:00:00","MST","2021-06-17 16:00:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819470","UTAHDWQ_WQX-BORLP210615-5952770-0617-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952770-0617-2-C/results/933819470/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6284","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-17","09:00:00","MST","2021-06-17 16:00:00",NA,"0.579",579,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819474","UTAHDWQ_WQX-BORLP210615-5952770-0617-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952770-0617-2-C/results/933819474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6285","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-17","09:30:00","MST","2021-06-17 16:30:00",NA,"0.465",465,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","61.5",61.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819479","UTAHDWQ_WQX-BORLP210615-5952770-0617-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952770-0617-29-C/results/933819479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6286","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-17","09:30:00","MST","2021-06-17 16:30:00",NA,"0.536",536,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","61.5",61.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819483","UTAHDWQ_WQX-BORLP210615-5952770-0617-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952770-0617-29-C/results/933819483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6287","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","09:55:00","MST","2021-09-23 16:55:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819508","UTAHDWQ_WQX-BORLP210920-5952770-0923-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952770-0923-2-C/results/933819508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6288","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","09:55:00","MST","2021-09-23 16:55:00",NA,"0.666",666,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819512","UTAHDWQ_WQX-BORLP210920-5952770-0923-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952770-0923-2-C/results/933819512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6289","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","10:05:00","MST","2021-09-23 17:05:00",NA,"0.648",648,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","56.5",56.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819517","UTAHDWQ_WQX-BORLP210920-5952770-0923-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952770-0923-29-C/results/933819517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6290","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","10:05:00","MST","2021-09-23 17:05:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","56.5",56.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819521","UTAHDWQ_WQX-BORLP210920-5952770-0923-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952770-0923-29-C/results/933819521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6291","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-17","14:45:00","MST","2021-06-17 21:45:00",NA,"0.395",395,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819546","UTAHDWQ_WQX-BORLP210615-5952910-0617-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952910-0617-2-C/results/933819546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6292","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-17","14:45:00","MST","2021-06-17 21:45:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819550","UTAHDWQ_WQX-BORLP210615-5952910-0617-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952910-0617-2-C/results/933819550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6293","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-17","15:20:00","MST","2021-06-17 22:20:00",NA,"0.474",474,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","40.5",40.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819555","UTAHDWQ_WQX-BORLP210615-5952910-0617-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952910-0617-29-C/results/933819555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6294","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-17","15:20:00","MST","2021-06-17 22:20:00",NA,"0.629",629,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","40.5",40.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819559","UTAHDWQ_WQX-BORLP210615-5952910-0617-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952910-0617-29-C/results/933819559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9571","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","16:15:00","MST","2021-09-22 23:15:00",NA,"0.842",842,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819584","UTAHDWQ_WQX-BORLP210920-5952910-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952910-0922-2-C/results/933819584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6296","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","16:15:00","MST","2021-09-22 23:15:00",NA,"0.72",720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819588","UTAHDWQ_WQX-BORLP210920-5952910-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952910-0922-2-C/results/933819588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6297","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","16:20:00","MST","2021-09-22 23:20:00",NA,"0.695",695,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34",34,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819593","UTAHDWQ_WQX-BORLP210920-5952910-0922-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952910-0922-29-C/results/933819593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9574","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","16:20:00","MST","2021-09-22 23:20:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34",34,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819597","UTAHDWQ_WQX-BORLP210920-5952910-0922-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952910-0922-29-C/results/933819597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6299","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-05","09:10:00","MST","2021-08-05 16:10:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819624","UTAHDWQ_WQX-LAKES210802-5953860-0805-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","017","WIDE HOLLOW RES AB DAM 01","Lake",NA,"37.7852700000",37.78527,"-111.6349000000",-111.6349,"OK","14070005","UTAHDWQ_WQX-5953860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7852700000","-111.6349000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5953860-0805-2-C/results/933819624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6300","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-05","09:10:00","MST","2021-08-05 16:10:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819628","UTAHDWQ_WQX-LAKES210802-5953860-0805-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","017","WIDE HOLLOW RES AB DAM 01","Lake",NA,"37.7852700000",37.78527,"-111.6349000000",-111.6349,"OK","14070005","UTAHDWQ_WQX-5953860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7852700000","-111.6349000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5953860-0805-2-C/results/933819628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6301","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-04","14:40:00","MST","2021-08-04 21:40:00",NA,"0.49",490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819655","UTAHDWQ_WQX-LAKES210802-5954520-0804-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","017","LOWER BOWNS RESERVOIR","Lake",NA,"38.1085900000",38.10859,"-111.2698900000",-111.26989,"OK","14070003","UTAHDWQ_WQX-5954520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.1085900000","-111.2698900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5954520-0804-2-C/results/933819655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6302","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-04","14:40:00","MST","2021-08-04 21:40:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819659","UTAHDWQ_WQX-LAKES210802-5954520-0804-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","017","LOWER BOWNS RESERVOIR","Lake",NA,"38.1085900000",38.10859,"-111.2698900000",-111.26989,"OK","14070003","UTAHDWQ_WQX-5954520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.1085900000","-111.2698900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5954520-0804-2-C/results/933819659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9579","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-04","14:55:00","MST","2021-08-04 21:55:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819664","UTAHDWQ_WQX-LAKES210802-5954520-0804-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","017","LOWER BOWNS RESERVOIR","Lake",NA,"38.1085900000",38.10859,"-111.2698900000",-111.26989,"OK","14070003","UTAHDWQ_WQX-5954520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.1085900000","-111.2698900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5954520-0804-29-C/results/933819664/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6304","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-04","14:55:00","MST","2021-08-04 21:55:00",NA,"0.353",353,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.01",5.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819668","UTAHDWQ_WQX-LAKES210802-5954520-0804-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","017","LOWER BOWNS RESERVOIR","Lake",NA,"38.1085900000",38.10859,"-111.2698900000",-111.26989,"OK","14070003","UTAHDWQ_WQX-5954520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.1085900000","-111.2698900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5954520-0804-29-C/results/933819668/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6305","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-05","09:45:00","MST","2021-04-05 16:45:00",NA,"3.96",3960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819692","UTAHDWQ_WQX-BRI210405-5984855-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-5984855-0405-4-C/results/933819692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9582","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-05","09:45:00","MST","2021-04-05 16:45:00",NA,"3.72",3720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819695","UTAHDWQ_WQX-BRI210405-5984855-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-5984855-0405-4-C/results/933819695/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6307","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-17","09:15:00","MST","2021-05-17 16:15:00",NA,"6.78",6780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819719","UTAHDWQ_WQX-BRI210503-5984855-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-5984855-0517-4-C/results/933819719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6308","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-17","09:15:00","MST","2021-05-17 16:15:00",NA,"5.79",5790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819722","UTAHDWQ_WQX-BRI210503-5984855-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-5984855-0517-4-C/results/933819722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6309","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-07","09:15:00","MST","2021-06-07 16:15:00",NA,"7.75",7750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819729","UTAHDWQ_WQX-BRI210607-5984855-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-5984855-0607-4-C/results/933819729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6310","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-07","09:15:00","MST","2021-06-07 16:15:00",NA,"5.76",5760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819732","UTAHDWQ_WQX-BRI210607-5984855-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-5984855-0607-4-C/results/933819732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6311","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-19","09:35:00","MST","2021-07-19 16:35:00",NA,"8.5",8500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819756","UTAHDWQ_WQX-BRI210719-5984855-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-5984855-0719-4-C/results/933819756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6312","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-19","09:35:00","MST","2021-07-19 16:35:00",NA,"8.3",8300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819759","UTAHDWQ_WQX-BRI210719-5984855-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-5984855-0719-4-C/results/933819759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6313","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-10","08:00:00","MST","2021-08-10 15:00:00",NA,"9.02",9020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819766","UTAHDWQ_WQX-BRI210809-5984855-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-5984855-0810-4-C/results/933819766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6314","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-10","08:00:00","MST","2021-08-10 15:00:00",NA,"8.27",8270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819769","UTAHDWQ_WQX-BRI210809-5984855-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-5984855-0810-4-C/results/933819769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6315","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","08:20:00","MST","2021-09-21 15:20:00",NA,"11.4",11400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819792","UTAHDWQ_WQX-BRI210920-5984855-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-5984855-0921-4-C/results/933819792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6316","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-21","08:20:00","MST","2021-09-21 15:20:00",NA,"10.8",10800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819795","UTAHDWQ_WQX-BRI210920-5984855-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"41.4269200000",41.42692,"-112.0622100000",-112.06221,"OK","16010204","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4269200000","-112.0622100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-5984855-0921-4-C/results/933819795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6317","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-27","11:18:00","MST","2021-05-27 18:18:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819803","UTAHDWQ_WQX-UCASE2021-5989995-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0527-4-C/results/933819803/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6318","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-27","11:18:00","MST","2021-05-27 18:18:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819806","UTAHDWQ_WQX-UCASE2021-5989995-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0527-4-C/results/933819806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6319","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","16:00:00","MST","2021-06-03 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819832","UTAHDWQ_WQX-UCASE2021-5989995-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0603-4-C/results/933819832/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6320","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","16:00:00","MST","2021-06-03 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819835","UTAHDWQ_WQX-UCASE2021-5989995-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0603-4-C/results/933819835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6321","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-18","09:30:00","MST","2021-06-18 16:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819861","UTAHDWQ_WQX-UCASE2021-5989995-0618-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0618-4-C/results/933819861/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6322","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-18","09:30:00","MST","2021-06-18 16:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819864","UTAHDWQ_WQX-UCASE2021-5989995-0618-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0618-4-C/results/933819864/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9599","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-25","15:00:00","MST","2021-06-25 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819890","UTAHDWQ_WQX-UCASE2021-5989995-0625-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0625-4-C/results/933819890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6324","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-25","15:00:00","MST","2021-06-25 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819893","UTAHDWQ_WQX-UCASE2021-5989995-0625-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0625-4-C/results/933819893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6325","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-02","08:12:00","MST","2021-07-02 15:12:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819919","UTAHDWQ_WQX-UCASE2021-5989995-0702-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0702-4-C/results/933819919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9602","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-02","08:12:00","MST","2021-07-02 15:12:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819922","UTAHDWQ_WQX-UCASE2021-5989995-0702-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0702-4-C/results/933819922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6327","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-09","08:28:00","MST","2021-07-09 15:28:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819948","UTAHDWQ_WQX-UCASE2021-5989995-0709-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0709-4-C/results/933819948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6328","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-09","08:28:00","MST","2021-07-09 15:28:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819951","UTAHDWQ_WQX-UCASE2021-5989995-0709-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0709-4-C/results/933819951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6329","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-16","10:00:00","MST","2021-07-16 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819977","UTAHDWQ_WQX-UCASE2021-5989995-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0716-4-C/results/933819977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6330","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-16","10:00:00","MST","2021-07-16 17:00:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933819980","UTAHDWQ_WQX-UCASE2021-5989995-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0716-4-C/results/933819980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9607","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-30","11:00:00","MST","2021-07-30 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820006","UTAHDWQ_WQX-UCASE2021-5989995-0730-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0730-4-C/results/933820006/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6332","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-13","08:00:00","MST","2021-08-13 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820014","UTAHDWQ_WQX-UCASE2021-5989995-0813-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0813-4-C/results/933820014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6333","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-13","08:00:00","MST","2021-08-13 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820017","UTAHDWQ_WQX-UCASE2021-5989995-0813-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0813-4-C/results/933820017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9610","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-03","08:05:00","MST","2021-09-03 15:05:00",NA,"0.13",130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820043","UTAHDWQ_WQX-UCASE2021-5989995-0903-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0903-4-C/results/933820043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6335","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-03","08:05:00","MST","2021-09-03 15:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820046","UTAHDWQ_WQX-UCASE2021-5989995-0903-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0903-4-C/results/933820046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6336","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-10","13:26:00","MST","2021-09-10 20:26:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820072","UTAHDWQ_WQX-UCASE2021-5989995-0910-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0910-4-C/results/933820072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9613","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-10","13:26:00","MST","2021-09-10 20:26:00",NA,"0.34",340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820075","UTAHDWQ_WQX-UCASE2021-5989995-0910-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0910-4-C/results/933820075/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6338","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-17","12:00:00","MST","2021-09-17 19:00:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820100","UTAHDWQ_WQX-UCASE2021-5989995-0917-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0917-4-C/results/933820100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6339","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-17","12:00:00","MST","2021-09-17 19:00:00",NA,"0.086",86,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820103","UTAHDWQ_WQX-UCASE2021-5989995-0917-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0917-4-C/results/933820103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9616","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","13:30:00","MST","2021-09-23 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820128","UTAHDWQ_WQX-UCASE2021-5989995-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0923-4-C/results/933820128/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6341","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","13:30:00","MST","2021-09-23 20:30:00",NA,"0.505",505,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820131","UTAHDWQ_WQX-UCASE2021-5989995-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0923-4-C/results/933820131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6342","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-02","10:09:00","MST","2021-05-02 17:09:00",NA,"0.106",106,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820155","UTAHDWQ_WQX-BLMGSE210501-5994520-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"37.1841500000",37.18415,"-111.3684900000",-111.36849,"OK","14070006","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1841500000","-111.3684900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-5994520-0502-4-C/results/933820155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6343","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","08:39:00","MST","2021-06-10 15:39:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820161","UTAHDWQ_WQX-BLMGSE210609-5994520-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"37.1841500000",37.18415,"-111.3684900000",-111.36849,"OK","14070006","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1841500000","-111.3684900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-5994520-0610-4-C/results/933820161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6344","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-03","18:40:00","MST","2021-09-04 01:40:00",NA,"0.715",715,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820167","UTAHDWQ_WQX-BLMGSE210903-5994520-0903-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"37.1841500000",37.18415,"-111.3684900000",-111.36849,"OK","14070006","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1841500000","-111.3684900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-5994520-0903-4-C/results/933820167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6345","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-02","11:57:00","MST","2021-05-02 18:57:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820173","UTAHDWQ_WQX-BLMGSE210501-5994530-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-5994530-0502-4-C/results/933820173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6346","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-02","11:57:00","MST","2021-05-02 18:57:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820176","UTAHDWQ_WQX-BLMGSE210501-5994530-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-5994530-0502-4-C/results/933820176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6347","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","10:29:00","MST","2021-06-10 17:29:00",NA,"97.2",97200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820199","UTAHDWQ_WQX-BLMGSE210609-5994530-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-5994530-0610-4-C/results/933820199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6348","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-10","10:29:00","MST","2021-06-10 17:29:00",NA,"97.1",97100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820202","UTAHDWQ_WQX-BLMGSE210609-5994530-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-5994530-0610-4-C/results/933820202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6349","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-01","09:30:00","MST","2021-07-01 16:30:00",NA,"18.2",18200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820225","UTAHDWQ_WQX-BLMGSE210701-5994530-0701-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-5994530-0701-4-C/results/933820225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6350","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-01","09:30:00","MST","2021-07-01 16:30:00",NA,"18",18000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820228","UTAHDWQ_WQX-BLMGSE210701-5994530-0701-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-5994530-0701-4-C/results/933820228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6351","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-22","06:38:00","MST","2021-08-22 13:38:00",NA,"365",365000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820251","UTAHDWQ_WQX-BLMGSE210822-5994530-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-5994530-0822-4-C/results/933820251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6352","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-22","06:38:00","MST","2021-08-22 13:38:00",NA,"4.44",4440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820254","UTAHDWQ_WQX-BLMGSE210822-5994530-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-5994530-0822-4-C/results/933820254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6353","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-04","07:29:00","MST","2021-09-04 14:29:00",NA,"2.83",2830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820277","UTAHDWQ_WQX-BLMGSE210903-5994530-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-5994530-0904-4-C/results/933820277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6354","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-04","07:29:00","MST","2021-09-04 14:29:00",NA,"3.7",3700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820280","UTAHDWQ_WQX-BLMGSE210903-5994530-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-5994530-0904-4-C/results/933820280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6355","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-02","15:10:00","MST","2021-05-02 22:10:00",NA,"0.088",88,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820303","UTAHDWQ_WQX-BLMGSE210501-5994550-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-5994550-0502-4-C/results/933820303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6356","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-10","13:10:00","MST","2021-06-10 20:10:00",NA,"0.164",164,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820309","UTAHDWQ_WQX-BLMGSE210609-5994550-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-5994550-0610-4-C/results/933820309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6357","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-01","11:14:00","MST","2021-07-01 18:14:00",NA,"0.101",101,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820315","UTAHDWQ_WQX-BLMGSE210701-5994550-0701-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-5994550-0701-4-C/results/933820315/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6358","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-22","08:59:00","MST","2021-08-22 15:59:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820321","UTAHDWQ_WQX-BLMGSE210822-5994550-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-5994550-0822-4-C/results/933820321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6359","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-04","09:34:00","MST","2021-09-04 16:34:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820327","UTAHDWQ_WQX-BLMGSE210903-5994550-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-5994550-0904-4-C/results/933820327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6360","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-01","08:48:00","MST","2021-05-01 15:48:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820333","UTAHDWQ_WQX-BLMGSE210501-5994650-0501-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-5994650-0501-4-C/results/933820333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6361","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-09","08:20:00","MST","2021-06-09 15:20:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820339","UTAHDWQ_WQX-BLMGSE210609-5994650-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-5994650-0609-4-C/results/933820339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6362","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-01","14:15:00","MST","2021-07-01 21:15:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820345","UTAHDWQ_WQX-BLMGSE210701-5994650-0701-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-5994650-0701-4-C/results/933820345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-22","10:52:00","MST","2021-08-22 17:52:00",NA,"0.316",316,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820351","UTAHDWQ_WQX-BLMGSE210822-5994650-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-5994650-0822-4-C/results/933820351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6364","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-04","11:31:00","MST","2021-09-04 18:31:00",NA,"0.17",170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820357","UTAHDWQ_WQX-BLMGSE210903-5994650-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-5994650-0904-4-C/results/933820357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6365","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-23","17:50:00","MST","2021-04-24 00:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820367","UTAHDWQ_WQX-NPSCANR210423-5995202-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-5995202-0423-4-C/results/933820367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6366","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-23","17:50:00","MST","2021-04-24 00:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820370","UTAHDWQ_WQX-NPSCANR210423-5995202-0423-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-5995202-0423-4-C/results/933820370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6367","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","12:30:00","MST","2021-05-10 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820400","UTAHDWQ_WQX-NPSETAL210503-5995202-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-5995202-0510-4-C/results/933820400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6368","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","12:30:00","MST","2021-05-10 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820403","UTAHDWQ_WQX-NPSETAL210503-5995202-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-5995202-0510-4-C/results/933820403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6369","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-21","17:45:00","MST","2021-06-22 00:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820417","UTAHDWQ_WQX-NPSCANR210619-5995202-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-5995202-0621-4-C/results/933820417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6370","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-21","17:45:00","MST","2021-06-22 00:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820420","UTAHDWQ_WQX-NPSCANR210619-5995202-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-5995202-0621-4-C/results/933820420/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6371","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-28","15:45:00","MST","2021-07-28 22:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820450","UTAHDWQ_WQX-NPSETAL210706-5995202-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-5995202-0728-4-C/results/933820450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6372","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-28","15:45:00","MST","2021-07-28 22:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820453","UTAHDWQ_WQX-NPSETAL210706-5995202-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-5995202-0728-4-C/results/933820453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6373","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-26","16:50:00","MST","2021-08-26 23:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820483","UTAHDWQ_WQX-NPSCANR210826-5995202-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-5995202-0826-4-C/results/933820483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6374","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-26","16:50:00","MST","2021-08-26 23:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820486","UTAHDWQ_WQX-NPSCANR210826-5995202-0826-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-5995202-0826-4-C/results/933820486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6375","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-10","18:30:00","MST","2021-09-11 01:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820516","UTAHDWQ_WQX-NPSETAL210905-5995202-0910-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-5995202-0910-4-C/results/933820516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6376","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-10","18:30:00","MST","2021-09-11 01:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820519","UTAHDWQ_WQX-NPSETAL210905-5995202-0910-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-5995202-0910-4-C/results/933820519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6377","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-08","10:57:00","MST","2021-04-08 17:57:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820533","UTAHDWQ_WQX-NPSCAN210408-5995700-0408-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210408-5995700-0408-4-C/results/933820533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6378","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-08","10:57:00","MST","2021-04-08 17:57:00",NA,"0.106",106,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820536","UTAHDWQ_WQX-NPSCAN210408-5995700-0408-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210408-5995700-0408-4-C/results/933820536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6379","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","10:45:00","MST","2021-05-10 17:45:00",NA,"0.141",141,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820566","UTAHDWQ_WQX-NPSCAN210510-5995700-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-24","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210510-5995700-0510-4-C/results/933820566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6380","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","10:45:00","MST","2021-05-10 17:45:00",NA,"0.174",174,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820569","UTAHDWQ_WQX-NPSCAN210510-5995700-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210510-5995700-0510-4-C/results/933820569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6381","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-01","10:35:00","MST","2021-06-01 17:35:00",NA,"0.751",751,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820583","UTAHDWQ_WQX-NPSCAN210601-5995700-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210601-5995700-0601-4-C/results/933820583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6382","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-01","10:35:00","MST","2021-06-01 17:35:00",NA,"0.631",631,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820586","UTAHDWQ_WQX-NPSCAN210601-5995700-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210601-5995700-0601-4-C/results/933820586/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6383","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","10:47:00","MST","2021-07-26 17:47:00",NA,"0.56",560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820600","UTAHDWQ_WQX-NPSCAN210726-5995700-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210726-5995700-0726-4-C/results/933820600/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6384","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-26","10:47:00","MST","2021-07-26 17:47:00",NA,"0.517",517,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820603","UTAHDWQ_WQX-NPSCAN210726-5995700-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210726-5995700-0726-4-C/results/933820603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6385","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-27","10:45:00","MST","2021-08-27 17:45:00",NA,"0.373",373,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820633","UTAHDWQ_WQX-NPSCAN210827-5995700-0827-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210827-5995700-0827-4-C/results/933820633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6386","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-27","10:45:00","MST","2021-08-27 17:45:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820636","UTAHDWQ_WQX-NPSCAN210827-5995700-0827-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210827-5995700-0827-4-C/results/933820636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6387","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-23","09:25:00","MST","2021-08-23 16:25:00",NA,"0.117",117,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820659","UTAHDWQ_WQX-BLMGSE210822-4951766-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4951766-0823-4-C/results/933820659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6388","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-23","09:25:00","MST","2021-08-23 16:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820662","UTAHDWQ_WQX-BLMGSE210822-4951766-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4951766-0823-4-C/results/933820662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6389","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-04-14","15:00:00","MST","2021-04-14 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820688","UTAHDWQ_WQX-BLMMOAB210407-4957002-0414-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Moab Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4957002",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4957002-0414-4-C/results/933820688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6390","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-04-14","15:00:00","MST","2021-04-14 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820691","UTAHDWQ_WQX-BLMMOAB210407-4957002-0414-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","BLM Moab Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4957002",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4957002-0414-4-C/results/933820691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6391","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","15:00:00","MST","2021-09-22 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820698","UTAHDWQ_WQX-JRBBH210922-4990006-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4990006-0922-4-C/results/933820698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6392","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","15:00:00","MST","2021-09-22 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820701","UTAHDWQ_WQX-JRBBH210922-4990006-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4990006-0922-4-C/results/933820701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6393","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","17:00:00","MST","2021-07-28 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820727","UTAHDWQ_WQX-MUDCK210723-5931467-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931467-0727-4-C/results/933820727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6394","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-27","17:00:00","MST","2021-07-28 00:00:00",NA,"0.091",91,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820730","UTAHDWQ_WQX-MUDCK210723-5931467-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931467-0727-4-C/results/933820730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6395","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-26","10:43:00","MST","2021-05-26 17:43:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820737","UTAHDWQ_WQX-SPANISHFKR210526-5919942-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210526-5919942-0526-4-C/results/933820737/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6396","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:43:00","MST","2021-05-26 17:43:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820740","UTAHDWQ_WQX-SPANISHFKR210526-5919942-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210526-5919942-0526-4-C/results/933820740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6397","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-04","17:00:00","MST","2021-09-05 00:00:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820746","UTAHDWQ_WQX-BLMGSE210903-4951766-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4951766-0904-4-C/results/933820746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6398","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-04","17:00:00","MST","2021-09-05 00:00:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-933820749","UTAHDWQ_WQX-BLMGSE210903-4951766-0904-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-30T14:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4951766-0904-4-C/results/933820749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6399","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:10:00","MST","2021-06-14 18:10:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146924","UTAHDWQ_WQX-CHALKCK210614-4926203-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","Huff Ck at Flat Rock","River/Stream",NA,"40.9931000000",40.9931,"-111.2255000000",-111.2255,"OK","16020101","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9931000000","-111.2255000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926203-0614-4-C/results/934146924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6400","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:30:00","MST","2021-06-14 18:30:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146927","UTAHDWQ_WQX-CHALKCK210614-4926260-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"40.9630100000",40.96301,"-111.2349100000",-111.23491,"OK","16020101","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9630100000","-111.2349100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926260-0614-4-C/results/934146927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6401","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","11:48:00","MST","2021-06-14 18:48:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146930","UTAHDWQ_WQX-CHALKCK210614-4926290-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926290-0614-4-C/results/934146930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6402","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","15:51:00","MST","2021-06-14 22:51:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146933","UTAHDWQ_WQX-CHALKCK210614-4926350-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926350-0614-4-C/results/934146933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6403","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","15:51:00","MST","2021-06-14 22:51:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146936","UTAHDWQ_WQX-CHALKCK210614-4926352-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926352-0614-4-C/results/934146936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6404","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","13:33:00","MST","2021-06-14 20:33:00",NA,"0.305",305,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146939","UTAHDWQ_WQX-CHALKCK210614-4926355-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"40.9092700000",40.90927,"-111.2352500000",-111.23525,"OK","16020101","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9092700000","-111.2352500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926355-0614-4-C/results/934146939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6405","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","12:20:00","MST","2021-06-14 19:20:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146942","UTAHDWQ_WQX-CHALKCK210614-4926360-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926360-0614-4-C/results/934146942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6406","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","14:15:00","MST","2021-06-14 21:15:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146945","UTAHDWQ_WQX-CHALKCK210614-4926361-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926361-0614-4-C/results/934146945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6407","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","14:55:00","MST","2021-06-14 21:55:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146948","UTAHDWQ_WQX-CHALKCK210614-4926363-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926363-0614-4-C/results/934146948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6408","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","09:36:00","MST","2021-06-14 16:36:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146951","UTAHDWQ_WQX-CHALKCK210614-4926370-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926370-0614-4-C/results/934146951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6409","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","08:58:00","MST","2021-06-14 15:58:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146954","UTAHDWQ_WQX-CHALKCK210614-4926380-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926380-0614-4-C/results/934146954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6410","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-14","10:21:00","MST","2021-06-14 17:21:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934146957","UTAHDWQ_WQX-CHALKCK210614-4926390-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Non-Point Source (NPS) Monitoring",NA,"302;305",NA,NA,NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T10:54:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926390-0614-4-C/results/934146957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6411","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-23","10:40:00","MST","2021-09-23 17:40:00",NA,"0.181",181,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342015","UTAHDWQ_WQX-NPSCAN210923-5995700-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:14",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210923-5995700-0923-4-C/results/934342015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6412","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-23","10:40:00","MST","2021-09-23 17:40:00",NA,"0.196",196,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342018","UTAHDWQ_WQX-NPSCAN210923-5995700-0923-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","037","SQUARE TOWER SPRING","Spring",NA,"37.3855500000",37.38555,"-109.0812200000",-109.08122,"OK","14080202","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:14",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3855500000","-109.0812200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210923-5995700-0923-4-C/results/934342018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6413","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","09:28:00","MST","2021-09-22 16:28:00",NA,"0.388",388,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342768","UTAHDWQ_WQX-NPSCANR210922-4930010-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4930010-0922-4-C/results/934342768/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6414","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","09:28:00","MST","2021-09-22 16:28:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342771","UTAHDWQ_WQX-NPSCANR210922-4930010-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4930010-0922-4-C/results/934342771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6415","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-24","14:17:00","MST","2021-09-24 21:17:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342801","UTAHDWQ_WQX-NPSCANR210922-4930150-0924-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4930150-0924-4-C/results/934342801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6416","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-24","14:17:00","MST","2021-09-24 21:17:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342804","UTAHDWQ_WQX-NPSCANR210922-4930150-0924-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4930150-0924-4-C/results/934342804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6417","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","07:58:00","MST","2021-09-22 14:58:00",NA,"0.491",491,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342834","UTAHDWQ_WQX-NPSCANR210922-4952380-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4952380-0922-4-C/results/934342834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6418","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","07:58:00","MST","2021-09-22 14:58:00",NA,"0.518",518,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342837","UTAHDWQ_WQX-NPSCANR210922-4952380-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4952380-0922-4-C/results/934342837/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6419","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","09:52:00","MST","2021-09-22 16:52:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342867","UTAHDWQ_WQX-NPSCANR210922-4952400-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4952400-0922-4-C/results/934342867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6420","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","09:52:00","MST","2021-09-22 16:52:00",NA,"0.584",584,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342870","UTAHDWQ_WQX-NPSCANR210922-4952400-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4952400-0922-4-C/results/934342870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6421","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-24","16:12:00","MST","2021-09-24 23:12:00",NA,"0.654",654,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342900","UTAHDWQ_WQX-NPSCANR210922-4956290-0924-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4956290-0924-4-C/results/934342900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6422","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-24","16:12:00","MST","2021-09-24 23:12:00",NA,"0.73",730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934342903","UTAHDWQ_WQX-NPSCANR210922-4956290-0924-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted;Cooperative Monitoring",NA,"302;306",NA,NA,NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:13:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4956290-0924-4-C/results/934342903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6423","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-12","11:10:00","MST","2021-07-12 18:10:00",NA,"0.49",490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360074","UTAHDWQ_WQX-UCASE2021-4900352-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","Sage Creek about 275 meters below confl North Fork","River/Stream",NA,"41.7678500000",41.76785,"-111.1716600000",-111.17166,"OK","16010101","UTAHDWQ_WQX-4900352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7678500000","-111.1716600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900352-0712-4-C/results/934360074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6424","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-12","11:10:00","MST","2021-07-12 18:10:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360077","UTAHDWQ_WQX-UCASE2021-4900352-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","Sage Creek about 275 meters below confl North Fork","River/Stream",NA,"41.7678500000",41.76785,"-111.1716600000",-111.17166,"OK","16010101","UTAHDWQ_WQX-4900352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7678500000","-111.1716600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900352-0712-4-C/results/934360077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6425","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","10:00:00","MST","2021-09-22 17:00:00",NA,"0.304",304,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360109","UTAHDWQ_WQX-UCASE2021-4900602-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","South Branch Otter Creek 300m ab road xing ab confluence with Middle Branch","River/Stream",NA,"41.7058400000",41.70584,"-111.2365700000",-111.23657,"OK","16010101","UTAHDWQ_WQX-4900602",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7058400000","-111.2365700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900602-0922-4-C/results/934360109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6426","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:45:00","MST","2021-09-13 18:45:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360122","UTAHDWQ_WQX-UCASE2021-4900702-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","South Fork Sixmile Ck at 6575 feet elevation 450m ab road crossing","River/Stream",NA,"41.8119600000",41.81196,"-111.1800000000",-111.18,"Imprecise_lessthan3decimaldigits","16010101","UTAHDWQ_WQX-4900702",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8119600000","-111.1800000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900702-0913-4-C/results/934360122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6427","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-05","11:40:00","MST","2021-08-05 18:40:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360135","UTAHDWQ_WQX-UCASE2021-4900802-0805-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","Old Canyon 1.33 miles ab confluence with Little Creek","River/Stream",NA,"41.6462200000",41.64622,"-111.2811100000",-111.28111,"OK","16010101","UTAHDWQ_WQX-4900802",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6462200000","-111.2811100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900802-0805-4-C/results/934360135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6428","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-04","13:40:00","MST","2021-08-04 20:40:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360148","UTAHDWQ_WQX-UCASE2021-4900822-0804-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","Bear River 1.3 miles south of confluence with Otter Creek","River/Stream",NA,"41.7433300000",41.74333,"-111.0784400000",-111.07844,"OK","16010101","UTAHDWQ_WQX-4900822",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7433300000","-111.0784400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900822-0804-4-C/results/934360148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6429","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-04","11:07:00","MST","2021-08-04 18:07:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360161","UTAHDWQ_WQX-UCASE2021-4900852-0804-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","Bear River 1 km NW of Kearn Ranch (Crawford Mountain Rd and Mine Rd)","River/Stream",NA,"41.7012900000",41.70129,"-111.0968100000",-111.09681,"OK","16010101","UTAHDWQ_WQX-4900852",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7012900000","-111.0968100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900852-0804-4-C/results/934360161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6430","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-29","11:30:00","MST","2021-07-29 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360174","UTAHDWQ_WQX-UCASE2021-4900872-0729-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Hayden Fork 0.5 km ab confluence with Whiskey Creek and east of SR 150 milepost 38.6","River/Stream",NA,"40.7828900000",40.78289,"-110.8822100000",-110.88221,"OK","16010101","UTAHDWQ_WQX-4900872",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7828900000","-110.8822100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900872-0729-4-C/results/934360174/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6431","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-28","11:15:00","MST","2021-07-28 18:15:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360187","UTAHDWQ_WQX-UCASE2021-4900902-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","Rabbit Creek ab Big Bend Spring at 6615 feet elevation","River/Stream",NA,"41.8950400000",41.89504,"-111.1309900000",-111.13099,"OK","16010101","UTAHDWQ_WQX-4900902",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8950400000","-111.1309900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900902-0728-4-C/results/934360187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6432","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-27","11:15:00","MST","2021-07-27 18:15:00",NA,"0.433",433,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360200","UTAHDWQ_WQX-UCASE2021-4900922-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","Bear River 1.7km (1.1) mile north of Weston Lane on Mine Rd and west 140 meters","River/Stream",NA,"41.7341200000",41.73412,"-111.0667100000",-111.06671,"OK","16010101","UTAHDWQ_WQX-4900922",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7341200000","-111.0667100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900922-0727-4-C/results/934360200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6433","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-26","13:45:00","MST","2021-07-26 20:45:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360213","UTAHDWQ_WQX-UCASE2021-4900952-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","Otter Creek BL South Branch confluence and 0.5 mile BL Otter Creek Road xing","River/Stream",NA,"41.7108900000",41.71089,"-111.1800500000",-111.18005,"OK","16010101","UTAHDWQ_WQX-4900952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7108900000","-111.1800500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-08-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900952-0726-4-C/results/934360213/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6434","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-13","11:12:00","MST","2021-09-13 18:12:00",NA,"0.344",344,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360226","UTAHDWQ_WQX-UCASE2021-4933352-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","051","Current Creek 0.75 mile below Current Creek Dam spillway","River/Stream",NA,"40.3247400000",40.32474,"-111.0464800000",-111.04648,"OK","14060004","UTAHDWQ_WQX-4933352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3247400000","-111.0464800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933352-0913-4-C/results/934360226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6435","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-13","11:12:00","MST","2021-09-13 18:12:00",NA,"0.319",319,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360229","UTAHDWQ_WQX-UCASE2021-4933352-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","051","Current Creek 0.75 mile below Current Creek Dam spillway","River/Stream",NA,"40.3247400000",40.32474,"-111.0464800000",-111.04648,"OK","14060004","UTAHDWQ_WQX-4933352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3247400000","-111.0464800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933352-0913-4-C/results/934360229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6436","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-02","09:20:00","MST","2021-06-02 16:20:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360262","UTAHDWQ_WQX-UCASE2021-4944252-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Mammoth Creek 0.1 mile bl Mammoth Creek Road crossing","River/Stream",NA,"37.6271100000",37.62711,"-112.6431000000",-112.6431,"OK","16030001","UTAHDWQ_WQX-4944252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6271100000","-112.6431000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944252-0602-4-C/results/934360262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6437","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-02","09:20:00","MST","2021-06-02 16:20:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360265","UTAHDWQ_WQX-UCASE2021-4944252-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Mammoth Creek 0.1 mile bl Mammoth Creek Road crossing","River/Stream",NA,"37.6271100000",37.62711,"-112.6431000000",-112.6431,"OK","16030001","UTAHDWQ_WQX-4944252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6271100000","-112.6431000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944252-0602-4-C/results/934360265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6438","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-03","08:31:00","MST","2021-06-03 15:31:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360297","UTAHDWQ_WQX-UCASE2021-4944302-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","041","Salina Creek bl confluence with Beaver Creek","River/Stream",NA,"38.9348300000",38.93483,"-111.5384600000",-111.53846,"OK","16030003","UTAHDWQ_WQX-4944302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.9348300000","-111.5384600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944302-0603-4-C/results/934360297/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6439","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-03","08:31:00","MST","2021-06-03 15:31:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360300","UTAHDWQ_WQX-UCASE2021-4944302-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","041","Salina Creek bl confluence with Beaver Creek","River/Stream",NA,"38.9348300000",38.93483,"-111.5384600000",-111.53846,"OK","16030003","UTAHDWQ_WQX-4944302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.9348300000","-111.5384600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944302-0603-4-C/results/934360300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6440","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-22","11:00:00","MST","2021-09-22 18:00:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360332","UTAHDWQ_WQX-UCASE2021-4944352-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","001","South Fork Baker Canyon ab confluence with North Fork Baker Canyon","River/Stream",NA,"38.2778500000",38.27785,"-112.5521600000",-112.55216,"OK","16030007","UTAHDWQ_WQX-4944352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2778500000","-112.5521600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944352-0922-4-C/results/934360332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6441","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-22","11:00:00","MST","2021-09-22 18:00:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360335","UTAHDWQ_WQX-UCASE2021-4944352-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","001","South Fork Baker Canyon ab confluence with North Fork Baker Canyon","River/Stream",NA,"38.2778500000",38.27785,"-112.5521600000",-112.55216,"OK","16030007","UTAHDWQ_WQX-4944352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2778500000","-112.5521600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944352-0922-4-C/results/934360335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6442","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-25","08:50:00","MST","2021-05-25 15:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360367","UTAHDWQ_WQX-UCASE2021-4955252-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","037","Johnson Creek headwaters above Cooley Gulch and ab Johnson Creek Rd xing","River/Stream",NA,"37.8281400000",37.82814,"-109.4833400000",-109.48334,"OK","14080201","UTAHDWQ_WQX-4955252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8281400000","-109.4833400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955252-0525-4-C/results/934360367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6443","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-25","08:50:00","MST","2021-05-25 15:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360370","UTAHDWQ_WQX-UCASE2021-4955252-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","037","Johnson Creek headwaters above Cooley Gulch and ab Johnson Creek Rd xing","River/Stream",NA,"37.8281400000",37.82814,"-109.4833400000",-109.48334,"OK","14080201","UTAHDWQ_WQX-4955252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8281400000","-109.4833400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955252-0525-4-C/results/934360370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6444","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-26","10:09:00","MST","2021-05-26 17:09:00",NA,"0.147",147,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360402","UTAHDWQ_WQX-UCASE2021-4955312-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Oak Creek 0.25 mile ab diversion in Capitol Reef National Park","River/Stream",NA,"38.0840100000",38.08401,"-111.1409800000",-111.14098,"OK","14070003","UTAHDWQ_WQX-4955312",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.0840100000","-111.1409800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955312-0526-4-C/results/934360402/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6445","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-26","10:09:00","MST","2021-05-26 17:09:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360405","UTAHDWQ_WQX-UCASE2021-4955312-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Oak Creek 0.25 mile ab diversion in Capitol Reef National Park","River/Stream",NA,"38.0840100000",38.08401,"-111.1409800000",-111.14098,"OK","14070003","UTAHDWQ_WQX-4955312",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.0840100000","-111.1409800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955312-0526-4-C/results/934360405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6446","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-08","10:00:00","MST","2021-09-08 17:00:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360439","UTAHDWQ_WQX-UCASE2021-4977052-0908-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","003","Johnson Creek Left Hand Fork 0.4 mile bl Browns Canyon","River/Stream",NA,"41.8873400000",41.88734,"-113.5314500000",-113.53145,"OK","17040210","UTAHDWQ_WQX-4977052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8873400000","-113.5314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4977052-0908-4-C/results/934360439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6447","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-08","10:00:00","MST","2021-09-08 17:00:00",NA,"0.633",633,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360442","UTAHDWQ_WQX-UCASE2021-4977052-0908-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","003","Johnson Creek Left Hand Fork 0.4 mile bl Browns Canyon","River/Stream",NA,"41.8873400000",41.88734,"-113.5314500000",-113.53145,"OK","17040210","UTAHDWQ_WQX-4977052",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8873400000","-113.5314500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4977052-0908-4-C/results/934360442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6448","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","09:44:00","MST","2021-06-15 16:44:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360473","UTAHDWQ_WQX-UCASE2021-4999102-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","049","Nebo Creek 55 meters ab National Forest Boundary","River/Stream",NA,"39.8694700000",39.86947,"-111.5856300000",-111.58563,"OK","16020202","UTAHDWQ_WQX-4999102",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.8694700000","-111.5856300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999102-0615-4-C/results/934360473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6449","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","09:44:00","MST","2021-06-15 16:44:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360476","UTAHDWQ_WQX-UCASE2021-4999102-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","049","Nebo Creek 55 meters ab National Forest Boundary","River/Stream",NA,"39.8694700000",39.86947,"-111.5856300000",-111.58563,"OK","16020202","UTAHDWQ_WQX-4999102",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.8694700000","-111.5856300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999102-0615-4-C/results/934360476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6450","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","10:00:00","MST","2021-09-15 17:00:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360508","UTAHDWQ_WQX-UCASE2021-4999152-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","051","Daniels Creek 0.75 mile bl Whiskey Spring picnic site","River/Stream",NA,"40.4166300000",40.41663,"-111.3335700000",-111.33357,"OK","16020203","UTAHDWQ_WQX-4999152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4166300000","-111.3335700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999152-0915-4-C/results/934360508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6451","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","10:00:00","MST","2021-09-15 17:00:00",NA,"0.186",186,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360511","UTAHDWQ_WQX-UCASE2021-4999152-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","051","Daniels Creek 0.75 mile bl Whiskey Spring picnic site","River/Stream",NA,"40.4166300000",40.41663,"-111.3335700000",-111.33357,"OK","16020203","UTAHDWQ_WQX-4999152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4166300000","-111.3335700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999152-0915-4-C/results/934360511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6452","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-15","10:40:00","MST","2021-07-15 17:40:00",NA,"0.156",156,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360542","UTAHDWQ_WQX-UCASE2021-4999202-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","Mill B South Fork 0.9 mile above Big Cottonwood Creek confluence","River/Stream",NA,"40.6222000000",40.6222,"-111.7114000000",-111.7114,"OK","16020204","UTAHDWQ_WQX-4999202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6222000000","-111.7114000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999202-0715-4-C/results/934360542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6453","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-15","10:40:00","MST","2021-07-15 17:40:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-934360545","UTAHDWQ_WQX-UCASE2021-4999202-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","Mill B South Fork 0.9 mile above Big Cottonwood Creek confluence","River/Stream",NA,"40.6222000000",40.6222,"-111.7114000000",-111.7114,"OK","16020204","UTAHDWQ_WQX-4999202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-03-31T11:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6222000000","-111.7114000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999202-0715-4-C/results/934360545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6454","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2020-10-07","15:15:00","MST","2020-10-07 22:15:00",NA,"15.1",15100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213339","UTAHDWQ_WQX-UTLK201005-4995210-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995210-1007-4-C/results/936213339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6455","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2020-10-07","15:15:00","MST","2020-10-07 22:15:00",NA,"14.6",14600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213344","UTAHDWQ_WQX-UTLK201005-4995210-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2020-10-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995210-1007-4-C/results/936213344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6456","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-03-17","11:30:00","MST","2021-03-17 18:30:00",NA,"11.4",11400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213372","UTAHDWQ_WQX-UTLK210315-4995210-0317-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995210-0317-4-C/results/936213372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6457","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-03-17","11:30:00","MST","2021-03-17 18:30:00",NA,"11.5",11500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213377","UTAHDWQ_WQX-UTLK210315-4995210-0317-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995210-0317-4-C/results/936213377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6458","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-05-10","14:00:00","MST","2021-05-10 21:00:00",NA,"16.2",16200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213396","UTAHDWQ_WQX-UTLK210510-4995250-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995250-0510-4-C/results/936213396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6459","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-05-10","14:00:00","MST","2021-05-10 21:00:00",NA,"16.2",16200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213401","UTAHDWQ_WQX-UTLK210510-4995250-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995250-0510-4-C/results/936213401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6460","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-06-15","14:30:00","MST","2021-06-15 21:30:00",NA,"24.5",24500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213430","UTAHDWQ_WQX-UTLK210614-4995250-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995250-0615-4-C/results/936213430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6461","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-06-15","14:30:00","MST","2021-06-15 21:30:00",NA,"24.9",24900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213435","UTAHDWQ_WQX-UTLK210614-4995250-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995250-0615-4-C/results/936213435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6462","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-07-12","13:50:00","MST","2021-07-12 20:50:00",NA,"17.8",17800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213451","UTAHDWQ_WQX-UTLK210712-4995210-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995210-0712-4-C/results/936213451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6463","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-07-12","13:50:00","MST","2021-07-12 20:50:00",NA,"17.6",17600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213456","UTAHDWQ_WQX-UTLK210712-4995210-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995210-0712-4-C/results/936213456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6464","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-08-17","12:10:00","MST","2021-08-17 19:10:00",NA,"15.9",15900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213484","UTAHDWQ_WQX-UTLK210816-4995210-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995210-0817-4-C/results/936213484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6465","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-08-17","12:10:00","MST","2021-08-17 19:10:00",NA,"15.8",15800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213489","UTAHDWQ_WQX-UTLK210816-4995210-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995210-0817-4-C/results/936213489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6466","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-15","12:15:00","MST","2021-09-15 19:15:00",NA,"18.5",18500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213505","UTAHDWQ_WQX-UTLK210913-4995210-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995210-0915-4-C/results/936213505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6467","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-09-15","12:15:00","MST","2021-09-15 19:15:00",NA,"18.8",18800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-936213510","UTAHDWQ_WQX-UTLK210913-4995210-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-04-20T17:00:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995210-0915-4-C/results/936213510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"29","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-01-24","12:30:00","MST","2022-01-24 19:30:00",NA,"0.811",811,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-937784278","UTEMTN-UT 1184S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","RARE - 1","Well",NA,"37.5122083300",37.51220833,"-109.4942416700",-109.49424167,"OK","14080201","UTEMTN-RARE - 1",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-05-04T22:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5122083300","-109.4942416700","Final",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201184S/results/937784278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-01-24","12:35:00","MST","2022-01-24 19:35:00",NA,"0.760",760,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-937784350","UTEMTN-UT 1185Q","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","RARE - 1","Well",NA,"37.5122083300",37.51220833,"-109.4942416700",-109.49424167,"OK","14080201","UTEMTN-RARE - 1",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-05-04T22:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5122083300","-109.4942416700","Final",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201185Q/results/937784350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"31","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-04-05","09:02:00","MST","2022-04-05 16:02:00",NA,"0.961",961,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-937809567","UTEMTN-UT 1186S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","RARE - 1","Well",NA,"37.5122083300",37.51220833,"-109.4942416700",-109.49424167,"OK","14080201","UTEMTN-RARE - 1",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-05-05T21:46:35",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5122083300","-109.4942416700","Final",NA,NA,NA,NA,NA,NA,"2022-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201186S/results/937809567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-04-05","13:07:00","MST","2022-04-05 20:07:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-937809639","UTEMTN-UT 1187S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","white mesa ground water monitoring well; west","Well","monitoring well downgradient of White Mesa Uranium Mill, southwest","37.4897350000",37.489735,"-109.5180720000",-109.518072,"OK","14080201","UTEMTN-WM_GWMW_W",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-05-05T21:46:37",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.4897350000","-109.5180720000","Final",NA,NA,NA,NA,NA,NA,"2022-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201187S/results/937809639/resdetectqntlmts",NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"6472","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-21","12:30:00","MST","2021-09-21 19:30:00",NA,"0.187",187,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-939094801","UTAHDWQ_WQX-UCASE2021-4900552-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","Big Creek 100 meters below gaging station","River/Stream",NA,"41.6104900000",41.61049,"-111.2539800000",-111.25398,"OK","16010101","UTAHDWQ_WQX-4900552",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-05-17T17:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6104900000","-111.2539800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900552-0921-4-C/results/939094801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6473","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-14","09:30:00","MST","2021-09-14 16:30:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-939094809","UTAHDWQ_WQX-UCASE2021-4900652-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","South Branch Otter Creek 260m bl Otter Creek cutoff Rd xing","River/Stream",NA,"41.7024000000",41.7024,"-111.2539400000",-111.25394,"OK","16010101","UTAHDWQ_WQX-4900652",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-05-17T17:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7024000000","-111.2539400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900652-0914-4-C/results/939094809/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6474","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-16","14:30:00","MST","2021-09-16 21:30:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-939094817","UTAHDWQ_WQX-UCASE2021-4900742-0916-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Hayden Fork 0.5 mile ab Beaverview CG and east of SR 150 milepost 41.1","River/Stream",NA,"40.8156700000",40.81567,"-110.8662700000",-110.86627,"OK","16010101","UTAHDWQ_WQX-4900742",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-05-17T17:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156700000","-110.8662700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900742-0916-4-C/results/939094817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6475","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-09-16","11:00:00","MST","2021-09-16 18:00:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-939094825","UTAHDWQ_WQX-UCASE2021-4900772-0916-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Stillwater Fork 500 meters ab trailhead at Christmas Meadows Campground","River/Stream",NA,"40.8195000000",40.8195,"-110.8022400000",-110.80224,"OK","16010101","UTAHDWQ_WQX-4900772",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-05-17T17:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8195000000","-110.8022400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900772-0916-4-C/results/939094825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-05-19","11:57:00","MST","2022-05-19 18:57:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-942562323","NTHRNUTE-DRB:202205191157:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-22T09:14:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202205191157%3ASR/results/942562323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"2051","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2022-05-19","11:57:00","MST","2022-05-19 18:57:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-942562325","NTHRNUTE-DRB:202205191157:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-22T09:14:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"12","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-05-19","14:09:00","MST","2022-05-19 21:09:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-942562374","NTHRNUTE-G4C:202205191409:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","4 Corners","River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","40.2415300000",40.24153,"-109.8590500000",-109.85905,"OK","14060003","NTHRNUTE-G4C",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-22T09:14:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2415300000","-109.8590500000","Final",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-G4C%3A202205191409%3ASR/results/942562374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"2052","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2022-05-19","14:09:00","MST","2022-05-19 21:09:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-942562376","NTHRNUTE-G4C:202205191409:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","4 Corners","River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","40.2415300000",40.24153,"-109.8590500000",-109.85905,"OK","14060003","NTHRNUTE-G4C",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-22T09:14:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2415300000","-109.8590500000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"2053","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2022-05-23","12:20:00","MST","2022-05-23 19:20:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-942562429","NTHRNUTE-UFD:202205231220:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Ft. Duchesne","River/Stream","Uintah River at US 40 Bridge","40.3019500000",40.30195,"-109.8531500000",-109.85315,"OK","14060003","NTHRNUTE-UFD",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-22T09:14:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3019500000","-109.8531500000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"42","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-05-23","12:20:00","MST","2022-05-23 19:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-942562442","NTHRNUTE-UFD:202205231220:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Ft. Duchesne","River/Stream","Uintah River at US 40 Bridge","40.3019500000",40.30195,"-109.8531500000",-109.85315,"OK","14060003","NTHRNUTE-UFD",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-22T09:14:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3019500000","-109.8531500000","Final",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-UFD%3A202205231220%3ASR/results/942562442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"7","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-05-19","11:28:00","MST","2022-05-19 18:28:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-942562502","NTHRNUTE-DDC:202205191128:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","40.2158400000",40.21584,"-109.7838900000",-109.78389,"OK","14060003","NTHRNUTE-DDC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-22T09:14:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2158400000","-109.7838900000","Final",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202205191128%3ASR/results/942562502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2054","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2022-05-19","11:28:00","MST","2022-05-19 18:28:00",NA,NA,NA,"NA - Not Available","Actual","Not Reviewed","Not Reviewed",NA,NA,"No Result Value","Not Reviewed","Not Reported",NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Calculation",NA,"Calculation","NTHRNUTE",NA,"Not Reviewed","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-942562504","NTHRNUTE-DDC:202205191128:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","40.2158400000",40.21584,"-109.7838900000",-109.78389,"OK","14060003","NTHRNUTE-DDC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-22T09:14:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2158400000","-109.7838900000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"45","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-05-17","15:45:00","MST","2022-05-17 22:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-943147982","NTHRNUTE-IDR:202205171545:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","INDIAN CREEK","River/Stream",NA,"40.1572222222",40.1572222222,"-110.4050000000",-110.405,"OK","14060004","NTHRNUTE-IDR",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-28T07:39:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1572222222","-110.4050000000","Final",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202205171545%3ASR/results/943147982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"46","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-05-17","14:17:00","MST","2022-05-17 21:17:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-943147993","NTHRNUTE-RKD:202205171417:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","Rock Creek","River/Stream","Knights Diversion below 3rd bridge.","40.3110798300",40.31107983,"-110.4938520000",-110.493852,"OK","14060003","NTHRNUTE-RKD",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-28T07:39:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3110798300","-110.4938520000","Final",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-RKD%3A202205171417%3ASR/results/943147993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"47","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-05-18","10:11:00","MST","2022-05-18 17:11:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-943148053","NTHRNUTE-WRB:202205181011:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Whiterocks River 2","River/Stream","River above Uriah Heeps.","40.5331460000",40.533146,"-109.9237518300",-109.92375183,"OK","14060003","NTHRNUTE-WRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-06-28T07:39:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5331460000","-109.9237518300","Final",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202205181011%3ASR/results/943148053/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1803","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"0.1",100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386647","WFWQC_UT-WFWQC0421-4994790-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Utah Lake","River/Stream",NA,"40.3609517430",40.360951743,"-111.8985135820",-111.898513582,"OK","16020201","WFWQC_UT-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:37",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1804","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"0.1",100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386660","WFWQC_UT-WFWQC0521-4994790-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Utah Lake","River/Stream",NA,"40.3609517430",40.360951743,"-111.8985135820",-111.898513582,"OK","16020201","WFWQC_UT-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:37",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1805","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386673","WFWQC_UT-WFWQC0621-4994790-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Utah Lake","River/Stream",NA,"40.3609517430",40.360951743,"-111.8985135820",-111.898513582,"OK","16020201","WFWQC_UT-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:37",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1806","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386686","WFWQC_UT-WFWQC0721-4994790-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Utah Lake","River/Stream",NA,"40.3609517430",40.360951743,"-111.8985135820",-111.898513582,"OK","16020201","WFWQC_UT-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:37",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1807","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"0.074",74,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386699","WFWQC_UT-WFWQC0921-4994790-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Utah Lake","River/Stream",NA,"40.3609517430",40.360951743,"-111.8985135820",-111.898513582,"OK","16020201","WFWQC_UT-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1808","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386712","WFWQC_UT-WFWQC0921-4994790-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Utah Lake","River/Stream",NA,"40.3609517430",40.360951743,"-111.8985135820",-111.898513582,"OK","16020201","WFWQC_UT-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1809","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"0.936",936,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386725","WFWQC_UT-WFWQC0121-4994730-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1810","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"0.984",984,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386738","WFWQC_UT-WFWQC0221-4994730-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1811","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"0.331",331,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386751","WFWQC_UT-WFWQC0321-4994730-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1812","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"0.1",100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386764","WFWQC_UT-WFWQC0421-4994730-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1813","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"0.105",105,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386777","WFWQC_UT-WFWQC0521-4994730-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1814","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"0.214",214,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386790","WFWQC_UT-WFWQC0621-4994730-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1815","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"0.138",138,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386803","WFWQC_UT-WFWQC0721-4994730-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1816","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386816","WFWQC_UT-WFWQC0921-4994730-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1817","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386829","WFWQC_UT-WFWQC0921-4994730-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1818","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"0.34",340,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386842","WFWQC_UT-WFWQC1021-4994730-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1819","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"1.4",1400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386861","WFWQC_UT-WFWQC1121-4994730-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1820","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"1.01",1010,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386874","WFWQC_UT-WFWQC1221-4994730-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1821","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"1.25",1250,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386900","WFWQC_UT-WFWQC0121-4994600-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1822","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"1.25",1250,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386913","WFWQC_UT-WFWQC0221-4994600-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1823","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"0.875",875,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386926","WFWQC_UT-WFWQC0321-4994600-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1824","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"1.3",1300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386939","WFWQC_UT-WFWQC0421-4994600-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1825","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"1.32",1320,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386952","WFWQC_UT-WFWQC0521-4994600-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1826","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"1.32",1320,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386965","WFWQC_UT-WFWQC0621-4994600-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1827","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"1.93",1930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386978","WFWQC_UT-WFWQC0721-4994600-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1828","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"1.51",1510,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943386991","WFWQC_UT-WFWQC0921-4994600-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1829","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"1.16",1160,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387004","WFWQC_UT-WFWQC0921-4994600-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1830","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"0.855",855,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387017","WFWQC_UT-WFWQC1021-4994600-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1831","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"1.39",1390,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387036","WFWQC_UT-WFWQC1121-4994600-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1832","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"1.39",1390,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387049","WFWQC_UT-WFWQC1221-4994600-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1833","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"3.98",3980,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387075","WFWQC_UT-WFWQC0121-4994270-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1834","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"4.12",4120,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387088","WFWQC_UT-WFWQC0221-4994270-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1714","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"3.85",3850,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387101","WFWQC_UT-WFWQC0321-4994270-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1836","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"4.04",4040,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387114","WFWQC_UT-WFWQC0421-4994270-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1837","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"3.08",3080,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387127","WFWQC_UT-WFWQC0521-4994270-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1838","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"3.87",3870,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387140","WFWQC_UT-WFWQC0621-4994270-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1839","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"3.56",3560,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387153","WFWQC_UT-WFWQC0721-4994270-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1840","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"2.59",2590,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387166","WFWQC_UT-WFWQC0921-4994270-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1841","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"3.21",3210,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387179","WFWQC_UT-WFWQC0921-4994270-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1842","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"2.92",2920,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387192","WFWQC_UT-WFWQC1021-4994270-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1843","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"4.05",4050,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387211","WFWQC_UT-WFWQC1121-4994270-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1844","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"3.63",3630,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387224","WFWQC_UT-WFWQC1221-4994270-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1845","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"4.18",4180,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387250","WFWQC_UT-WFWQC0121-4994170-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1846","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"4.15",4150,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387263","WFWQC_UT-WFWQC0221-4994170-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1847","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"3.82",3820,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387276","WFWQC_UT-WFWQC0321-4994170-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"754","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"3.12",3120,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387289","WFWQC_UT-WFWQC0421-4994170-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"147","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"2.71",2710,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387302","WFWQC_UT-WFWQC0521-4994170-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1850","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"2.87",2870,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387315","WFWQC_UT-WFWQC0621-4994170-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1851","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"2.48",2480,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387328","WFWQC_UT-WFWQC0721-4994170-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"393","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"1.92",1920,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387341","WFWQC_UT-WFWQC0921-4994170-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"758","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"1.62",1620,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387354","WFWQC_UT-WFWQC0921-4994170-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1854","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"2.98",2980,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387367","WFWQC_UT-WFWQC1021-4994170-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1855","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"3.81",3810,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387386","WFWQC_UT-WFWQC1121-4994170-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1856","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"3.38",3380,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387399","WFWQC_UT-WFWQC1221-4994170-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1857","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"8.16",8160,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387425","WFWQC_UT-WFWQC0121-4994160-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1858","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"4.06",4060,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387438","WFWQC_UT-WFWQC0221-4994160-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1859","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"9.08",9080,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387451","WFWQC_UT-WFWQC0321-4994160-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1860","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"8.33",8330,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387464","WFWQC_UT-WFWQC0421-4994160-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1861","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"8.75",8750,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387477","WFWQC_UT-WFWQC0521-4994160-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1862","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"8.45",8450,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387490","WFWQC_UT-WFWQC0621-4994160-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1863","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"8.05",8050,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387503","WFWQC_UT-WFWQC0721-4994160-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1864","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"7.66",7660,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387516","WFWQC_UT-WFWQC0921-4994160-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1865","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"6.87",6870,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387529","WFWQC_UT-WFWQC0921-4994160-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1866","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"11.1",11100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387542","WFWQC_UT-WFWQC1021-4994160-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1867","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"11.1",11100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387561","WFWQC_UT-WFWQC1121-4994160-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1868","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"8.91",8910,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387574","WFWQC_UT-WFWQC1221-4994160-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1869","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"6.45",6450,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387600","WFWQC_UT-WFWQC0121-4994100-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1870","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"6.21",6210,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387613","WFWQC_UT-WFWQC0221-4994100-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1871","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"6.14",6140,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387626","WFWQC_UT-WFWQC0321-4994100-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1872","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"4.46",4460,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387639","WFWQC_UT-WFWQC0421-4994100-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1873","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"5",5000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387652","WFWQC_UT-WFWQC0521-4994100-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1874","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"4.4",4400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387665","WFWQC_UT-WFWQC0621-4994100-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1875","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"3.61",3610,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387678","WFWQC_UT-WFWQC0721-4994100-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1876","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"3.53",3530,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387691","WFWQC_UT-WFWQC0921-4994100-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1877","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"3.47",3470,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387704","WFWQC_UT-WFWQC0921-4994100-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1878","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"5.03",5030,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387717","WFWQC_UT-WFWQC1021-4994100-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1879","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"6.94",6940,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387736","WFWQC_UT-WFWQC1121-4994100-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1880","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"5.55",5550,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387749","WFWQC_UT-WFWQC1221-4994100-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1881","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"1.32",1320,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387775","WFWQC_UT-WFWQC0121-4993580-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1761","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"0.931",931,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387788","WFWQC_UT-WFWQC0221-4993580-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1883","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"1.93",1930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387801","WFWQC_UT-WFWQC0321-4993580-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1763","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"0.427",427,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387814","WFWQC_UT-WFWQC0421-4993580-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1885","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"0.489",489,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387827","WFWQC_UT-WFWQC0521-4993580-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1765","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"0.102",102,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387840","WFWQC_UT-WFWQC0621-4993580-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1887","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"0.937",937,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387853","WFWQC_UT-WFWQC0721-4993580-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1767","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387866","WFWQC_UT-WFWQC0921-4993580-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1889","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"0.138",138,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387879","WFWQC_UT-WFWQC0921-4993580-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1769","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"0.65",650,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387892","WFWQC_UT-WFWQC1021-4993580-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1891","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"1.04",1040,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387911","WFWQC_UT-WFWQC1121-4993580-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1771","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387924","WFWQC_UT-WFWQC1221-4993580-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1893","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"0.626",626,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387950","WFWQC_UT-WFWQC0121-4992950-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1773","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"0.617",617,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387963","WFWQC_UT-WFWQC0221-4992950-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1895","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"0.679",679,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387976","WFWQC_UT-WFWQC0321-4992950-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1775","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"0.125",125,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943387989","WFWQC_UT-WFWQC0421-4992950-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1897","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"0.287",287,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388002","WFWQC_UT-WFWQC0521-4992950-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1898","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"0.242",242,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388015","WFWQC_UT-WFWQC0621-4992950-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1899","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"0.437",437,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388028","WFWQC_UT-WFWQC0721-4992950-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1900","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388041","WFWQC_UT-WFWQC0921-4992950-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1901","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"0.13",130,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388054","WFWQC_UT-WFWQC0921-4992950-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1902","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"0.471",471,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388067","WFWQC_UT-WFWQC1021-4992950-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1903","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"0.6",600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388086","WFWQC_UT-WFWQC1121-4992950-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1904","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"0.62",620,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388099","WFWQC_UT-WFWQC1221-4992950-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1784","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"4.81",4810,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388125","WFWQC_UT-WFWQC0121-4992880-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1785","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"3.87",3870,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388138","WFWQC_UT-WFWQC0221-4992880-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1786","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"3.98",3980,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388151","WFWQC_UT-WFWQC0321-4992880-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1787","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"2.37",2370,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388164","WFWQC_UT-WFWQC0421-4992880-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1909","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"1.49",1490,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388177","WFWQC_UT-WFWQC0521-4992880-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1910","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"2.6",2600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388190","WFWQC_UT-WFWQC0621-4992880-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1911","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"2.9",2900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388203","WFWQC_UT-WFWQC0721-4992880-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1912","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"1.82",1820,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388216","WFWQC_UT-WFWQC0921-4992880-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1792","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"2.08",2080,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388229","WFWQC_UT-WFWQC0921-4992880-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1914","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"3.61",3610,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388242","WFWQC_UT-WFWQC1021-4992880-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1794","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"4.49",4490,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388261","WFWQC_UT-WFWQC1121-4992880-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1916","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"3.54",3540,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388274","WFWQC_UT-WFWQC1221-4992880-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1917","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"1.65",1650,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388300","WFWQC_UT-WFWQC0121-4992540-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1797","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"1.9",1900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388313","WFWQC_UT-WFWQC0221-4992540-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1798","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"2.25",2250,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388326","WFWQC_UT-WFWQC0321-4992540-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1920","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"1.55",1550,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388339","WFWQC_UT-WFWQC0421-4992540-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1800","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"1.93",1930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388352","WFWQC_UT-WFWQC0521-4992540-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1801","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"1.43",1430,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388365","WFWQC_UT-WFWQC0621-4992540-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1802","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"1.59",1590,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388378","WFWQC_UT-WFWQC0721-4992540-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1924","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"1.31",1310,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388391","WFWQC_UT-WFWQC0921-4992540-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1925","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"1.14",1140,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388404","WFWQC_UT-WFWQC0921-4992540-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1926","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"1.51",1510,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388417","WFWQC_UT-WFWQC1021-4992540-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1927","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"1.49",1490,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388436","WFWQC_UT-WFWQC1121-4992540-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1564","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"1.52",1520,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388449","WFWQC_UT-WFWQC1221-4992540-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1565","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"16.4",16400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388475","WFWQC_UT-WFWQC0121-4992500-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1566","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"15.5",15500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388488","WFWQC_UT-WFWQC0221-4992500-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1567","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"11.9",11900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388501","WFWQC_UT-WFWQC0321-4992500-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1568","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"15.4",15400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388514","WFWQC_UT-WFWQC0421-4992500-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1569","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"15.4",15400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388527","WFWQC_UT-WFWQC0521-4992500-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1570","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"18.5",18500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388540","WFWQC_UT-WFWQC0621-4992500-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1571","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"20.9",20900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388553","WFWQC_UT-WFWQC0721-4992500-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1572","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"17.5",17500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388566","WFWQC_UT-WFWQC0921-4992500-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1573","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"17.4",17400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388579","WFWQC_UT-WFWQC0921-4992500-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1574","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"16.9",16900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388592","WFWQC_UT-WFWQC1021-4992500-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1575","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"21.1",21100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388611","WFWQC_UT-WFWQC1121-4992500-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1576","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"17.5",17500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388624","WFWQC_UT-WFWQC1221-4992500-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1577","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"13.8",13800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388650","WFWQC_UT-WFWQC0121-4992480-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1578","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"13.5",13500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388663","WFWQC_UT-WFWQC0221-4992480-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1579","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"10.5",10500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388676","WFWQC_UT-WFWQC0321-4992480-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1580","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"1.56",1560,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388689","WFWQC_UT-WFWQC0421-4992480-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1581","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"11.6",11600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388702","WFWQC_UT-WFWQC0521-4992480-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1582","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"17.1",17100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388715","WFWQC_UT-WFWQC0621-4992480-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1583","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"18.5",18500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388728","WFWQC_UT-WFWQC0721-4992480-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1584","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"15.1",15100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388741","WFWQC_UT-WFWQC0921-4992480-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1585","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"14.5",14500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388754","WFWQC_UT-WFWQC0921-4992480-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1586","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"14.5",14500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388767","WFWQC_UT-WFWQC1021-4992480-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1587","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"18",18000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388786","WFWQC_UT-WFWQC1121-4992480-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1588","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"14.2",14200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388799","WFWQC_UT-WFWQC1221-4992480-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1589","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"9.02",9020,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388825","WFWQC_UT-WFWQC0121-4992320-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1590","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"7.64",7640,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388838","WFWQC_UT-WFWQC0221-4992320-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1591","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"6.84",6840,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388851","WFWQC_UT-WFWQC0321-4992320-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1592","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"6.81",6810,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388864","WFWQC_UT-WFWQC0421-4992320-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1229","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"5.12",5120,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388877","WFWQC_UT-WFWQC0521-4992320-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1958","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"7.33",7330,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388890","WFWQC_UT-WFWQC0621-4992320-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1595","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"5.91",5910,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388903","WFWQC_UT-WFWQC0721-4992320-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1960","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"6.14",6140,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388916","WFWQC_UT-WFWQC0921-4992320-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1961","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"5.93",5930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388929","WFWQC_UT-WFWQC0921-4992320-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1922","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"7.18",7180,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388942","WFWQC_UT-WFWQC1021-4992320-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1963","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"10.5",10500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388961","WFWQC_UT-WFWQC1121-4992320-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1964","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943388974","WFWQC_UT-WFWQC1221-4992320-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1965","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"8.21",8210,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389000","WFWQC_UT-WFWQC0121-4992290-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1966","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"6.63",6630,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389013","WFWQC_UT-WFWQC0221-4992290-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1967","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"6.2",6200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389026","WFWQC_UT-WFWQC0321-4992290-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1968","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"6.15",6150,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389039","WFWQC_UT-WFWQC0421-4992290-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1848","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"4.23",4230,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389052","WFWQC_UT-WFWQC0521-4992290-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1849","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"6.33",6330,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389065","WFWQC_UT-WFWQC0621-4992290-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1971","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"5.12",5120,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389078","WFWQC_UT-WFWQC0721-4992290-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1972","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"6.14",6140,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389091","WFWQC_UT-WFWQC0921-4992290-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1852","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"5.77",5770,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389104","WFWQC_UT-WFWQC0921-4992290-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1853","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"6.51",6510,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389117","WFWQC_UT-WFWQC1021-4992290-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1975","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"9.75",9750,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389136","WFWQC_UT-WFWQC1121-4992290-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1976","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"7.21",7210,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389149","WFWQC_UT-WFWQC1221-4992290-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1977","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"7.46",7460,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389175","WFWQC_UT-WFWQC0121-4992070-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1978","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"5.87",5870,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389188","WFWQC_UT-WFWQC0221-4992070-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1979","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"6.02",6020,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389201","WFWQC_UT-WFWQC0321-4992070-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1980","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"0.1",100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389214","WFWQC_UT-WFWQC0421-4992070-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1981","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"3.56",3560,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389227","WFWQC_UT-WFWQC0521-4992070-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1982","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"6.89",6890,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389240","WFWQC_UT-WFWQC0621-4992070-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1983","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"5.32",5320,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389253","WFWQC_UT-WFWQC0721-4992070-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1984","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"5.04",5040,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389266","WFWQC_UT-WFWQC0921-4992070-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1985","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"4.71",4710,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389279","WFWQC_UT-WFWQC0921-4992070-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1986","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"5.09",5090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389292","WFWQC_UT-WFWQC1021-4992070-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1987","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"7.03",7030,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389311","WFWQC_UT-WFWQC1121-4992070-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1988","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"5.84",5840,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389324","WFWQC_UT-WFWQC1221-4992070-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1989","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"6.86",6860,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389350","WFWQC_UT-WFWQC0121-4991940-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1990","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"5.56",5560,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389363","WFWQC_UT-WFWQC0221-4991940-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1991","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"5.74",5740,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389376","WFWQC_UT-WFWQC0321-4991940-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1992","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"4.69",4690,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389389","WFWQC_UT-WFWQC0421-4991940-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1993","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"3.63",3630,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389402","WFWQC_UT-WFWQC0521-4991940-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1630","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"5.99",5990,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389415","WFWQC_UT-WFWQC0621-4991940-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1995","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"5.34",5340,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389428","WFWQC_UT-WFWQC0721-4991940-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1956","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"4.78",4780,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389441","WFWQC_UT-WFWQC0921-4991940-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1633","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"4.32",4320,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389454","WFWQC_UT-WFWQC0921-4991940-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1634","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"5.04",5040,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389467","WFWQC_UT-WFWQC1021-4991940-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1999","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"6.68",6680,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389486","WFWQC_UT-WFWQC1121-4991940-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2000","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"4.66",4660,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389499","WFWQC_UT-WFWQC1221-4991940-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1637","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"6.69",6690,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389525","WFWQC_UT-WFWQC0121-4991900-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1962","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"5.73",5730,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389538","WFWQC_UT-WFWQC0221-4991900-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1639","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"6.03",6030,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389551","WFWQC_UT-WFWQC0321-4991900-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1640","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"4.59",4590,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389564","WFWQC_UT-WFWQC0421-4991900-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1884","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-20",NA,NA,NA,NA,"4.19",4190,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389577","WFWQC_UT-WFWQC0521-4991900-0520-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1642","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"7.37",7370,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389590","WFWQC_UT-WFWQC0621-4991900-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1886","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"5.46",5460,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389603","WFWQC_UT-WFWQC0721-4991900-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2008","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"4.66",4660,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389616","WFWQC_UT-WFWQC0921-4991900-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1888","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"4.33",4330,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389629","WFWQC_UT-WFWQC0921-4991900-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2010","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"5.08",5080,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389642","WFWQC_UT-WFWQC1021-4991900-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1890","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"6.79",6790,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389661","WFWQC_UT-WFWQC1121-4991900-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2012","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"4.72",4720,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389674","WFWQC_UT-WFWQC1221-4991900-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1892","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"7.97",7970,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389700","WFWQC_UT-WFWQC0121-4991860-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2014","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"7.24",7240,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389713","WFWQC_UT-WFWQC0221-4991860-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1894","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"5.93",5930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389726","WFWQC_UT-WFWQC0321-4991860-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2016","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"5.38",5380,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389739","WFWQC_UT-WFWQC0421-4991860-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1896","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-20",NA,NA,NA,NA,"3.66",3660,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389752","WFWQC_UT-WFWQC0521-4991860-0520-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2018","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"7.81",7810,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389765","WFWQC_UT-WFWQC0621-4991860-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2019","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"7.02",7020,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389778","WFWQC_UT-WFWQC0721-4991860-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2007","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"6.1",6100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389791","WFWQC_UT-WFWQC0921-4991860-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2021","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"5.21",5210,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389804","WFWQC_UT-WFWQC0921-4991860-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2009","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"5.73",5730,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389817","WFWQC_UT-WFWQC1021-4991860-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2023","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"7.81",7810,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389836","WFWQC_UT-WFWQC1121-4991860-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2011","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"6.47",6470,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389849","WFWQC_UT-WFWQC1221-4991860-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2025","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-21",NA,NA,NA,NA,"8.25",8250,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389875","WFWQC_UT-WFWQC0121-4991820-0121-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1905","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-25",NA,NA,NA,NA,"7.21",7210,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389888","WFWQC_UT-WFWQC0221-4991820-0225-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1906","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-25",NA,NA,NA,NA,"5.24",5240,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389901","WFWQC_UT-WFWQC0321-4991820-0325-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1907","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-22",NA,NA,NA,NA,"5.16",5160,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389914","WFWQC_UT-WFWQC0421-4991820-0422-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1908","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-20",NA,NA,NA,NA,"3.55",3550,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389927","WFWQC_UT-WFWQC0521-4991820-0520-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2030","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-24",NA,NA,NA,NA,"6.1",6100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389940","WFWQC_UT-WFWQC0621-4991820-0624-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2027","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-22",NA,NA,NA,NA,"4.94",4940,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389953","WFWQC_UT-WFWQC0721-4991820-0722-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2028","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-02",NA,NA,NA,NA,"5.06",5060,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389966","WFWQC_UT-WFWQC0921-4991820-0902-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2020","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-23",NA,NA,NA,NA,"4.37",4370,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389979","WFWQC_UT-WFWQC0921-4991820-0923-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1913","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-21",NA,NA,NA,NA,"5.18",5180,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943389992","WFWQC_UT-WFWQC1021-4991820-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2022","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-18",NA,NA,NA,NA,"7.32",7320,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390011","WFWQC_UT-WFWQC1121-4991820-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1915","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-16",NA,NA,NA,NA,"5.6",5600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390024","WFWQC_UT-WFWQC1221-4991820-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1997","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-21",NA,NA,NA,NA,"12.9",12900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390050","WFWQC_UT-WFWQC0121-4991810-0121-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1998","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-25",NA,NA,NA,NA,"8.04",8040,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390063","WFWQC_UT-WFWQC0221-4991810-0225-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1918","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-25",NA,NA,NA,NA,"13.3",13300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390076","WFWQC_UT-WFWQC0321-4991810-0325-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1919","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-22",NA,NA,NA,NA,"15.4",15400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390089","WFWQC_UT-WFWQC0421-4991810-0422-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2001","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-20",NA,NA,NA,NA,"12.8",12800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390102","WFWQC_UT-WFWQC0521-4991810-0520-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1921","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-24",NA,NA,NA,NA,"17.8",17800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390115","WFWQC_UT-WFWQC0621-4991810-0624-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1882","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-22",NA,NA,NA,NA,"12.7",12700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390128","WFWQC_UT-WFWQC0721-4991810-0722-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1923","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-02",NA,NA,NA,NA,"12.9",12900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390141","WFWQC_UT-WFWQC0921-4991810-0902-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2005","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-23",NA,NA,NA,NA,"15.8",15800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390154","WFWQC_UT-WFWQC0921-4991810-0923-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2006","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-21",NA,NA,NA,NA,"15.7",15700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390167","WFWQC_UT-WFWQC1021-4991810-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1994","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-18",NA,NA,NA,NA,"12.3",12300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390186","WFWQC_UT-WFWQC1121-4991810-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2031","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-16",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390199","WFWQC_UT-WFWQC1221-4991810-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1928","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-21",NA,NA,NA,NA,"7.99",7990,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390225","WFWQC_UT-WFWQC0121-4991800-0121-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1929","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-25",NA,NA,NA,NA,"6.49",6490,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390238","WFWQC_UT-WFWQC0221-4991800-0225-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1930","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-25",NA,NA,NA,NA,"5.69",5690,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390251","WFWQC_UT-WFWQC0321-4991800-0325-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1931","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-22",NA,NA,NA,NA,"6.1",6100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390264","WFWQC_UT-WFWQC0421-4991800-0422-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1932","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-20",NA,NA,NA,NA,"3.98",3980,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390277","WFWQC_UT-WFWQC0521-4991800-0520-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1933","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-24",NA,NA,NA,NA,"4.74",4740,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390290","WFWQC_UT-WFWQC0621-4991800-0624-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1934","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-22",NA,NA,NA,NA,"4.77",4770,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390303","WFWQC_UT-WFWQC0721-4991800-0722-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1935","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-02",NA,NA,NA,NA,"5.36",5360,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390316","WFWQC_UT-WFWQC0921-4991800-0902-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1936","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-23",NA,NA,NA,NA,"4.84",4840,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390329","WFWQC_UT-WFWQC0921-4991800-0923-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1937","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-21",NA,NA,NA,NA,"5.62",5620,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390342","WFWQC_UT-WFWQC1021-4991800-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1938","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-18",NA,NA,NA,NA,"7.61",7610,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390361","WFWQC_UT-WFWQC1121-4991800-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1939","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-16",NA,NA,NA,NA,"5.48",5480,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390374","WFWQC_UT-WFWQC1221-4991800-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1940","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-20",NA,NA,NA,NA,"7.58",7580,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390400","WFWQC_UT-WFWQC0121-4991290-0120-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1941","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-24",NA,NA,NA,NA,"6.28",6280,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390413","WFWQC_UT-WFWQC0221-4991290-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1942","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-24",NA,NA,NA,NA,"6.6",6600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390426","WFWQC_UT-WFWQC0321-4991290-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1943","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-21",NA,NA,NA,NA,"5.83",5830,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390439","WFWQC_UT-WFWQC0421-4991290-0421-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1944","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-19",NA,NA,NA,NA,"4.9",4900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390452","WFWQC_UT-WFWQC0521-4991290-0519-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1945","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"4.94",4940,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390465","WFWQC_UT-WFWQC0621-4991290-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1946","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-21",NA,NA,NA,NA,"5.44",5440,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390478","WFWQC_UT-WFWQC0721-4991290-0721-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1947","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"4.91",4910,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390491","WFWQC_UT-WFWQC0921-4991290-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1948","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"4.69",4690,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390504","WFWQC_UT-WFWQC0921-4991290-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1949","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"3.56",3560,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390517","WFWQC_UT-WFWQC1021-4991290-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1950","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-17",NA,NA,NA,NA,"8.45",8450,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390535","WFWQC_UT-WFWQC1121-4991290-1117-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1951","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-15",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390548","WFWQC_UT-WFWQC1221-4991290-1215-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1952","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-21",NA,NA,NA,NA,"7.13",7130,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390574","WFWQC_UT-WFWQC0121-4990890-0121-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1953","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-25",NA,NA,NA,NA,"7.83",7830,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390587","WFWQC_UT-WFWQC0221-4990890-0225-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1954","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-25",NA,NA,NA,NA,"6.18",6180,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390600","WFWQC_UT-WFWQC0321-4990890-0325-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1955","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-22",NA,NA,NA,NA,"4.99",4990,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390613","WFWQC_UT-WFWQC0421-4990890-0422-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1835","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-20",NA,NA,NA,NA,"3.77",3770,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390626","WFWQC_UT-WFWQC0521-4990890-0520-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1957","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-24",NA,NA,NA,NA,"5",5000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390639","WFWQC_UT-WFWQC0621-4990890-0624-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2035","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-22",NA,NA,NA,NA,"4.39",4390,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390652","WFWQC_UT-WFWQC0721-4990890-0722-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1959","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-01",NA,NA,NA,NA,"5.18",5180,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390665","WFWQC_UT-WFWQC0921-4990890-0901-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2024","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-22",NA,NA,NA,NA,"4.6",4600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390678","WFWQC_UT-WFWQC0921-4990890-0922-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2002","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-20",NA,NA,NA,NA,"3.48",3480,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390691","WFWQC_UT-WFWQC1021-4990890-1020-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2003","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-18",NA,NA,NA,NA,"7.59",7590,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390709","WFWQC_UT-WFWQC1121-4990890-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2004","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-16",NA,NA,NA,NA,"5.15",5150,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390722","WFWQC_UT-WFWQC1221-4990890-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2033","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-21",NA,NA,NA,NA,"7.96",7960,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390748","WFWQC_UT-WFWQC0121-4990790-0121-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2029","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-25",NA,NA,NA,NA,"7.61",7610,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390761","WFWQC_UT-WFWQC0221-4990790-0225-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2034","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-25",NA,NA,NA,NA,"5.16",5160,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390774","WFWQC_UT-WFWQC0321-4990790-0325-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2032","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-22",NA,NA,NA,NA,"6.44",6440,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390787","WFWQC_UT-WFWQC0421-4990790-0422-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1996","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-20",NA,NA,NA,NA,"4.73",4730,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390800","WFWQC_UT-WFWQC0521-4990790-0520-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1969","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-24",NA,NA,NA,NA,"5.76",5760,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390813","WFWQC_UT-WFWQC0621-4990790-0624-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1970","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-22",NA,NA,NA,NA,"5.33",5330,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390826","WFWQC_UT-WFWQC0721-4990790-0722-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2036","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-02",NA,NA,NA,NA,"5.93",5930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390839","WFWQC_UT-WFWQC0921-4990790-0902-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2013","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-23",NA,NA,NA,NA,"5.7",5700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390852","WFWQC_UT-WFWQC0921-4990790-0923-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"392","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-21",NA,NA,NA,NA,"0.62",620,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390865","WFWQC_UT-WFWQC1021-4990790-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"272","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-18",NA,NA,NA,NA,"7.2",7200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390883","WFWQC_UT-WFWQC1121-4990790-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"394","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-16",NA,NA,NA,NA,"6.31",6310,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390896","WFWQC_UT-WFWQC1221-4990790-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"152","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-21",NA,NA,NA,NA,"10.5",10500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390922","WFWQC_UT-WFWQC0121-4990780-0121-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"275","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-25",NA,NA,NA,NA,"7.71",7710,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390935","WFWQC_UT-WFWQC0221-4990780-0225-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"154","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-25",NA,NA,NA,NA,"3.4",3400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390948","WFWQC_UT-WFWQC0321-4990780-0325-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"91","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-22",NA,NA,NA,NA,"10.7",10700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390961","WFWQC_UT-WFWQC0421-4990780-0422-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"278","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-20",NA,NA,NA,NA,"10",10000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390974","WFWQC_UT-WFWQC0521-4990780-0520-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"157","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-24",NA,NA,NA,NA,"13.3",13300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943390987","WFWQC_UT-WFWQC0621-4990780-0624-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"198","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-22",NA,NA,NA,NA,"3.12",3120,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391000","WFWQC_UT-WFWQC0721-4990780-0722-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"118","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-02",NA,NA,NA,NA,"8.8",8800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391013","WFWQC_UT-WFWQC0921-4990780-0902-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"83","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-23",NA,NA,NA,NA,"8.62",8620,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391026","WFWQC_UT-WFWQC0921-4990780-0923-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"201","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-21",NA,NA,NA,NA,"9",9000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391039","WFWQC_UT-WFWQC1021-4990780-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"202","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-18",NA,NA,NA,NA,"9.14",9140,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391057","WFWQC_UT-WFWQC1121-4990780-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"122","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-16",NA,NA,NA,NA,"7.87",7870,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391070","WFWQC_UT-WFWQC1221-4990780-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"164","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-21",NA,NA,NA,NA,"6.94",6940,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391096","WFWQC_UT-WFWQC0121-4990770-0121-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"205","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-25",NA,NA,NA,NA,"6.66",6660,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391109","WFWQC_UT-WFWQC0221-4990770-0225-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"125","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-25",NA,NA,NA,NA,"4.87",4870,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391122","WFWQC_UT-WFWQC0321-4990770-0325-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"126","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-22",NA,NA,NA,NA,"5.61",5610,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391135","WFWQC_UT-WFWQC0421-4990770-0422-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"104","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-20",NA,NA,NA,NA,"3.63",3630,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391148","WFWQC_UT-WFWQC0521-4990770-0520-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"101","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-23",NA,NA,NA,NA,"7.82",7820,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391161","WFWQC_UT-WFWQC0621-4990770-0623-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"129","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-22",NA,NA,NA,NA,"4.51",4510,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391174","WFWQC_UT-WFWQC0721-4990770-0722-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"90","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-02",NA,NA,NA,NA,"6.54",6540,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391187","WFWQC_UT-WFWQC0921-4990770-0902-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"108","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-23",NA,NA,NA,NA,"5.09",5090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391200","WFWQC_UT-WFWQC0921-4990770-0923-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","20","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"96","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-23",NA,NA,NA,NA,"5.09",5090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391213","WFWQC_UT-WFWQC0921-4990770-0923-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","20","Duplicate","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"133","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-21",NA,NA,NA,NA,"7.34",7340,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391226","WFWQC_UT-WFWQC1021-4990770-1021-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"215","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-18",NA,NA,NA,NA,"9.67",9670,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391244","WFWQC_UT-WFWQC1121-4990770-1118-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"135","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-12-16",NA,NA,NA,NA,"7.48",7480,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391257","WFWQC_UT-WFWQC1221-4990770-1216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T17:26:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"136","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-28",NA,NA,NA,NA,"4.6",4600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391694","WFWQC_UT-WFWQC0422-4990770-0428-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"178","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-24",NA,NA,NA,NA,"4.1",4100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391707","WFWQC_UT-WFWQC0322-4990770-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"301","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-24",NA,NA,NA,NA,"6.6",6600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391720","WFWQC_UT-WFWQC0222-4990770-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"85","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-27",NA,NA,NA,NA,"4.9",4900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391733","WFWQC_UT-WFWQC0122-4990770-0127-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Below SDSD","River/Stream",NA,"40.9055000000",40.9055,"-111.9343870000",-111.934387,"OK","16020102","WFWQC_UT-4990770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"113","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-28",NA,NA,NA,NA,"8.3",8300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391746","WFWQC_UT-WFWQC0422-4990780-0428-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"304","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-24",NA,NA,NA,NA,"7.4",7400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391759","WFWQC_UT-WFWQC0322-4990780-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"102","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-24",NA,NA,NA,NA,"6.3",6300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391772","WFWQC_UT-WFWQC0222-4990780-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"103","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-27",NA,NA,NA,NA,"8.6",8600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391785","WFWQC_UT-WFWQC0122-4990780-0127-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD North Plant","River/Stream",NA,"40.9046648630",40.904664863,"-111.9352180900",-111.93521809,"OK","16020102","WFWQC_UT-4990780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"185","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-28",NA,NA,NA,NA,"5.6",5600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391798","WFWQC_UT-WFWQC0422-4990790-0428-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"186","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-24",NA,NA,NA,NA,"3.4",3400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391811","WFWQC_UT-WFWQC0322-4990790-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"187","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-24",NA,NA,NA,NA,"6.9",6900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391824","WFWQC_UT-WFWQC0222-4990790-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"88","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-27",NA,NA,NA,NA,"5.3",5300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391837","WFWQC_UT-WFWQC0122-4990790-0127-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","State Canal Above SDSD","River/Stream",NA,"40.9043880000",40.904388,"-111.9360450000",-111.936045,"OK","16020102","WFWQC_UT-4990790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"189","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-24",NA,NA,NA,NA,"4.5",4500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391850","WFWQC_UT-WFWQC0322-4990890-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"311","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-24",NA,NA,NA,NA,"8.6",8600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391863","WFWQC_UT-WFWQC0222-4990890-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"191","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"5.1",5100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391876","WFWQC_UT-WFWQC0122-4990890-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Burnham 1000 ft above","River/Stream",NA,"40.8707788960",40.870778896,"-111.9643848770",-111.964384877,"OK","16020204","WFWQC_UT-4990890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"97","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"6.7",6700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391889","WFWQC_UT-WFWQC0422-4991290-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"314","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"6.2",6200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391902","WFWQC_UT-WFWQC0322-4991290-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"194","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"5.9",5900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391915","WFWQC_UT-WFWQC0222-4991290-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1046","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"5.3",5300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391928","WFWQC_UT-WFWQC0122-4991290-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Surplus Canal @ Airport","River/Stream",NA,"40.8166148110",40.816614811,"-112.0154995100",-112.01549951,"OK","16020204","WFWQC_UT-4991290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"196","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-28",NA,NA,NA,NA,"5.5",5500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391941","WFWQC_UT-WFWQC0422-4991800-0428-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"116","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-24",NA,NA,NA,NA,"3.8",3800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391954","WFWQC_UT-WFWQC0322-4991800-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1049","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-24",NA,NA,NA,NA,"7.5",7500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391967","WFWQC_UT-WFWQC0222-4991800-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"199","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-27",NA,NA,NA,NA,"6.1",6100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391980","WFWQC_UT-WFWQC0122-4991800-0127-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Legacy","River/Stream",NA,"40.8449454290",40.844945429,"-111.9532748010",-111.953274801,"OK","16020204","WFWQC_UT-4991800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"200","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-28",NA,NA,NA,NA,"15.3",15300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943391993","WFWQC_UT-WFWQC0422-4991810-0428-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1052","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-24",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392006","WFWQC_UT-WFWQC0322-4991810-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"323","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-24",NA,NA,NA,NA,"14.6",14600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392019","WFWQC_UT-WFWQC0222-4991810-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"203","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-27",NA,NA,NA,NA,"16",16000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392032","WFWQC_UT-WFWQC0122-4991810-0127-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","SDSD South Plant","River/Stream",NA,"40.8433700000",40.84337,"-111.9482900000",-111.94829,"OK","16020204","WFWQC_UT-4991810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1055","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-28",NA,NA,NA,NA,"5.3",5300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392045","WFWQC_UT-WFWQC0422-4991820-0428-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"326","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-24",NA,NA,NA,NA,"3.4",3400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392058","WFWQC_UT-WFWQC0322-4991820-0324-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"328","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-24",NA,NA,NA,NA,"7.6",7600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392071","WFWQC_UT-WFWQC0222-4991820-0224-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"207","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-27",NA,NA,NA,NA,"5.8",5800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392084","WFWQC_UT-WFWQC0122-4991820-0127-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","011","Center Street","River/Stream",NA,"40.8416149990",40.841614999,"-111.9507716860",-111.950771686,"OK","16020204","WFWQC_UT-4991820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"208","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"5.4",5400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392097","WFWQC_UT-WFWQC0422-4991860-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"452","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"5.1",5100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392110","WFWQC_UT-WFWQC0322-4991860-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"331","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"7",7000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392123","WFWQC_UT-WFWQC0222-4991860-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"211","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"5.3",5300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392136","WFWQC_UT-WFWQC0122-4991860-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1800 N","River/Stream",NA,"40.8074495600",40.80744956,"-111.9393884490",-111.939388449,"OK","16020204","WFWQC_UT-4991860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"212","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"4.8",4800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392149","WFWQC_UT-WFWQC0422-4991900-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"456","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"5.4",5400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392162","WFWQC_UT-WFWQC0322-4991900-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"336","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"5.8",5800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392175","WFWQC_UT-WFWQC0222-4991900-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"255","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"4.4",4400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392188","WFWQC_UT-WFWQC0122-4991900-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","300 N","River/Stream",NA,"40.7773943560",40.777394356,"-111.9353505470",-111.935350547,"OK","16020204","WFWQC_UT-4991900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"337","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"4.3",4300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392201","WFWQC_UT-WFWQC0422-4991940-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"339","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"6",6000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392214","WFWQC_UT-WFWQC0322-4991940-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"218","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"5.5",5500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392227","WFWQC_UT-WFWQC0222-4991940-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"340","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"4.3",4300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392240","WFWQC_UT-WFWQC0122-4991940-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","400 S","River/Stream",NA,"40.7603945480",40.760394548,"-111.9231582080",-111.923158208,"OK","16020204","WFWQC_UT-4991940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"220","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"4.5",4500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392253","WFWQC_UT-WFWQC0422-4992070-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"221","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"3.8",3800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392266","WFWQC_UT-WFWQC0322-4992070-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"343","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"5.4",5400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392279","WFWQC_UT-WFWQC0222-4992070-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"344","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"4.3",4300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392292","WFWQC_UT-WFWQC0122-4992070-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1300 S","River/Stream",NA,"40.7416103240",40.741610324,"-111.9177107500",-111.91771075,"OK","16020204","WFWQC_UT-4992070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"345","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"6.3",6300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392305","WFWQC_UT-WFWQC0422-4992290-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"346","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"6.3",6300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392318","WFWQC_UT-WFWQC0322-4992290-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"226","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"6.4",6400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392331","WFWQC_UT-WFWQC0222-4992290-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"146","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"5.5",5500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392344","WFWQC_UT-WFWQC0122-4992290-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","1700 S","River/Stream",NA,"40.7335552510",40.733555251,"-111.9235450390",-111.923545039,"OK","16020204","WFWQC_UT-4992290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"107","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"7.3",7300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392357","WFWQC_UT-WFWQC0422-4992320-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"148","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"8.3",8300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392370","WFWQC_UT-WFWQC0322-4992320-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"149","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"7.1",7100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392383","WFWQC_UT-WFWQC0222-4992320-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"230","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"6.2",6200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392396","WFWQC_UT-WFWQC0122-4992320-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","2100 S Above Diversion","River/Stream",NA,"40.7257600000",40.72576,"-111.9257710000",-111.925771,"OK","16020204","WFWQC_UT-4992320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"124","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"12.3",12300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392409","WFWQC_UT-WFWQC0422-4992480-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"112","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"16.9",16900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392422","WFWQC_UT-WFWQC0322-4992480-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"234","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"19.7",19700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392435","WFWQC_UT-WFWQC0222-4992480-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"114","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"12.2",12200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392448","WFWQC_UT-WFWQC0122-4992480-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Below CVWRF","River/Stream",NA,"40.7085584880",40.708558488,"-111.9199322530",-111.919932253,"OK","16020204","WFWQC_UT-4992480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"115","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"16.6",16600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392461","WFWQC_UT-WFWQC0422-4992500-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"237","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"21.1",21100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392474","WFWQC_UT-WFWQC0322-4992500-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"117","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"27.5",27500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392487","WFWQC_UT-WFWQC0222-4992500-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"158","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"14.1",14100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392500","WFWQC_UT-WFWQC0122-4992500-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Central Valley WWRF","River/Stream",NA,"40.7080700000",40.70807,"-111.9158600000",-111.91586,"OK","16020204","WFWQC_UT-4992500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"119","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"0.8",800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392513","WFWQC_UT-WFWQC0422-4992540-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1092","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"1.7",1700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392526","WFWQC_UT-WFWQC0322-4992540-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"364","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"2",2000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392539","WFWQC_UT-WFWQC0222-4992540-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"162","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"1.3",1300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392552","WFWQC_UT-WFWQC0122-4992540-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Mill Creek Above CV at 300 W","River/Stream",NA,"40.7062600000",40.70626,"-111.8999100000",-111.89991,"OK","16020204","WFWQC_UT-4992540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1095","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"3.1",3100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392565","WFWQC_UT-WFWQC0422-4992880-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"367","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"4.3",4300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392578","WFWQC_UT-WFWQC0322-4992880-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"165","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"3.9",3900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392591","WFWQC_UT-WFWQC0222-4992880-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"166","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"3.3",3300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392604","WFWQC_UT-WFWQC0122-4992880-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","3300 S","River/Stream",NA,"40.6992480000",40.699248,"-111.9247340000",-111.924734,"OK","16020204","WFWQC_UT-4992880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"127","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392617","WFWQC_UT-WFWQC0422-4992950-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"128","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"0.9",900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392630","WFWQC_UT-WFWQC0322-4992950-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"169","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"0.8",800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392643","WFWQC_UT-WFWQC0222-4992950-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"130","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"0.5",500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392656","WFWQC_UT-WFWQC0122-4992950-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Big Cottonwood at Confluence","River/Stream",NA,"40.6805067230",40.680506723,"-111.9118785530",-111.911878553,"OK","16020204","WFWQC_UT-4992950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"131","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"0.6",600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392669","WFWQC_UT-WFWQC0422-4993580-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"132","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"1.4",1400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392682","WFWQC_UT-WFWQC0322-4993580-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"254","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"1.2",1200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392695","WFWQC_UT-WFWQC0222-4993580-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"174","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"0.9",900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392708","WFWQC_UT-WFWQC0122-4993580-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Little Cottonwood Creek","River/Stream",NA,"40.6663327720",40.666332772,"-111.9065982550",-111.906598255,"OK","16020204","WFWQC_UT-4993580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"175","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"5.2",5200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392721","WFWQC_UT-WFWQC0422-4994100-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"257","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"7.2",7200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392734","WFWQC_UT-WFWQC0322-4994100-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"258","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"5.5",5500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392747","WFWQC_UT-WFWQC0222-4994100-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"259","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"5",5000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392760","WFWQC_UT-WFWQC0122-4994100-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","6400 S","River/Stream",NA,"40.6305020000",40.630502,"-111.9229870000",-111.922987,"OK","16020204","WFWQC_UT-4994100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"260","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"8",8000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392773","WFWQC_UT-WFWQC0422-4994160-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"382","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"9.9",9900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392786","WFWQC_UT-WFWQC0322-4994160-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"141","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"8.1",8100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392799","WFWQC_UT-WFWQC0222-4994160-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"263","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"7.4",7400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392812","WFWQC_UT-WFWQC0122-4994160-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","South Valley WWTP","River/Stream",NA,"40.6163908590",40.616390859,"-111.9222842510",-111.922284251,"OK","16020204","WFWQC_UT-4994160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"143","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"2.7",2700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392825","WFWQC_UT-WFWQC0422-4994170-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"144","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"4.4",4400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392838","WFWQC_UT-WFWQC0322-4994170-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"388","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"3.8",3800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392851","WFWQC_UT-WFWQC0222-4994170-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"389","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"3.1",3100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392864","WFWQC_UT-WFWQC0122-4994170-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","7800 S","River/Stream",NA,"40.6093920360",40.609392036,"-111.9210414140",-111.921041414,"OK","16020204","WFWQC_UT-4994170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"390","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"3.1",3100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392877","WFWQC_UT-WFWQC0422-4994270-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1120","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"4.8",4800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392890","WFWQC_UT-WFWQC0322-4994270-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"513","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"4.1",4100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392903","WFWQC_UT-WFWQC0222-4994270-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"757","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"3.2",3200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392916","WFWQC_UT-WFWQC0122-4994270-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","9000 S","River/Stream",NA,"40.5874498930",40.587449893,"-111.9127167080",-111.912716708,"OK","16020204","WFWQC_UT-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1123","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"1.5",1500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392929","WFWQC_UT-WFWQC0422-4994600-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"395","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"1.6",1600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392942","WFWQC_UT-WFWQC0322-4994600-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"396","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"1.3",1300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392955","WFWQC_UT-WFWQC0222-4994600-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"397","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"0.9",900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392968","WFWQC_UT-WFWQC0122-4994600-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","14600 S (Bluffdale Road)","River/Stream",NA,"40.4863379220",40.486337922,"-111.9360408470",-111.936040847,"OK","16020204","WFWQC_UT-4994600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"398","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"0.5",500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392981","WFWQC_UT-WFWQC0422-4994730-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"399","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-23",NA,NA,NA,NA,"1.5",1500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943392994","WFWQC_UT-WFWQC0322-4994730-0323-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"764","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-23",NA,NA,NA,NA,"0.9",900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943393007","WFWQC_UT-WFWQC0222-4994730-0223-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"401","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-26",NA,NA,NA,NA,"0.7",700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943393020","WFWQC_UT-WFWQC0122-4994730-0126-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","035","Narrows","River/Stream",NA,"40.4430042040",40.443004204,"-111.9227164890",-111.922716489,"OK","16020204","WFWQC_UT-4994730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"402","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-27",NA,NA,NA,NA,"0.05",50,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET-943393033","WFWQC_UT-WFWQC0422-4994790-0427-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Utah Lake","River/Stream",NA,"40.3609517430",40.360951743,"-111.8985135820",-111.898513582,"OK","16020201","WFWQC_UT-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-11T18:00:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","Accepted",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"767","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-12","09:38:00","MST","2021-01-12 16:38:00",NA,"3.7",3700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160232","WFWQC_UT-WFWQC0121-4994952-0112-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4994952-0112-LAB/results/944160232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"404","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-12","09:58:00","MST","2021-01-12 16:58:00",NA,"6.33",6330,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160243","WFWQC_UT-WFWQC0121-4995043-0112-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995043-0112-LAB/results/944160243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"405","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-12","10:31:00","MST","2021-01-12 17:31:00",NA,"3.57",3570,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160254","WFWQC_UT-WFWQC0121-4995075-0112-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995075-0112-LAB/results/944160254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"770","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-12","10:50:00","MST","2021-01-12 17:50:00",NA,"4.99",4990,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160269","WFWQC_UT-WFWQC0121-4995222-0112-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995222-0112-LAB/results/944160269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"407","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-12","11:49:00","MST","2021-01-12 18:49:00",NA,"10.5",10500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160279","WFWQC_UT-WFWQC0121-4995210-0112-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995210-0112-LAB/results/944160279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"408","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-12","13:10:00","MST","2021-01-12 20:10:00",NA,"0.556",556,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160290","WFWQC_UT-WFWQC0121-4996680-0112-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996680-0112-LAB/results/944160290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"409","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-12","14:37:00","MST","2021-01-12 21:37:00",NA,"0.636",636,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160300","WFWQC_UT-WFWQC0121-4995575-0112-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995575-0112-LAB/results/944160300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"410","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","08:47:00","MST","2021-01-13 15:47:00",NA,"2.26",2260,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160311","WFWQC_UT-WFWQC0121-4996570-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996570-0113-LAB/results/944160311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"411","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","09:00:00","MST","2021-01-13 16:00:00",NA,"28.4",28400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160322","WFWQC_UT-WFWQC0121-4996560-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996560-0113-LAB/results/944160322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"412","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","09:12:00","MST","2021-01-13 16:12:00",NA,"26.8",26800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160333","WFWQC_UT-WFWQC0121-4996550-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996550-0113-LAB/results/944160333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"413","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","09:30:00","MST","2021-01-13 16:30:00",NA,"1.29",1290,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160343","WFWQC_UT-WFWQC0121-4996410-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996410-0113-LAB/results/944160343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"414","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","09:45:00","MST","2021-01-13 16:45:00",NA,"8.82",8820,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160354","WFWQC_UT-WFWQC0121-4996190-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996190-0113-LAB/results/944160354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"415","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","10:19:00","MST","2021-01-13 17:19:00",NA,"9.07",9070,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160365","WFWQC_UT-WFWQC0121-4996540-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996540-0113-LAB/results/944160365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"416","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","10:32:00","MST","2021-01-13 17:32:00",NA,"8.76",8760,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160376","WFWQC_UT-WFWQC0121-4996566-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996566-0113-LAB/results/944160376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"781","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","11:04:00","MST","2021-01-13 18:04:00",NA,"8.25",8250,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160387","WFWQC_UT-WFWQC0121-4996100-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996100-0113-LAB/results/944160387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"418","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","10:53:00","MST","2021-01-13 17:53:00",NA,"1.11",1110,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160398","WFWQC_UT-WFWQC0121-4996275-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996275-0113-LAB/results/944160398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"419","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","11:44:00","MST","2021-01-13 18:44:00",NA,"4.18",4180,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160408","WFWQC_UT-WFWQC0121-4996022-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996022-0113-LAB/results/944160408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"420","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","11:59:00","MST","2021-01-13 18:59:00",NA,"4.85",4850,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160419","WFWQC_UT-WFWQC0121-4996020-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996020-0113-LAB/results/944160419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"421","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","12:13:00","MST","2021-01-13 19:13:00",NA,"4.74",4740,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160430","WFWQC_UT-WFWQC0121-4996003-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996003-0113-LAB/results/944160430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"422","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","12:45:00","MST","2021-01-13 19:45:00",NA,"3.3",3300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160441","WFWQC_UT-WFWQC0121-4917712-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4917712-0113-LAB/results/944160441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"423","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-01-13","13:11:00","MST","2021-01-13 20:11:00",NA,"4.34",4340,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160452","WFWQC_UT-WFWQC0121-4995467-0113-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995467-0113-LAB/results/944160452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"424","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-16","09:18:00","MST","2021-02-16 16:18:00",NA,"0.375",375,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160463","WFWQC_UT-WFWQC0221-4995575-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4995575-0216-LAB/results/944160463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"425","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-16","10:05:00","MST","2021-02-16 17:05:00",NA,"2.04",2040,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160474","WFWQC_UT-WFWQC0221-4917712-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4917712-0216-LAB/results/944160474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"426","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-16","11:22:00","MST","2021-02-16 18:22:00",NA,"0.452",452,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160485","WFWQC_UT-WFWQC0221-4996680-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996680-0216-LAB/results/944160485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"427","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-16","12:41:00","MST","2021-02-16 19:41:00",NA,"8.39",8390,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160496","WFWQC_UT-WFWQC0221-4995210-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4995210-0216-LAB/results/944160496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"428","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-16","09:49:00","MST","2021-02-16 16:49:00",NA,"2.57",2570,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160507","WFWQC_UT-WFWQC0221-4994952-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4994952-0216-LAB/results/944160507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1158","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","10:24:00","MST","2021-02-17 17:24:00",NA,"5.93",5930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160518","WFWQC_UT-WFWQC0221-4995043-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4995043-0217-LAB/results/944160518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"430","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","10:50:00","MST","2021-02-17 17:50:00",NA,"2.47",2470,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160529","WFWQC_UT-WFWQC0221-4995075-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4995075-0217-LAB/results/944160529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"431","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","11:15:00","MST","2021-02-17 18:15:00",NA,"0.917",917,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160544","WFWQC_UT-WFWQC0221-4995222-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4995222-0217-LAB/results/944160544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1161","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","11:43:00","MST","2021-02-17 18:43:00",NA,"1.35",1350,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160555","WFWQC_UT-WFWQC0221-4996570-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996570-0217-LAB/results/944160555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"433","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","11:55:00","MST","2021-02-17 18:55:00",NA,"25",25000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160566","WFWQC_UT-WFWQC0221-4996560-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996560-0217-LAB/results/944160566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"434","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","12:13:00","MST","2021-02-17 19:13:00",NA,"21.8",21800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160577","WFWQC_UT-WFWQC0221-4996550-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996550-0217-LAB/results/944160577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1164","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","12:30:00","MST","2021-02-17 19:30:00",NA,"0.909",909,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160588","WFWQC_UT-WFWQC0221-4996410-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996410-0217-LAB/results/944160588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"436","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","12:46:00","MST","2021-02-17 19:46:00",NA,"5.53",5530,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160599","WFWQC_UT-WFWQC0221-4996190-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996190-0217-LAB/results/944160599/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"437","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","13:17:00","MST","2021-02-17 20:17:00",NA,"6.94",6940,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160610","WFWQC_UT-WFWQC0221-4996540-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996540-0217-LAB/results/944160610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"438","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","13:30:00","MST","2021-02-17 20:30:00",NA,"8.83",8830,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160621","WFWQC_UT-WFWQC0221-4996566-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996566-0217-LAB/results/944160621/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"439","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","13:46:00","MST","2021-02-17 20:46:00",NA,"5.97",5970,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160632","WFWQC_UT-WFWQC0221-4996275-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996275-0217-LAB/results/944160632/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"440","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","13:58:00","MST","2021-02-17 20:58:00",NA,"0.891",891,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160643","WFWQC_UT-WFWQC0221-4996100-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996100-0217-LAB/results/944160643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"441","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","14:28:00","MST","2021-02-17 21:28:00",NA,"2.98",2980,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160654","WFWQC_UT-WFWQC0221-4996022-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996022-0217-LAB/results/944160654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"442","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","14:45:00","MST","2021-02-17 21:45:00",NA,"4.65",4650,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160665","WFWQC_UT-WFWQC0221-4996020-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996020-0217-LAB/results/944160665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"564","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-02-17","14:56:00","MST","2021-02-17 21:56:00",NA,"3.89",3890,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160676","WFWQC_UT-WFWQC0221-4996003-0217-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996003-0217-LAB/results/944160676/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1173","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-16","08:42:00","MST","2021-03-16 15:42:00",NA,"2.89",2890,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160687","WFWQC_UT-WFWQC0321-4994952-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4994952-0316-LAB/results/944160687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"445","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-16","09:19:00","MST","2021-03-16 16:19:00",NA,"7",7000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160698","WFWQC_UT-WFWQC0321-4995043-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995043-0316-LAB/results/944160698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"446","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-16","09:47:00","MST","2021-03-16 16:47:00",NA,"3.16",3160,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160709","WFWQC_UT-WFWQC0321-4995075-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995075-0316-LAB/results/944160709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1176","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-16","10:03:00","MST","2021-03-16 17:03:00",NA,"2.04",2040,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160720","WFWQC_UT-WFWQC0321-4995222-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995222-0316-LAB/results/944160720/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"812","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-16","11:31:00","MST","2021-03-16 18:31:00",NA,"8.88",8880,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160731","WFWQC_UT-WFWQC0321-4995210-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995210-0316-LAB/results/944160731/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"449","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-16","12:53:00","MST","2021-03-16 19:53:00",NA,"0.315",315,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160742","WFWQC_UT-WFWQC0321-4996680-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996680-0316-LAB/results/944160742/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"450","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-16","14:41:00","MST","2021-03-16 21:41:00",NA,"0.382",382,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160753","WFWQC_UT-WFWQC0321-4995575-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995575-0316-LAB/results/944160753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"451","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-16","15:24:00","MST","2021-03-16 22:24:00",NA,"0.568",568,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160764","WFWQC_UT-WFWQC0321-4917712-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4917712-0316-LAB/results/944160764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1181","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-16","15:51:00","MST","2021-03-16 22:51:00",NA,"2.86",2860,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160775","WFWQC_UT-WFWQC0321-4995467-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995467-0316-LAB/results/944160775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"453","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","08:44:00","MST","2021-03-17 15:44:00",NA,"2.35",2350,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160786","WFWQC_UT-WFWQC0321-4996570-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996570-0317-LAB/results/944160786/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"454","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","08:56:00","MST","2021-03-17 15:56:00",NA,"29.7",29700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160797","WFWQC_UT-WFWQC0321-4996560-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996560-0317-LAB/results/944160797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1184","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","09:12:00","MST","2021-03-17 16:12:00",NA,"25.4",25400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160808","WFWQC_UT-WFWQC0321-4996550-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996550-0317-LAB/results/944160808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"577","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","09:30:00","MST","2021-03-17 16:30:00",NA,"1.5",1500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160819","WFWQC_UT-WFWQC0321-4996410-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996410-0317-LAB/results/944160819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"457","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","09:44:00","MST","2021-03-17 16:44:00",NA,"5.33",5330,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160830","WFWQC_UT-WFWQC0321-4996190-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996190-0317-LAB/results/944160830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1187","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","10:18:00","MST","2021-03-17 17:18:00",NA,"10.4",10400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160841","WFWQC_UT-WFWQC0321-4996540-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996540-0317-LAB/results/944160841/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"580","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","10:38:00","MST","2021-03-17 17:38:00",NA,"10.5",10500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160852","WFWQC_UT-WFWQC0321-4996566-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996566-0317-LAB/results/944160852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"460","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","10:58:00","MST","2021-03-17 17:58:00",NA,"5.27",5270,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160863","WFWQC_UT-WFWQC0321-4996275-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996275-0317-LAB/results/944160863/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"582","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","11:12:00","MST","2021-03-17 18:12:00",NA,"0.95",950,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160878","WFWQC_UT-WFWQC0321-4996100-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996100-0317-LAB/results/944160878/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"462","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","11:49:00","MST","2021-03-17 18:49:00",NA,"2.97",2970,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160889","WFWQC_UT-WFWQC0321-4996022-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996022-0317-LAB/results/944160889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"827","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","12:06:00","MST","2021-03-17 19:06:00",NA,"3.58",3580,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160900","WFWQC_UT-WFWQC0321-4996020-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996020-0317-LAB/results/944160900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"342","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-03-17","12:21:00","MST","2021-03-17 19:21:00",NA,"3.54",3540,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160911","WFWQC_UT-WFWQC0321-4996003-0317-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996003-0317-LAB/results/944160911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"586","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-13","08:52:00","MST","2021-04-13 15:52:00",NA,"1.31",1310,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160922","WFWQC_UT-WFWQC0421-4994952-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4994952-0413-LAB/results/944160922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"830","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-13","09:29:00","MST","2021-04-13 16:29:00",NA,"5.17",5170,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160933","WFWQC_UT-WFWQC0421-4995043-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995043-0413-LAB/results/944160933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"588","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-13","09:56:00","MST","2021-04-13 16:56:00",NA,"3.1",3100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160944","WFWQC_UT-WFWQC0421-4995075-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995075-0413-LAB/results/944160944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"468","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-13","10:14:00","MST","2021-04-13 17:14:00",NA,"0.921",921,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160955","WFWQC_UT-WFWQC0421-4995222-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995222-0413-LAB/results/944160955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"469","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-13","11:43:00","MST","2021-04-13 18:43:00",NA,"9.89",9890,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160966","WFWQC_UT-WFWQC0421-4995210-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995210-0413-LAB/results/944160966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"227","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-13","13:00:00","MST","2021-04-13 20:00:00",NA,"0.381",381,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160977","WFWQC_UT-WFWQC0421-4996680-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996680-0413-LAB/results/944160977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"228","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-13","13:38:00","MST","2021-04-13 20:38:00",NA,"0.362",362,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160988","WFWQC_UT-WFWQC0421-4995575-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995575-0413-LAB/results/944160988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"229","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-13","14:23:00","MST","2021-04-13 21:23:00",NA,"2.1",2100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944160999","WFWQC_UT-WFWQC0421-4917712-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4917712-0413-LAB/results/944160999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"270","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-13","14:49:00","MST","2021-04-13 21:49:00",NA,"1.41",1410,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161010","WFWQC_UT-WFWQC0421-4995467-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995467-0413-LAB/results/944161010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"231","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","09:09:00","MST","2021-04-14 16:09:00",NA,"2.31",2310,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161021","WFWQC_UT-WFWQC0421-4996570-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996570-0414-LAB/results/944161021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"232","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","09:23:00","MST","2021-04-14 16:23:00",NA,"30",30000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161032","WFWQC_UT-WFWQC0421-4996560-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996560-0414-LAB/results/944161032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"233","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","09:37:00","MST","2021-04-14 16:37:00",NA,"26.6",26600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161043","WFWQC_UT-WFWQC0421-4996550-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996550-0414-LAB/results/944161043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"477","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","09:59:00","MST","2021-04-14 16:59:00",NA,"0.834",834,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161054","WFWQC_UT-WFWQC0421-4996410-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996410-0414-LAB/results/944161054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"235","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","10:14:00","MST","2021-04-14 17:14:00",NA,"5.74",5740,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161065","WFWQC_UT-WFWQC0421-4996190-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996190-0414-LAB/results/944161065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"236","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","10:49:00","MST","2021-04-14 17:49:00",NA,"13.2",13200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161076","WFWQC_UT-WFWQC0421-4996540-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996540-0414-LAB/results/944161076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"480","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","11:02:00","MST","2021-04-14 18:02:00",NA,"11.5",11500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161087","WFWQC_UT-WFWQC0421-4996566-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996566-0414-LAB/results/944161087/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"238","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","11:16:00","MST","2021-04-14 18:16:00",NA,"5.69",5690,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161098","WFWQC_UT-WFWQC0421-4996275-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996275-0414-LAB/results/944161098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"239","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","11:35:00","MST","2021-04-14 18:35:00",NA,"0.623",623,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161109","WFWQC_UT-WFWQC0421-4996100-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996100-0414-LAB/results/944161109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"240","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","12:07:00","MST","2021-04-14 19:07:00",NA,"2.91",2910,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161120","WFWQC_UT-WFWQC0421-4996022-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996022-0414-LAB/results/944161120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"241","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","12:24:00","MST","2021-04-14 19:24:00",NA,"4.48",4480,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161131","WFWQC_UT-WFWQC0421-4996020-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996020-0414-LAB/results/944161131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"485","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-04-14","12:42:00","MST","2021-04-14 19:42:00",NA,"2.96",2960,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161142","WFWQC_UT-WFWQC0421-4996003-0414-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996003-0414-LAB/results/944161142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"243","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-11","08:57:00","MST","2021-05-11 15:57:00",NA,"1.38",1380,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161153","WFWQC_UT-WFWQC0521-4994952-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4994952-0511-LAB/results/944161153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"244","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-11","09:36:00","MST","2021-05-11 16:36:00",NA,"2.24",2240,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161164","WFWQC_UT-WFWQC0521-4995043-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995043-0511-LAB/results/944161164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"488","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-11","10:07:00","MST","2021-05-11 17:07:00",NA,"2.98",2980,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161175","WFWQC_UT-WFWQC0521-4995075-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995075-0511-LAB/results/944161175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"246","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-11","10:32:00","MST","2021-05-11 17:32:00",NA,"0.561",561,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161186","WFWQC_UT-WFWQC0521-4995222-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995222-0511-LAB/results/944161186/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"247","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-11","11:42:00","MST","2021-05-11 18:42:00",NA,"11.6",11600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161197","WFWQC_UT-WFWQC0521-4995210-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995210-0511-LAB/results/944161197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"248","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-11","13:17:00","MST","2021-05-11 20:17:00",NA,"0.275",275,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161208","WFWQC_UT-WFWQC0521-4996680-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996680-0511-LAB/results/944161208/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"249","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-11","14:23:00","MST","2021-05-11 21:23:00",NA,"0.149",149,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161219","WFWQC_UT-WFWQC0521-4995575-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995575-0511-LAB/results/944161219/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"250","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-11","15:41:00","MST","2021-05-11 22:41:00",NA,"4.58",4580,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161230","WFWQC_UT-WFWQC0521-4917712-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4917712-0511-LAB/results/944161230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"251","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-11","16:15:00","MST","2021-05-11 23:15:00",NA,"1.5",1500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161245","WFWQC_UT-WFWQC0521-4995467-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995467-0511-LAB/results/944161245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"252","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","08:43:00","MST","2021-05-12 15:43:00",NA,"1.93",1930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161256","WFWQC_UT-WFWQC0521-4996570-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996570-0512-LAB/results/944161256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"253","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","09:06:00","MST","2021-05-12 16:06:00",NA,"27.6",27600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161267","WFWQC_UT-WFWQC0521-4996560-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996560-0512-LAB/results/944161267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1226","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","09:21:00","MST","2021-05-12 16:21:00",NA,"23.6",23600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161278","WFWQC_UT-WFWQC0521-4996550-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996550-0512-LAB/results/944161278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"295","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","09:47:00","MST","2021-05-12 16:47:00",NA,"0.591",591,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161289","WFWQC_UT-WFWQC0521-4996410-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996410-0512-LAB/results/944161289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"256","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","10:05:00","MST","2021-05-12 17:05:00",NA,"6.76",6760,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161300","WFWQC_UT-WFWQC0521-4996190-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996190-0512-LAB/results/944161300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"500","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","10:37:00","MST","2021-05-12 17:37:00",NA,"6.97",6970,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161311","WFWQC_UT-WFWQC0521-4996540-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996540-0512-LAB/results/944161311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"865","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","10:53:00","MST","2021-05-12 17:53:00",NA,"6.68",6680,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161322","WFWQC_UT-WFWQC0521-4996566-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996566-0512-LAB/results/944161322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"380","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","11:27:00","MST","2021-05-12 18:27:00",NA,"6.53",6530,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161333","WFWQC_UT-WFWQC0521-4996275-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996275-0512-LAB/results/944161333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"381","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","11:52:00","MST","2021-05-12 18:52:00",NA,"0.147",147,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161344","WFWQC_UT-WFWQC0521-4996100-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996100-0512-LAB/results/944161344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"504","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","12:27:00","MST","2021-05-12 19:27:00",NA,"1.17",1170,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161355","WFWQC_UT-WFWQC0521-4996022-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996022-0512-LAB/results/944161355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"262","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","12:45:00","MST","2021-05-12 19:45:00",NA,"3.2",3200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161366","WFWQC_UT-WFWQC0521-4996020-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996020-0512-LAB/results/944161366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"384","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-05-12","13:24:00","MST","2021-05-12 20:24:00",NA,"2.16",2160,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161377","WFWQC_UT-WFWQC0521-4996003-0512-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996003-0512-LAB/results/944161377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"264","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-15","08:56:00","MST","2021-06-15 15:56:00",NA,"1.07",1070,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161388","WFWQC_UT-WFWQC0621-4994952-0615-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4994952-0615-LAB/results/944161388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"265","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-15","09:35:00","MST","2021-06-15 16:35:00",NA,"4",4000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161399","WFWQC_UT-WFWQC0621-4995043-0615-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4995043-0615-LAB/results/944161399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"266","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-15","10:01:00","MST","2021-06-15 17:01:00",NA,"2.72",2720,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161410","WFWQC_UT-WFWQC0621-4995075-0615-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4995075-0615-LAB/results/944161410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"267","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-15","11:01:00","MST","2021-06-15 18:01:00",NA,"1.02",1020,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161421","WFWQC_UT-WFWQC0621-4995222-0615-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4995222-0615-LAB/results/944161421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"268","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-15","12:36:00","MST","2021-06-15 19:36:00",NA,"14.9",14900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161432","WFWQC_UT-WFWQC0621-4995210-0615-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4995210-0615-LAB/results/944161432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"269","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-15","13:47:00","MST","2021-06-15 20:47:00",NA,"0.279",279,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161443","WFWQC_UT-WFWQC0621-4996680-0615-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996680-0615-LAB/results/944161443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"391","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2021-06-15","15:55:00","MST","2021-06-15 22:55:00",NA,NA,230,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Below Reporting Limit","Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161454","WFWQC_UT-WFWQC0621-4995575-0615-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4995575-0615-LAB/results/944161454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"271","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","08:36:00","MST","2021-06-16 15:36:00",NA,"1.84",1840,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161465","WFWQC_UT-WFWQC0621-4996570-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996570-0616-LAB/results/944161465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"151","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","08:54:00","MST","2021-06-16 15:54:00",NA,"24",24000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161476","WFWQC_UT-WFWQC0621-4996560-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996560-0616-LAB/results/944161476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"273","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","09:04:00","MST","2021-06-16 16:04:00",NA,"20",20000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161487","WFWQC_UT-WFWQC0621-4996550-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996550-0616-LAB/results/944161487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"517","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","09:34:00","MST","2021-06-16 16:34:00",NA,"0.734",734,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161498","WFWQC_UT-WFWQC0621-4996410-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996410-0616-LAB/results/944161498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"518","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","09:55:00","MST","2021-06-16 16:55:00",NA,"8.76",8760,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161509","WFWQC_UT-WFWQC0621-4996190-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996190-0616-LAB/results/944161509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"155","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","10:28:00","MST","2021-06-16 17:28:00",NA,"10.6",10600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161520","WFWQC_UT-WFWQC0621-4996540-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996540-0616-LAB/results/944161520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"520","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","10:45:00","MST","2021-06-16 17:45:00",NA,"6.99",6990,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161531","WFWQC_UT-WFWQC0621-4996566-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996566-0616-LAB/results/944161531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"521","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","11:06:00","MST","2021-06-16 18:06:00",NA,"7.89",7890,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161542","WFWQC_UT-WFWQC0621-4996275-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996275-0616-LAB/results/944161542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"279","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2021-06-16","11:27:00","MST","2021-06-16 18:27:00",NA,NA,230,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Below Reporting Limit","Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161557","WFWQC_UT-WFWQC0621-4996100-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996100-0616-LAB/results/944161557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"159","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","12:14:00","MST","2021-06-16 19:14:00",NA,"1.13",1130,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161568","WFWQC_UT-WFWQC0621-4996022-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996022-0616-LAB/results/944161568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"160","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","12:35:00","MST","2021-06-16 19:35:00",NA,"5.49",5490,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161579","WFWQC_UT-WFWQC0621-4996020-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996020-0616-LAB/results/944161579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"322","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","12:51:00","MST","2021-06-16 19:51:00",NA,"3.66",3660,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161590","WFWQC_UT-WFWQC0621-4996003-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996003-0616-LAB/results/944161590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"526","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-06-16","13:47:00","MST","2021-06-16 20:47:00",NA,"3.05",3050,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161601","WFWQC_UT-WFWQC0621-4917712-0616-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4917712-0616-LAB/results/944161601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"163","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-13","08:36:00","MST","2021-07-13 15:36:00",NA,"1.13",1130,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161612","WFWQC_UT-WFWQC0721-4994952-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4994952-0713-LAB/results/944161612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"285","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-13","09:10:00","MST","2021-07-13 16:10:00",NA,"4.46",4460,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161623","WFWQC_UT-WFWQC0721-4995043-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4995043-0713-LAB/results/944161623/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"529","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-13","10:00:00","MST","2021-07-13 17:00:00",NA,"2.58",2580,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161634","WFWQC_UT-WFWQC0721-4995075-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4995075-0713-LAB/results/944161634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"206","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-13","10:35:00","MST","2021-07-13 17:35:00",NA,"0.584",584,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161645","WFWQC_UT-WFWQC0721-4995222-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4995222-0713-LAB/results/944161645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"167","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-13","14:14:00","MST","2021-07-13 21:14:00",NA,"0.413",413,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161656","WFWQC_UT-WFWQC0721-4996680-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996680-0713-LAB/results/944161656/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"168","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-13","12:17:00","MST","2021-07-13 19:17:00",NA,"20.4",20400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161667","WFWQC_UT-WFWQC0721-4995210-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4995210-0713-LAB/results/944161667/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"209","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-13","14:55:00","MST","2021-07-13 21:55:00",NA,"0.287",287,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161678","WFWQC_UT-WFWQC0721-4995575-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4995575-0713-LAB/results/944161678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"170","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-13","16:18:00","MST","2021-07-13 23:18:00",NA,"2.6",2600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161689","WFWQC_UT-WFWQC0721-4917712-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4917712-0713-LAB/results/944161689/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"171","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","08:45:00","MST","2021-07-14 15:45:00",NA,"24.1",24100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161700","WFWQC_UT-WFWQC0721-4996560-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996560-0714-LAB/results/944161700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"172","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","09:09:00","MST","2021-07-14 16:09:00",NA,"6.09",6090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161711","WFWQC_UT-WFWQC0721-4996020-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996020-0714-LAB/results/944161711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"213","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","09:40:00","MST","2021-07-14 16:40:00",NA,"1.95",1950,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161722","WFWQC_UT-WFWQC0721-4996570-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996570-0714-LAB/results/944161722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"214","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","10:00:00","MST","2021-07-14 17:00:00",NA,"23.7",23700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161733","WFWQC_UT-WFWQC0721-4996550-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996550-0714-LAB/results/944161733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"539","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","10:24:00","MST","2021-07-14 17:24:00",NA,"0.487",487,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161744","WFWQC_UT-WFWQC0721-4996410-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996410-0714-LAB/results/944161744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"216","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","10:38:00","MST","2021-07-14 17:38:00",NA,"8.43",8430,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161755","WFWQC_UT-WFWQC0721-4996190-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996190-0714-LAB/results/944161755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"217","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","11:09:00","MST","2021-07-14 18:09:00",NA,"6.98",6980,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161766","WFWQC_UT-WFWQC0721-4996540-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996540-0714-LAB/results/944161766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1271","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","11:27:00","MST","2021-07-14 18:27:00",NA,"6.67",6670,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161777","WFWQC_UT-WFWQC0721-4996566-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996566-0714-LAB/results/944161777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"179","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","11:49:00","MST","2021-07-14 18:49:00",NA,"9.18",9180,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161788","WFWQC_UT-WFWQC0721-4996275-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996275-0714-LAB/results/944161788/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"180","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","12:09:00","MST","2021-07-14 19:09:00",NA,"0.23",230,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161799","WFWQC_UT-WFWQC0721-4996100-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996100-0714-LAB/results/944161799/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1274","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","13:19:00","MST","2021-07-14 20:19:00",NA,"1.12",1120,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161810","WFWQC_UT-WFWQC0721-4996022-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996022-0714-LAB/results/944161810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"546","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-07-14","13:00:00","MST","2021-07-14 20:00:00",NA,"4.87",4870,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161821","WFWQC_UT-WFWQC0721-4996003-0714-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996003-0714-LAB/results/944161821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"183","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-17","08:58:00","MST","2021-08-17 15:58:00",NA,"1.54",1540,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161832","WFWQC_UT-WFWQC0821-4994952-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4994952-0817-LAB/results/944161832/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"184","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-17","09:25:00","MST","2021-08-17 16:25:00",NA,"7.41",7410,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161843","WFWQC_UT-WFWQC0821-4995043-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995043-0817-LAB/results/944161843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"549","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-17","09:59:00","MST","2021-08-17 16:59:00",NA,"3.06",3060,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161854","WFWQC_UT-WFWQC0821-4995075-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995075-0817-LAB/results/944161854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1279","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-17","10:34:00","MST","2021-08-17 17:34:00",NA,"1.09",1090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161865","WFWQC_UT-WFWQC0821-4995222-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995222-0817-LAB/results/944161865/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"308","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-17","11:46:00","MST","2021-08-17 18:46:00",NA,"14.2",14200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161876","WFWQC_UT-WFWQC0821-4995210-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995210-0817-LAB/results/944161876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"188","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2021-08-17","13:12:00","MST","2021-08-17 20:12:00",NA,NA,230,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Below Reporting Limit","Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161889","WFWQC_UT-WFWQC0821-4996680-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996680-0817-LAB/results/944161889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1282","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-17",NA,NA,NA,NA,"0.269",269,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161902","WFWQC_UT-WFWQC0821-4995575-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995575-0817-LAB/results/944161902/resdetectqntlmts",NA,NA,NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"554","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-17","16:05:00","MST","2021-08-17 23:05:00",NA,"3.46",3460,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161913","WFWQC_UT-WFWQC0821-4917712-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4917712-0817-LAB/results/944161913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"555","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-17","16:41:00","MST","2021-08-17 23:41:00",NA,"1.65",1650,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161924","WFWQC_UT-WFWQC0821-4995467-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995467-0817-LAB/results/944161924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"192","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","09:27:00","MST","2021-08-18 16:27:00",NA,"1.3",1300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161935","WFWQC_UT-WFWQC0821-4996570-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996570-0818-LAB/results/944161935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"557","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","09:47:00","MST","2021-08-18 16:47:00",NA,"25.4",25400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161946","WFWQC_UT-WFWQC0821-4996560-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996560-0818-LAB/results/944161946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"558","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","10:14:00","MST","2021-08-18 17:14:00",NA,"8.94",8940,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161957","WFWQC_UT-WFWQC0821-4996550-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996550-0818-LAB/results/944161957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"195","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","10:47:00","MST","2021-08-18 17:47:00",NA,"0.96",960,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161968","WFWQC_UT-WFWQC0821-4996410-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996410-0818-LAB/results/944161968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"560","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","11:04:00","MST","2021-08-18 18:04:00",NA,"4.33",4330,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161979","WFWQC_UT-WFWQC0821-4996190-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996190-0818-LAB/results/944161979/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"197","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","11:42:00","MST","2021-08-18 18:42:00",NA,"10.5",10500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944161990","WFWQC_UT-WFWQC0821-4996540-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996540-0818-LAB/results/944161990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"562","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","12:02:00","MST","2021-08-18 19:02:00",NA,"9.66",9660,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162001","WFWQC_UT-WFWQC0821-4996566-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996566-0818-LAB/results/944162001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"563","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","12:25:00","MST","2021-08-18 19:25:00",NA,"3.85",3850,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162012","WFWQC_UT-WFWQC0821-4996275-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996275-0818-LAB/results/944162012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"928","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","12:44:00","MST","2021-08-18 19:44:00",NA,"0.578",578,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162023","WFWQC_UT-WFWQC0821-4996100-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996100-0818-LAB/results/944162023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"565","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","13:28:00","MST","2021-08-18 20:28:00",NA,"1.49",1490,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162034","WFWQC_UT-WFWQC0821-4996022-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996022-0818-LAB/results/944162034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"566","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","13:54:00","MST","2021-08-18 20:54:00",NA,"3.32",3320,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162045","WFWQC_UT-WFWQC0821-4996020-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996020-0818-LAB/results/944162045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"567","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-08-18","14:06:00","MST","2021-08-18 21:06:00",NA,"1.82",1820,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162056","WFWQC_UT-WFWQC0821-4996003-0818-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996003-0818-LAB/results/944162056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"568","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-14","08:38:00","MST","2021-09-14 15:38:00",NA,"1.31",1310,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162067","WFWQC_UT-WFWQC0921-4994952-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4994952-0914-LAB/results/944162067/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"569","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-14","09:16:00","MST","2021-09-14 16:16:00",NA,"6.26",6260,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162078","WFWQC_UT-WFWQC0921-4995043-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4995043-0914-LAB/results/944162078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"570","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-14","10:03:00","MST","2021-09-14 17:03:00",NA,"2.99",2990,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162089","WFWQC_UT-WFWQC0921-4995075-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4995075-0914-LAB/results/944162089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"571","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-14","12:23:00","MST","2021-09-14 19:23:00",NA,"16.16",16160,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162100","WFWQC_UT-WFWQC0921-4995210-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4995210-0914-LAB/results/944162100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"572","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-14","13:46:00","MST","2021-09-14 20:46:00",NA,"0.242",242,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162111","WFWQC_UT-WFWQC0921-4996680-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996680-0914-LAB/results/944162111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"573","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-14","15:38:00","MST","2021-09-14 22:38:00",NA,"0.345",345,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162122","WFWQC_UT-WFWQC0921-4995575-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4995575-0914-LAB/results/944162122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"574","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-14","17:09:00","MST","2021-09-15 00:09:00",NA,"3.02",3020,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162133","WFWQC_UT-WFWQC0921-4917712-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4917712-0914-LAB/results/944162133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"575","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","08:40:00","MST","2021-09-15 15:40:00",NA,"2.45",2450,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162144","WFWQC_UT-WFWQC0921-4996570-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996570-0915-LAB/results/944162144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"576","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","08:57:00","MST","2021-09-15 15:57:00",NA,"24",24000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162155","WFWQC_UT-WFWQC0921-4996560-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996560-0915-LAB/results/944162155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"941","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","09:16:00","MST","2021-09-15 16:16:00",NA,"21.8",21800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162166","WFWQC_UT-WFWQC0921-4996550-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996550-0915-LAB/results/944162166/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"578","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","09:44:00","MST","2021-09-15 16:44:00",NA,"0.879",879,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162177","WFWQC_UT-WFWQC0921-4996410-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996410-0915-LAB/results/944162177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"579","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","10:00:00","MST","2021-09-15 17:00:00",NA,"6.47",6470,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162188","WFWQC_UT-WFWQC0921-4996190-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996190-0915-LAB/results/944162188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"944","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","10:33:00","MST","2021-09-15 17:33:00",NA,"12.3",12300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162199","WFWQC_UT-WFWQC0921-4996540-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996540-0915-LAB/results/944162199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"581","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","10:49:00","MST","2021-09-15 17:49:00",NA,"12",12000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162210","WFWQC_UT-WFWQC0921-4996566-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996566-0915-LAB/results/944162210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1311","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","11:09:00","MST","2021-09-15 18:09:00",NA,"7.07",7070,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162221","WFWQC_UT-WFWQC0921-4996275-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996275-0915-LAB/results/944162221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"583","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","11:28:00","MST","2021-09-15 18:28:00",NA,"0.27",270,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162232","WFWQC_UT-WFWQC0921-4996100-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996100-0915-LAB/results/944162232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"584","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","12:00:00","MST","2021-09-15 19:00:00",NA,"2.99",2990,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162243","WFWQC_UT-WFWQC0921-4996020-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996020-0915-LAB/results/944162243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1314","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","12:59:00","MST","2021-09-15 19:59:00",NA,"2.93",2930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162254","WFWQC_UT-WFWQC0921-4996022-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996022-0915-LAB/results/944162254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"707","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","13:07:00","MST","2021-09-15 20:07:00",NA,"2.92",2920,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162269","WFWQC_UT-WFWQC0921-4996003-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996003-0915-LAB/results/944162269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"587","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-09-15","13:35:00","MST","2021-09-15 20:35:00",NA,"0.438",438,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162280","WFWQC_UT-WFWQC0921-4995467-0915-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4995467-0915-LAB/results/944162280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"952","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-12","08:42:00","MST","2021-10-12 15:42:00",NA,"1.63",1630,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162291","WFWQC_UT-WFWQC1021-4994952-1012-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4994952-1012-LAB/results/944162291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"589","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-12","09:23:00","MST","2021-10-12 16:23:00",NA,"8.13",8130,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162302","WFWQC_UT-WFWQC1021-4995043-1012-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995043-1012-LAB/results/944162302/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"590","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-12","10:05:00","MST","2021-10-12 17:05:00",NA,"2.31",2310,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162313","WFWQC_UT-WFWQC1021-4995075-1012-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995075-1012-LAB/results/944162313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"591","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-12","10:40:00","MST","2021-10-12 17:40:00",NA,"1.25",1250,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162324","WFWQC_UT-WFWQC1021-4995222-1012-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995222-1012-LAB/results/944162324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"592","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-12","11:46:00","MST","2021-10-12 18:46:00",NA,"12.9",12900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162335","WFWQC_UT-WFWQC1021-4995210-1012-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995210-1012-LAB/results/944162335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"593","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-12","13:27:00","MST","2021-10-12 20:27:00",NA,"0.342",342,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162346","WFWQC_UT-WFWQC1021-4996680-1012-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996680-1012-LAB/results/944162346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"594","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-12","14:48:00","MST","2021-10-12 21:48:00",NA,"0.601",601,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162357","WFWQC_UT-WFWQC1021-4995575-1012-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995575-1012-LAB/results/944162357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"595","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-12","15:35:00","MST","2021-10-12 22:35:00",NA,"6.17",6170,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162368","WFWQC_UT-WFWQC1021-4917712-1012-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4917712-1012-LAB/results/944162368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"596","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-12","16:06:00","MST","2021-10-12 23:06:00",NA,"2.67",2670,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162379","WFWQC_UT-WFWQC1021-4995467-1012-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995467-1012-LAB/results/944162379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"597","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","09:02:00","MST","2021-10-13 16:02:00",NA,"2.57",2570,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162390","WFWQC_UT-WFWQC1021-4996570-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996570-1013-LAB/results/944162390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"598","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","09:54:00","MST","2021-10-13 16:54:00",NA,"25.2",25200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162401","WFWQC_UT-WFWQC1021-4996560-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996560-1013-LAB/results/944162401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"599","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","09:32:00","MST","2021-10-13 16:32:00",NA,"23",23000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162412","WFWQC_UT-WFWQC1021-4996550-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996550-1013-LAB/results/944162412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"600","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","10:10:00","MST","2021-10-13 17:10:00",NA,"0.689",689,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162423","WFWQC_UT-WFWQC1021-4996410-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996410-1013-LAB/results/944162423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"601","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","10:37:00","MST","2021-10-13 17:37:00",NA,"8.46",8460,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162434","WFWQC_UT-WFWQC1021-4996190-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996190-1013-LAB/results/944162434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"602","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","11:13:00","MST","2021-10-13 18:13:00",NA,"7.88",7880,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162445","WFWQC_UT-WFWQC1021-4996540-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996540-1013-LAB/results/944162445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"603","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","11:28:00","MST","2021-10-13 18:28:00",NA,"6.59",6590,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162456","WFWQC_UT-WFWQC1021-4996566-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996566-1013-LAB/results/944162456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"604","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","11:54:00","MST","2021-10-13 18:54:00",NA,"7.5",7500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162467","WFWQC_UT-WFWQC1021-4996275-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996275-1013-LAB/results/944162467/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"605","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","12:12:00","MST","2021-10-13 19:12:00",NA,"1.31",1310,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162478","WFWQC_UT-WFWQC1021-4996100-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996100-1013-LAB/results/944162478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"606","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","13:23:00","MST","2021-10-13 20:23:00",NA,"5.88",5880,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162489","WFWQC_UT-WFWQC1021-4996020-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996020-1013-LAB/results/944162489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"607","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","13:32:00","MST","2021-10-13 20:32:00",NA,"3.85",3850,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162500","WFWQC_UT-WFWQC1021-4996003-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996003-1013-LAB/results/944162500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"608","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-10-13","13:06:00","MST","2021-10-13 20:06:00",NA,"2.7",2700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162511","WFWQC_UT-WFWQC1021-4996022-1013-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996022-1013-LAB/results/944162511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"609","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-08","08:57:00","MST","2021-11-08 15:57:00",NA,"2.35",2350,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162522","WFWQC_UT-WFWQC1121-4994952-1108-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4994952-1108-LAB/results/944162522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"610","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-08","09:47:00","MST","2021-11-08 16:47:00",NA,"3.2",3200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162533","WFWQC_UT-WFWQC1121-4995075-1108-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4995075-1108-LAB/results/944162533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"611","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-08","10:39:00","MST","2021-11-08 17:39:00",NA,"3.7",3700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162544","WFWQC_UT-WFWQC1121-4995222-1108-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4995222-1108-LAB/results/944162544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"612","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2021-11-08","11:11:00","MST","2021-11-08 18:11:00",NA,NA,230,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Below Reporting Limit","Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162559","WFWQC_UT-WFWQC1121-4996680-1108-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996680-1108-LAB/results/944162559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"613","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-08","13:18:00","MST","2021-11-08 20:18:00",NA,"0.3",300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162570","WFWQC_UT-WFWQC1121-4995575-1108-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4995575-1108-LAB/results/944162570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"614","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-08","14:47:00","MST","2021-11-08 21:47:00",NA,"7.52",7520,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162581","WFWQC_UT-WFWQC1121-4917712-1108-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4917712-1108-LAB/results/944162581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"615","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-09","09:11:00","MST","2021-11-09 16:11:00",NA,"8.47",8470,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162592","WFWQC_UT-WFWQC1121-4995043-1109-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4995043-1109-LAB/results/944162592/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"616","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-09","10:53:00","MST","2021-11-09 17:53:00",NA,"17.6",17600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162603","WFWQC_UT-WFWQC1121-4995210-1109-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4995210-1109-LAB/results/944162603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"617","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-09","12:29:00","MST","2021-11-09 19:29:00",NA,"2.54",2540,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162614","WFWQC_UT-WFWQC1121-4996570-1109-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996570-1109-LAB/results/944162614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"618","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-09","12:48:00","MST","2021-11-09 19:48:00",NA,"24.2",24200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162625","WFWQC_UT-WFWQC1121-4996560-1109-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996560-1109-LAB/results/944162625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"619","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-09","13:39:00","MST","2021-11-09 20:39:00",NA,"21.1",21100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162636","WFWQC_UT-WFWQC1121-4996550-1109-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996550-1109-LAB/results/944162636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1349","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-09","13:56:00","MST","2021-11-09 20:56:00",NA,"0.879",879,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162647","WFWQC_UT-WFWQC1121-4996410-1109-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996410-1109-LAB/results/944162647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"621","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-09","14:26:00","MST","2021-11-09 21:26:00",NA,"8.93",8930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162658","WFWQC_UT-WFWQC1121-4996190-1109-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996190-1109-LAB/results/944162658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"622","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-09","15:10:00","MST","2021-11-09 22:10:00",NA,"10.5",10500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162669","WFWQC_UT-WFWQC1121-4996540-1109-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996540-1109-LAB/results/944162669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1352","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-09","15:36:00","MST","2021-11-09 22:36:00",NA,"9",9000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162680","WFWQC_UT-WFWQC1121-4996566-1109-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996566-1109-LAB/results/944162680/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"745","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-10","08:25:00","MST","2021-11-10 15:25:00",NA,"6.98",6980,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162691","WFWQC_UT-WFWQC1121-4996275-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996275-1110-LAB/results/944162691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"625","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-10","08:48:00","MST","2021-11-10 15:48:00",NA,"0.847",847,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162702","WFWQC_UT-WFWQC1121-4996100-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996100-1110-LAB/results/944162702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"990","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-10","09:59:00","MST","2021-11-10 16:59:00",NA,"2.57",2570,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162713","WFWQC_UT-WFWQC1121-4996022-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996022-1110-LAB/results/944162713/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"627","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-10","10:22:00","MST","2021-11-10 17:22:00",NA,"3.47",3470,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162724","WFWQC_UT-WFWQC1121-4996020-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996020-1110-LAB/results/944162724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"628","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-10","10:33:00","MST","2021-11-10 17:33:00",NA,"2.71",2710,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162735","WFWQC_UT-WFWQC1121-4996003-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:14",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996003-1110-LAB/results/944162735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"629","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2021-11-10","11:09:00","MST","2021-11-10 18:09:00",NA,"4.04",4040,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944162746","WFWQC_UT-WFWQC1121-5919860-1110-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at 6400 S Road","River/Stream",NA,"40.1144010000",40.114401,"-111.7929820000",-111.792982,"OK","16020202","WFWQC_UT-5919860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:13:14",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1144010000","-111.7929820000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-5919860-1110-LAB/results/944162746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"630","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-04","15:03:00","MST","2022-01-04 22:03:00",NA,"6.89",6890,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170157","WFWQC_UT-WFWQC0122-4917712-0104-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4917712-0104-LAB/results/944170157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"631","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-04","08:28:00","MST","2022-01-04 15:28:00",NA,"3.24",3240,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170168","WFWQC_UT-WFWQC0122-4994952-0104-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4994952-0104-LAB/results/944170168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"632","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-04","09:06:00","MST","2022-01-04 16:06:00",NA,"6.15",6150,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170179","WFWQC_UT-WFWQC0122-4995043-0104-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4995043-0104-LAB/results/944170179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"633","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-04","09:53:00","MST","2022-01-04 16:53:00",NA,"3.11",3110,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170190","WFWQC_UT-WFWQC0122-4995075-0104-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4995075-0104-LAB/results/944170190/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"755","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-04","11:43:00","MST","2022-01-04 18:43:00",NA,"15.2",15200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170201","WFWQC_UT-WFWQC0122-4995210-0104-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4995210-0104-LAB/results/944170201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"635","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-04","10:34:00","MST","2022-01-04 17:34:00",NA,"4.05",4050,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170212","WFWQC_UT-WFWQC0122-4995222-0104-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4995222-0104-LAB/results/944170212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"636","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-04","13:12:00","MST","2022-01-04 20:12:00",NA,"0.421",421,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170223","WFWQC_UT-WFWQC0122-4996680-0104-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996680-0104-LAB/results/944170223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"637","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-04","15:38:00","MST","2022-01-04 22:38:00",NA,"2.92",2920,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170234","WFWQC_UT-WFWQC0122-5919860-0104-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at 6400 S Road","River/Stream",NA,"40.1144010000",40.114401,"-111.7929820000",-111.792982,"OK","16020202","WFWQC_UT-5919860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1144010000","-111.7929820000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-5919860-0104-LAB/results/944170234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"274","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","13:05:00","MST","2022-01-05 20:05:00",NA,"2.79",2790,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170245","WFWQC_UT-WFWQC0122-4996003-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996003-0105-LAB/results/944170245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"639","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","12:51:00","MST","2022-01-05 19:51:00",NA,"3.84",3840,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170256","WFWQC_UT-WFWQC0122-4996020-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996020-0105-LAB/results/944170256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"276","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","12:18:00","MST","2022-01-05 19:18:00",NA,"2.31",2310,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170267","WFWQC_UT-WFWQC0122-4996022-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996022-0105-LAB/results/944170267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"277","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","10:14:00","MST","2022-01-05 17:14:00",NA,"5.45",5450,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170278","WFWQC_UT-WFWQC0122-4996190-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996190-0105-LAB/results/944170278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"642","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","11:41:00","MST","2022-01-05 18:41:00",NA,"5.2",5200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170289","WFWQC_UT-WFWQC0122-4996275-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996275-0105-LAB/results/944170289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"400","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","09:49:00","MST","2022-01-05 16:49:00",NA,"1.09",1090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170300","WFWQC_UT-WFWQC0122-4996410-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996410-0105-LAB/results/944170300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"280","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","10:49:00","MST","2022-01-05 17:49:00",NA,"10.8",10800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170311","WFWQC_UT-WFWQC0122-4996540-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996540-0105-LAB/results/944170311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"281","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","09:20:00","MST","2022-01-05 16:20:00",NA,"20.4",20400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170322","WFWQC_UT-WFWQC0122-4996550-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996550-0105-LAB/results/944170322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"403","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","09:09:00","MST","2022-01-05 16:09:00",NA,"23.8",23800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170333","WFWQC_UT-WFWQC0122-4996560-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996560-0105-LAB/results/944170333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"283","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","11:08:00","MST","2022-01-05 18:08:00",NA,"8.78",8780,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170344","WFWQC_UT-WFWQC0122-4996566-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996566-0105-LAB/results/944170344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"284","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-01-05","08:51:00","MST","2022-01-05 15:51:00",NA,"2.5",2500,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170355","WFWQC_UT-WFWQC0122-4996570-0105-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996570-0105-LAB/results/944170355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"406","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-14","14:55:00","MST","2022-02-14 21:55:00",NA,"4.8",4800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170366","WFWQC_UT-WFWQC0222-4917712-0214-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4917712-0214-LAB/results/944170366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"286","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-14","08:47:00","MST","2022-02-14 15:47:00",NA,"3.06",3060,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170377","WFWQC_UT-WFWQC0222-4994952-0214-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4994952-0214-LAB/results/944170377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"287","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-14","09:18:00","MST","2022-02-14 16:18:00",NA,"5.75",5750,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170388","WFWQC_UT-WFWQC0222-4995043-0214-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4995043-0214-LAB/results/944170388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"288","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-14","09:50:00","MST","2022-02-14 16:50:00",NA,"3.2",3200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170399","WFWQC_UT-WFWQC0222-4995075-0214-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4995075-0214-LAB/results/944170399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"289","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-14","11:49:00","MST","2022-02-14 18:49:00",NA,"10.4",10400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170410","WFWQC_UT-WFWQC0222-4995210-0214-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4995210-0214-LAB/results/944170410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"290","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-14","14:04:00","MST","2022-02-14 21:04:00",NA,"0.494",494,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170421","WFWQC_UT-WFWQC0222-4995575-0214-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4995575-0214-LAB/results/944170421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"291","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-14","13:07:00","MST","2022-02-14 20:07:00",NA,"0.353",353,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170432","WFWQC_UT-WFWQC0222-4996680-0214-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996680-0214-LAB/results/944170432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"292","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","13:20:00","MST","2022-02-16 20:20:00",NA,"2.22",2220,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170443","WFWQC_UT-WFWQC0222-4995467-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4995467-0216-LAB/results/944170443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"293","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","12:38:00","MST","2022-02-16 19:38:00",NA,"2.59",2590,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170454","WFWQC_UT-WFWQC0222-4996003-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996003-0216-LAB/results/944170454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"294","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","12:26:00","MST","2022-02-16 19:26:00",NA,"1.78",1780,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170465","WFWQC_UT-WFWQC0222-4996020-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996020-0216-LAB/results/944170465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"335","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","12:09:00","MST","2022-02-16 19:09:00",NA,"3.4",3400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170476","WFWQC_UT-WFWQC0222-4996022-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996022-0216-LAB/results/944170476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"417","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","13:58:00","MST","2022-02-16 20:58:00",NA,"0.805",805,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170487","WFWQC_UT-WFWQC0222-4996100-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996100-0216-LAB/results/944170487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"297","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","10:21:00","MST","2022-02-16 17:21:00",NA,"2.62",2620,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170498","WFWQC_UT-WFWQC0222-4996190-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996190-0216-LAB/results/944170498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"298","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","11:39:00","MST","2022-02-16 18:39:00",NA,"2.67",2670,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170509","WFWQC_UT-WFWQC0222-4996275-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996275-0216-LAB/results/944170509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"299","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","10:02:00","MST","2022-02-16 17:02:00",NA,"0.796",796,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170520","WFWQC_UT-WFWQC0222-4996410-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996410-0216-LAB/results/944170520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"300","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","10:57:00","MST","2022-02-16 17:57:00",NA,"9.73",9730,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170531","WFWQC_UT-WFWQC0222-4996540-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996540-0216-LAB/results/944170531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"665","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","09:29:00","MST","2022-02-16 16:29:00",NA,"16.6",16600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170542","WFWQC_UT-WFWQC0222-4996550-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996550-0216-LAB/results/944170542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"302","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","09:19:00","MST","2022-02-16 16:19:00",NA,"18.8",18800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170553","WFWQC_UT-WFWQC0222-4996560-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996560-0216-LAB/results/944170553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"303","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","11:11:00","MST","2022-02-16 18:11:00",NA,"9.09",9090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170564","WFWQC_UT-WFWQC0222-4996566-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996566-0216-LAB/results/944170564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"668","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-02-16","09:04:00","MST","2022-02-16 16:04:00",NA,"2.39",2390,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170575","WFWQC_UT-WFWQC0222-4996570-0216-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996570-0216-LAB/results/944170575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"305","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-14","15:06:00","MST","2022-03-14 22:06:00",NA,"4.8",4800,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170586","WFWQC_UT-WFWQC0322-4917712-0314-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4917712-0314-LAB/results/944170586/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"306","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-14","08:26:00","MST","2022-03-14 15:26:00",NA,"2.39",2390,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170597","WFWQC_UT-WFWQC0322-4994952-0314-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4994952-0314-LAB/results/944170597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"307","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-14","08:56:00","MST","2022-03-14 15:56:00",NA,"5.99",5990,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170608","WFWQC_UT-WFWQC0322-4995043-0314-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4995043-0314-LAB/results/944170608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"429","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-14","09:29:00","MST","2022-03-14 16:29:00",NA,"2.86",2860,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170619","WFWQC_UT-WFWQC0322-4995075-0314-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4995075-0314-LAB/results/944170619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"309","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-14","10:59:00","MST","2022-03-14 17:59:00",NA,"8.65",8650,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170630","WFWQC_UT-WFWQC0322-4995210-0314-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4995210-0314-LAB/results/944170630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"310","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-14","14:31:00","MST","2022-03-14 21:31:00",NA,"0.461",461,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170641","WFWQC_UT-WFWQC0322-4995575-0314-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4995575-0314-LAB/results/944170641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"432","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-14","12:38:00","MST","2022-03-14 19:38:00",NA,"0.381",381,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170652","WFWQC_UT-WFWQC0322-4996680-0314-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996680-0314-LAB/results/944170652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"312","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","13:25:00","MST","2022-03-16 20:25:00",NA,"1.61",1610,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170663","WFWQC_UT-WFWQC0322-4996003-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996003-0316-LAB/results/944170663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"313","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","13:13:00","MST","2022-03-16 20:13:00",NA,"0.432",432,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170674","WFWQC_UT-WFWQC0322-4996020-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996020-0316-LAB/results/944170674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"435","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","12:59:00","MST","2022-03-16 19:59:00",NA,"3",3000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170685","WFWQC_UT-WFWQC0322-4996022-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996022-0316-LAB/results/944170685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"315","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","12:01:00","MST","2022-03-16 19:01:00",NA,"0.755",755,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170696","WFWQC_UT-WFWQC0322-4996100-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996100-0316-LAB/results/944170696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"316","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","10:07:00","MST","2022-03-16 17:07:00",NA,"5.16",5160,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170707","WFWQC_UT-WFWQC0322-4996190-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996190-0316-LAB/results/944170707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"317","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","11:32:00","MST","2022-03-16 18:32:00",NA,"4.91",4910,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170718","WFWQC_UT-WFWQC0322-4996275-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996275-0316-LAB/results/944170718/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"318","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","09:48:00","MST","2022-03-16 16:48:00",NA,"0.97",970,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170729","WFWQC_UT-WFWQC0322-4996410-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996410-0316-LAB/results/944170729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"319","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","10:46:00","MST","2022-03-16 17:46:00",NA,"9.66",9660,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170740","WFWQC_UT-WFWQC0322-4996540-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996540-0316-LAB/results/944170740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"320","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","09:17:00","MST","2022-03-16 16:17:00",NA,"22.1",22100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170751","WFWQC_UT-WFWQC0322-4996550-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996550-0316-LAB/results/944170751/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"321","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","09:02:00","MST","2022-03-16 16:02:00",NA,"28",28000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170762","WFWQC_UT-WFWQC0322-4996560-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996560-0316-LAB/results/944170762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"443","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","11:07:00","MST","2022-03-16 18:07:00",NA,"7.69",7690,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170773","WFWQC_UT-WFWQC0322-4996566-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996566-0316-LAB/results/944170773/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"444","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","08:43:00","MST","2022-03-16 15:43:00",NA,"2.05",2050,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170784","WFWQC_UT-WFWQC0322-4996570-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996570-0316-LAB/results/944170784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"324","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-03-16","14:00:00","MST","2022-03-16 21:00:00",NA,"2.66",2660,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170795","WFWQC_UT-WFWQC0322-5919860-0316-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at 6400 S Road","River/Stream",NA,"40.1144010000",40.114401,"-111.7929820000",-111.792982,"OK","16020202","WFWQC_UT-5919860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1144010000","-111.7929820000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-5919860-0316-LAB/results/944170795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"325","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","08:41:00","MST","2022-04-11 15:41:00",NA,"1.33",1330,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170806","WFWQC_UT-WFWQC0422-4994952-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4994952-0411-LAB/results/944170806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"447","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","09:07:00","MST","2022-04-11 16:07:00",NA,"6.81",6810,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170817","WFWQC_UT-WFWQC0422-4995043-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995043-0411-LAB/results/944170817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"448","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","09:48:00","MST","2022-04-11 16:48:00",NA,"2.75",2750,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170828","WFWQC_UT-WFWQC0422-4995075-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995075-0411-LAB/results/944170828/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1421","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","10:12:00","MST","2022-04-11 17:12:00",NA,"2.86",2860,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170839","WFWQC_UT-WFWQC0422-4995222-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995222-0411-LAB/results/944170839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"329","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","15:13:00","MST","2022-04-11 22:13:00",NA,"0.458",458,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170850","WFWQC_UT-WFWQC0422-4996100-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996100-0411-LAB/results/944170850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"330","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","12:26:00","MST","2022-04-11 19:26:00",NA,"7.03",7030,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170861","WFWQC_UT-WFWQC0422-4996190-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996190-0411-LAB/results/944170861/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1424","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","14:23:00","MST","2022-04-11 21:23:00",NA,"6.45",6450,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170872","WFWQC_UT-WFWQC0422-4996275-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996275-0411-LAB/results/944170872/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"332","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","12:04:00","MST","2022-04-11 19:04:00",NA,"0.869",869,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170883","WFWQC_UT-WFWQC0422-4996410-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996410-0411-LAB/results/944170883/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"333","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","13:14:00","MST","2022-04-11 20:14:00",NA,"9.65",9650,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170894","WFWQC_UT-WFWQC0422-4996540-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996540-0411-LAB/results/944170894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"455","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","11:53:00","MST","2022-04-11 18:53:00",NA,"18.4",18400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170905","WFWQC_UT-WFWQC0422-4996550-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996550-0411-LAB/results/944170905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"699","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","11:12:00","MST","2022-04-11 18:12:00",NA,"19.7",19700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170916","WFWQC_UT-WFWQC0422-4996560-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996560-0411-LAB/results/944170916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1429","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","14:04:00","MST","2022-04-11 21:04:00",NA,"8.97",8970,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170927","WFWQC_UT-WFWQC0422-4996566-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996566-0411-LAB/results/944170927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"458","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-11","11:02:00","MST","2022-04-11 18:02:00",NA,"1.83",1830,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170938","WFWQC_UT-WFWQC0422-4996570-0411-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996570-0411-LAB/results/944170938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"459","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-13","13:29:00","MST","2022-04-13 20:29:00",NA,"5.09",5090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170949","WFWQC_UT-WFWQC0422-4917712-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4917712-0413-LAB/results/944170949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1432","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-13","09:48:00","MST","2022-04-13 16:48:00",NA,"10.9",10900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170960","WFWQC_UT-WFWQC0422-4995210-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995210-0413-LAB/results/944170960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"461","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-13","14:05:00","MST","2022-04-13 21:05:00",NA,"3.47",3470,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170971","WFWQC_UT-WFWQC0422-4995467-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995467-0413-LAB/results/944170971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"341","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-13","12:33:00","MST","2022-04-13 19:33:00",NA,"0.9",900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170982","WFWQC_UT-WFWQC0422-4995575-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995575-0413-LAB/results/944170982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"463","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-13","14:46:00","MST","2022-04-13 21:46:00",NA,"3.32",3320,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944170993","WFWQC_UT-WFWQC0422-4996003-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996003-0413-LAB/results/944170993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"464","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-13","15:04:00","MST","2022-04-13 22:04:00",NA,"3.14",3140,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171004","WFWQC_UT-WFWQC0422-4996020-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996020-0413-LAB/results/944171004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"465","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-13","15:20:00","MST","2022-04-13 22:20:00",NA,"3.23",3230,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171015","WFWQC_UT-WFWQC0422-4996022-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996022-0413-LAB/results/944171015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"466","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-04-13","11:25:00","MST","2022-04-13 18:25:00",NA,"0.447",447,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171026","WFWQC_UT-WFWQC0422-4996680-0413-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996680-0413-LAB/results/944171026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"467","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-10","08:57:00","MST","2022-05-10 15:57:00",NA,"1.15",1150,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171037","WFWQC_UT-WFWQC0522-4994952-0510-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4994952-0510-LAB/results/944171037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"347","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-10","09:26:00","MST","2022-05-10 16:26:00",NA,"7.52",7520,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171048","WFWQC_UT-WFWQC0522-4995043-0510-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995043-0510-LAB/results/944171048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"348","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-10","09:59:00","MST","2022-05-10 16:59:00",NA,"2.59",2590,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171059","WFWQC_UT-WFWQC0522-4995075-0510-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995075-0510-LAB/results/944171059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"349","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-10","10:34:00","MST","2022-05-10 17:34:00",NA,"0.616",616,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171070","WFWQC_UT-WFWQC0522-4995222-0510-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995222-0510-LAB/results/944171070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"350","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-10","11:46:00","MST","2022-05-10 18:46:00",NA,"12.1",12100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171081","WFWQC_UT-WFWQC0522-4995210-0510-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995210-0510-LAB/results/944171081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"351","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-10","13:09:00","MST","2022-05-10 20:09:00",NA,"0.31",310,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171092","WFWQC_UT-WFWQC0522-4996680-0510-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996680-0510-LAB/results/944171092/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"352","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-10","14:18:00","MST","2022-05-10 21:18:00",NA,"1.43",1430,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171103","WFWQC_UT-WFWQC0522-4995575-0510-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995575-0510-LAB/results/944171103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"353","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-10","15:08:00","MST","2022-05-10 22:08:00",NA,"3.61",3610,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171114","WFWQC_UT-WFWQC0522-4917712-0510-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4917712-0510-LAB/results/944171114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"354","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-10","15:38:00","MST","2022-05-10 22:38:00",NA,"3.05",3050,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171125","WFWQC_UT-WFWQC0522-4995467-0510-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995467-0510-LAB/results/944171125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"355","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","08:48:00","MST","2022-05-11 15:48:00",NA,"1.58",1580,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171136","WFWQC_UT-WFWQC0522-4996570-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996570-0511-LAB/results/944171136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"356","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","08:58:00","MST","2022-05-11 15:58:00",NA,"26.2",26200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171147","WFWQC_UT-WFWQC0522-4996560-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996560-0511-LAB/results/944171147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"357","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","09:07:00","MST","2022-05-11 16:07:00",NA,"21",21000,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171158","WFWQC_UT-WFWQC0522-4996550-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996550-0511-LAB/results/944171158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"358","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","09:20:00","MST","2022-05-11 16:20:00",NA,"0.646",646,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171169","WFWQC_UT-WFWQC0522-4996410-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996410-0511-LAB/results/944171169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"359","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","09:26:00","MST","2022-05-11 16:26:00",NA,"6.28",6280,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171180","WFWQC_UT-WFWQC0522-4996190-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996190-0511-LAB/results/944171180/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"360","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","09:41:00","MST","2022-05-11 16:41:00",NA,"7.97",7970,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171191","WFWQC_UT-WFWQC0522-4996540-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996540-0511-LAB/results/944171191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"361","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","09:51:00","MST","2022-05-11 16:51:00",NA,"7.81",7810,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171202","WFWQC_UT-WFWQC0522-4996566-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996566-0511-LAB/results/944171202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"362","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","10:02:00","MST","2022-05-11 17:02:00",NA,"6.89",6890,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171213","WFWQC_UT-WFWQC0522-4996275-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996275-0511-LAB/results/944171213/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","10:11:00","MST","2022-05-11 17:11:00",NA,"0.292",292,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171224","WFWQC_UT-WFWQC0522-4996100-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996100-0511-LAB/results/944171224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1457","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","10:27:00","MST","2022-05-11 17:27:00",NA,"1.6",1600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171235","WFWQC_UT-WFWQC0522-4996022-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996022-0511-LAB/results/944171235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"365","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","10:41:00","MST","2022-05-11 17:41:00",NA,"2.67",2670,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171246","WFWQC_UT-WFWQC0522-4996020-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996020-0511-LAB/results/944171246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"366","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-05-11","10:50:00","MST","2022-05-11 17:50:00",NA,"1.9",1900,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171257","WFWQC_UT-WFWQC0522-4996003-0511-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996003-0511-LAB/results/944171257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1460","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-07","08:27:00","MST","2022-06-07 15:27:00",NA,"1.62",1620,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171268","WFWQC_UT-WFWQC0622-4994952-0607-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4994952-0607-LAB/results/944171268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"368","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2022-06-07","08:57:00","MST","2022-06-07 15:57:00",NA,NA,230,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Below Reporting Limit","Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171279","WFWQC_UT-WFWQC0622-4994958-0607-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","American Fork River at mouth","River/Stream",NA,"40.3430690000",40.343069,"-111.8034880000",-111.803488,"OK","16020201","WFWQC_UT-4994958",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3430690000","-111.8034880000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4994958-0607-LAB/results/944171279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"369","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-07","09:23:00","MST","2022-06-07 16:23:00",NA,"5.6",5600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171290","WFWQC_UT-WFWQC0622-4995043-0607-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4995043-0607-LAB/results/944171290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"370","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-07","09:54:00","MST","2022-06-07 16:54:00",NA,"2.85",2850,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171301","WFWQC_UT-WFWQC0622-4995075-0607-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4995075-0607-LAB/results/944171301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"371","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-07","10:36:00","MST","2022-06-07 17:36:00",NA,"1.22",1220,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171312","WFWQC_UT-WFWQC0622-4995222-0607-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4995222-0607-LAB/results/944171312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"372","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-07","11:52:00","MST","2022-06-07 18:52:00",NA,"12.3",12300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171323","WFWQC_UT-WFWQC0622-4995210-0607-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4995210-0607-LAB/results/944171323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"373","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-07","14:17:00","MST","2022-06-07 21:17:00",NA,"0.353",353,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171334","WFWQC_UT-WFWQC0622-4996680-0607-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996680-0607-LAB/results/944171334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"374","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-07","15:19:00","MST","2022-06-07 22:19:00",NA,"0.379",379,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171345","WFWQC_UT-WFWQC0622-4995575-0607-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4995575-0607-LAB/results/944171345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"375","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-07","15:50:00","MST","2022-06-07 22:50:00",NA,"2.84",2840,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171356","WFWQC_UT-WFWQC0622-4917712-0607-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4917712-0607-LAB/results/944171356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"376","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","09:11:00","MST","2022-06-08 16:11:00",NA,"1.92",1920,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171367","WFWQC_UT-WFWQC0622-4996570-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996570-0608-LAB/results/944171367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"377","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","09:30:00","MST","2022-06-08 16:30:00",NA,"22.2",22200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171378","WFWQC_UT-WFWQC0622-4996560-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996560-0608-LAB/results/944171378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"499","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","09:53:00","MST","2022-06-08 16:53:00",NA,"18.7",18700,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171389","WFWQC_UT-WFWQC0622-4996550-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996550-0608-LAB/results/944171389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"379","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","10:39:00","MST","2022-06-08 17:39:00",NA,"0.778",778,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171400","WFWQC_UT-WFWQC0622-4996410-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996410-0608-LAB/results/944171400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"501","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","11:01:00","MST","2022-06-08 18:01:00",NA,"5.52",5520,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171411","WFWQC_UT-WFWQC0622-4996190-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996190-0608-LAB/results/944171411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"502","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","11:36:00","MST","2022-06-08 18:36:00",NA,"7.82",7820,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171422","WFWQC_UT-WFWQC0622-4996540-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996540-0608-LAB/results/944171422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"503","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","11:59:00","MST","2022-06-08 18:59:00",NA,"5.91",5910,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171433","WFWQC_UT-WFWQC0622-4996566-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996566-0608-LAB/results/944171433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"383","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","12:30:00","MST","2022-06-08 19:30:00",NA,"5.44",5440,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171444","WFWQC_UT-WFWQC0622-4996275-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996275-0608-LAB/results/944171444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"505","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2022-06-08","13:14:00","MST","2022-06-08 20:14:00",NA,NA,230,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Below Reporting Limit","Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171455","WFWQC_UT-WFWQC0622-4996100-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996100-0608-LAB/results/944171455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"385","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","13:46:00","MST","2022-06-08 20:46:00",NA,"1.45",1450,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171466","WFWQC_UT-WFWQC0622-4996022-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996022-0608-LAB/results/944171466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"386","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","14:04:00","MST","2022-06-08 21:04:00",NA,"6.37",6370,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171477","WFWQC_UT-WFWQC0622-4996020-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996020-0608-LAB/results/944171477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"387","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-06-08","14:22:00","MST","2022-06-08 21:22:00",NA,"3.85",3850,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-944171488","WFWQC_UT-WFWQC0622-4996003-0608-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-14T18:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996003-0608-LAB/results/944171488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10535","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","10:11:00","MST","2021-10-13 17:11:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376740","UTAHDWQ_WQX-CUWSR211013-4936050-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-2-C/results/945376740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10536","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","10:11:00","MST","2021-10-13 17:11:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376760","UTAHDWQ_WQX-CUWSR211013-4936050-1013-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-23-C/results/945376760/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10537","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","10:14:00","MST","2021-10-13 17:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376778","UTAHDWQ_WQX-CUWSR211013-4936050-1013-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-24-C/results/945376778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10538","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","10:16:00","MST","2021-10-13 17:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376796","UTAHDWQ_WQX-CUWSR211013-4936050-1013-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-26-C/results/945376796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10539","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","10:17:00","MST","2021-10-13 17:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376814","UTAHDWQ_WQX-CUWSR211013-4936050-1013-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-27-C/results/945376814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10540","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","10:20:00","MST","2021-10-13 17:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","25.9",25.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376836","UTAHDWQ_WQX-CUWSR211013-4936050-1013-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-29-C/results/945376836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10541","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:01:00","MST","2021-10-20 17:01:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376848","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-2-C/results/945376848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10542","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:02:00","MST","2021-10-20 17:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376862","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-24-C/results/945376862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10543","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:04:00","MST","2021-10-20 17:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376874","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-26-C/results/945376874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10544","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:05:00","MST","2021-10-20 17:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376886","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-27-C/results/945376886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10545","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:11:00","MST","2021-10-20 17:11:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376902","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-28-C/results/945376902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10546","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:16:00","MST","2021-10-20 17:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","58",58,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376914","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-29-C/results/945376914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10547","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:48:00","MST","2021-10-20 17:48:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376926","UTAHDWQ_WQX-CUWJPRESJP211020-5914040-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914040-1020-2-C/results/945376926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10548","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:54:00","MST","2021-10-20 17:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","26",26,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376940","UTAHDWQ_WQX-CUWJPRESJP211020-5914040-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914040-1020-29-C/results/945376940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10549","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:12:00","MST","2021-10-20 18:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376954","UTAHDWQ_WQX-CUWJPRESJP211020-5914030-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914030-1020-2-C/results/945376954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10550","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:19:00","MST","2021-10-20 18:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","27",27,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376969","UTAHDWQ_WQX-CUWJPRESJP211020-5914030-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914030-1020-29-C/results/945376969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10551","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","09:43:00","MST","2021-10-21 16:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376980","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-2-C/results/945376980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10552","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","09:47:00","MST","2021-10-21 16:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945376994","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-25-C/results/945376994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10553","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","09:48:00","MST","2021-10-21 16:48:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377006","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-28-C/results/945377006/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10554","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","09:52:00","MST","2021-10-21 16:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30.5",30.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377018","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-29-C/results/945377018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10555","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","10:27:00","MST","2021-10-21 17:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377034","UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-2-C/results/945377034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10556","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","10:31:00","MST","2021-10-21 17:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377048","UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-25-C/results/945377048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10557","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","10:34:00","MST","2021-10-21 17:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18",18,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377059","UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-29-C/results/945377059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10558","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","10:53:00","MST","2021-10-21 17:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377070","UTAHDWQ_WQX-CUWJPRESDC211021-5913240-1021-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913240-1021-2-C/results/945377070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10559","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","10:57:00","MST","2021-10-21 17:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377082","UTAHDWQ_WQX-CUWJPRESDC211021-5913240-1021-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913240-1021-29-C/results/945377082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10560","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","09:42:00","MST","2021-10-21 16:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377097","UTAHDWQ_WQX-CUWJPRESDC211021-5913490-1021-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913490-1021-2-C/results/945377097/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10561","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","09:43:00","MST","2021-10-27 16:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377113","UTAHDWQ_WQX-CUWJP211027-4998400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4998400-1027-4-C/results/945377113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10562","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","10:04:00","MST","2021-10-27 17:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377125","UTAHDWQ_WQX-CUWJP211027-4998140-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","043","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"40.6099500000",40.60995,"-111.3051800000",-111.30518,"OK","16020203","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6099500000","-111.3051800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4998140-1027-4-C/results/945377125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10563","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","10:12:00","MST","2021-10-27 17:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377156","UTAHDWQ_WQX-CUWJP211027-4998130-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4998130-1027-4-C/results/945377156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10564","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","10:31:00","MST","2021-10-27 17:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377191","UTAHDWQ_WQX-CUWJP211027-4997330-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4997330-1027-4-C/results/945377191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10565","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","10:51:00","MST","2021-10-27 17:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377222","UTAHDWQ_WQX-CUWJP211027-4997675-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4997675-1027-4-C/results/945377222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10566","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","11:01:00","MST","2021-10-27 18:01:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377234","UTAHDWQ_WQX-CUWJP211027-4997670-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4997670-1027-4-C/results/945377234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10567","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","11:17:00","MST","2021-10-27 18:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377246","UTAHDWQ_WQX-CUWJP211027-4997300-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4997300-1027-4-C/results/945377246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10568","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","11:26:00","MST","2021-10-27 18:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377262","UTAHDWQ_WQX-CUWJP211027-5910302-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5910302-1027-4-C/results/945377262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10569","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","11:36:00","MST","2021-10-27 18:36:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377274","UTAHDWQ_WQX-CUWJP211027-5910273-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5910273-1027-4-C/results/945377274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10570","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","11:49:00","MST","2021-10-27 18:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377286","UTAHDWQ_WQX-CUWJP211027-4997250-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4997250-1027-4-C/results/945377286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10571","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","11:56:00","MST","2021-10-27 18:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377298","UTAHDWQ_WQX-CUWJP211027-5910250-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5910250-1027-4-C/results/945377298/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10572","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","12:39:00","MST","2021-10-27 19:39:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377314","UTAHDWQ_WQX-CUWJP211027-5910160-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5910160-1027-4-C/results/945377314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10573","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","13:04:00","MST","2021-10-27 20:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377326","UTAHDWQ_WQX-CUWJP211027-5913460-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5913460-1027-4-C/results/945377326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10574","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","13:29:00","MST","2021-10-27 20:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377338","UTAHDWQ_WQX-CUWJP211027-4996870-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996870-1027-4-C/results/945377338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10575","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","13:32:00","MST","2021-10-27 20:32:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377350","UTAHDWQ_WQX-CUWJP211027-5913210-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5913210-1027-4-C/results/945377350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10576","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","13:33:00","MST","2021-10-27 20:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377362","UTAHDWQ_WQX-CUWJP211027-4996890-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996890-1027-4-C/results/945377362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10577","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","13:45:00","MST","2021-10-27 20:45:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377378","UTAHDWQ_WQX-CUWJP211027-4996850-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996850-1027-4-C/results/945377378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10578","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","13:59:00","MST","2021-10-27 20:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377390","UTAHDWQ_WQX-CUWJP211027-4996830-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996830-1027-4-C/results/945377390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10579","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","14:05:00","MST","2021-10-27 21:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377402","UTAHDWQ_WQX-CUWJP211027-4996810-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996810-1027-4-C/results/945377402/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10580","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","14:18:00","MST","2021-10-27 21:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377414","UTAHDWQ_WQX-CUWJP211027-4996780-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996780-1027-4-C/results/945377414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10581","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","09:52:00","MST","2021-10-28 16:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377434","UTAHDWQ_WQX-CUWDF211028-4995600-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211028-4995600-1028-4-C/results/945377434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10582","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","10:44:00","MST","2021-10-28 17:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377489","UTAHDWQ_WQX-CUWDF211028-4995730-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211028-4995730-1028-4-C/results/945377489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10583","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","10:40:00","MST","2021-10-28 17:40:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377506","UTAHDWQ_WQX-CUWDF211028-4995710-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211028-4995710-1028-4-C/results/945377506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10584","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-04","11:32:00","MST","2021-11-04 18:32:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377538","UTAHDWQ_WQX-CUWSR211104-4936050-1104-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-2-C/results/945377538/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10585","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-04","11:33:00","MST","2021-11-04 18:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377558","UTAHDWQ_WQX-CUWSR211104-4936050-1104-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-23-C/results/945377558/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10586","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-04","11:35:00","MST","2021-11-04 18:35:00",NA,"1.7",1700,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377576","UTAHDWQ_WQX-CUWSR211104-4936050-1104-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-24-C/results/945377576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10587","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-04","11:38:00","MST","2021-11-04 18:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377598","UTAHDWQ_WQX-CUWSR211104-4936050-1104-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-26-C/results/945377598/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10588","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-04","11:39:00","MST","2021-11-04 18:39:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","20",20,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377616","UTAHDWQ_WQX-CUWSR211104-4936050-1104-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-27-C/results/945377616/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10589","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-04","11:43:00","MST","2021-11-04 18:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","28.5",28.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377634","UTAHDWQ_WQX-CUWSR211104-4936050-1104-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-29-C/results/945377634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10590","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","10:04:00","MST","2021-12-07 17:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377665","UTAHDWQ_WQX-CUWJP211207-4998400-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4998400-1207-4-C/results/945377665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10591","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","10:23:00","MST","2021-12-07 17:23:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377677","UTAHDWQ_WQX-CUWJP211207-4998140-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","043","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"40.6099500000",40.60995,"-111.3051800000",-111.30518,"OK","16020203","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6099500000","-111.3051800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4998140-1207-4-C/results/945377677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10592","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","10:31:00","MST","2021-12-07 17:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377689","UTAHDWQ_WQX-CUWJP211207-4998130-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4998130-1207-4-C/results/945377689/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10593","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","10:50:00","MST","2021-12-07 17:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377701","UTAHDWQ_WQX-CUWJP211207-4997330-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4997330-1207-4-C/results/945377701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10594","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","11:07:00","MST","2021-12-07 18:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377736","UTAHDWQ_WQX-CUWJP211207-4997675-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4997675-1207-4-C/results/945377736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10595","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","11:15:00","MST","2021-12-07 18:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377767","UTAHDWQ_WQX-CUWJP211207-4997670-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4997670-1207-4-C/results/945377767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10596","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","11:30:00","MST","2021-12-07 18:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377779","UTAHDWQ_WQX-CUWJP211207-4997300-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4997300-1207-4-C/results/945377779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10597","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","11:37:00","MST","2021-12-07 18:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377795","UTAHDWQ_WQX-CUWJP211207-5910302-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5910302-1207-4-C/results/945377795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10598","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","11:46:00","MST","2021-12-07 18:46:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377807","UTAHDWQ_WQX-CUWJP211207-5910273-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5910273-1207-4-C/results/945377807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10599","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","11:59:00","MST","2021-12-07 18:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377819","UTAHDWQ_WQX-CUWJP211207-4997250-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4997250-1207-4-C/results/945377819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10600","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","12:06:00","MST","2021-12-07 19:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377835","UTAHDWQ_WQX-CUWJP211207-5910250-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5910250-1207-4-C/results/945377835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10601","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","12:48:00","MST","2021-12-07 19:48:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377850","UTAHDWQ_WQX-CUWJP211207-5910160-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5910160-1207-4-C/results/945377850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10602","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","13:18:00","MST","2021-12-07 20:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377862","UTAHDWQ_WQX-CUWJP211207-5913460-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5913460-1207-4-C/results/945377862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10603","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","13:43:00","MST","2021-12-07 20:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377874","UTAHDWQ_WQX-CUWJP211207-4996870-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996870-1207-4-C/results/945377874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10604","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","13:45:00","MST","2021-12-07 20:45:00",NA,"1.5",1500,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377890","UTAHDWQ_WQX-CUWJP211207-5913210-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5913210-1207-4-C/results/945377890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10605","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","13:46:00","MST","2021-12-07 20:46:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377902","UTAHDWQ_WQX-CUWJP211207-4996890-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996890-1207-4-C/results/945377902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10606","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","13:58:00","MST","2021-12-07 20:58:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377914","UTAHDWQ_WQX-CUWJP211207-4996850-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996850-1207-4-C/results/945377914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10607","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","14:07:00","MST","2021-12-07 21:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377929","UTAHDWQ_WQX-CUWJP211207-4996830-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996830-1207-4-C/results/945377929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10608","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","14:16:00","MST","2021-12-07 21:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377942","UTAHDWQ_WQX-CUWJP211207-4996810-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996810-1207-4-C/results/945377942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10609","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","14:29:00","MST","2021-12-07 21:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377954","UTAHDWQ_WQX-CUWJP211207-4996780-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996780-1207-4-C/results/945377954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10610","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","09:02:00","MST","2021-12-08 16:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945377970","UTAHDWQ_WQX-CUWDF211208-4995600-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211208-4995600-1208-4-C/results/945377970/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10611","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","10:03:00","MST","2021-12-08 17:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378025","UTAHDWQ_WQX-CUWDF211208-4995730-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"40.0841200000",40.08412,"-111.3546200000",-111.35462,"OK","16020202","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0841200000","-111.3546200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211208-4995730-1208-4-C/results/945378025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10612","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","09:58:00","MST","2021-12-08 16:58:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378042","UTAHDWQ_WQX-CUWDF211208-4995710-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"40.0846800000",40.08468,"-111.3551800000",-111.35518,"OK","16020202","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0846800000","-111.3551800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211208-4995710-1208-4-C/results/945378042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10613","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-25","11:50:00","MST","2022-02-25 18:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378072","UTAHDWQ_WQX-CUWDF220225-4995600-0225-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220225-4995600-0225-4-C/results/945378072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10614","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","09:58:00","MST","2022-02-28 16:58:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378123","UTAHDWQ_WQX-CUWJP220228-4998400-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4998400-0228-4-C/results/945378123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10615","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","10:22:00","MST","2022-02-28 17:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378153","UTAHDWQ_WQX-CUWJP220228-4998130-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4998130-0228-4-C/results/945378153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10616","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","10:42:00","MST","2022-02-28 17:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378183","UTAHDWQ_WQX-CUWJP220228-4997330-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4997330-0228-4-C/results/945378183/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10617","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","10:54:00","MST","2022-02-28 17:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378198","UTAHDWQ_WQX-CUWJP220228-4997300-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4997300-0228-4-C/results/945378198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10618","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","11:03:00","MST","2022-02-28 18:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378209","UTAHDWQ_WQX-CUWJP220228-5910302-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-5910302-0228-4-C/results/945378209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10619","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","11:12:00","MST","2022-02-28 18:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378220","UTAHDWQ_WQX-CUWJP220228-5910273-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-5910273-0228-4-C/results/945378220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10620","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","11:25:00","MST","2022-02-28 18:25:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378231","UTAHDWQ_WQX-CUWJP220228-4997250-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4997250-0228-4-C/results/945378231/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10621","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","11:33:00","MST","2022-02-28 18:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378242","UTAHDWQ_WQX-CUWJP220228-5910250-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-5910250-0228-4-C/results/945378242/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10622","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","12:17:00","MST","2022-02-28 19:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378260","UTAHDWQ_WQX-CUWJP220228-5910160-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-5910160-0228-4-C/results/945378260/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10623","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","12:44:00","MST","2022-02-28 19:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378271","UTAHDWQ_WQX-CUWJP220228-5913460-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-5913460-0228-4-C/results/945378271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10624","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","13:03:00","MST","2022-02-28 20:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378282","UTAHDWQ_WQX-CUWJP220228-4996830-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4996830-0228-4-C/results/945378282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10625","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-28","13:15:00","MST","2022-02-28 20:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378293","UTAHDWQ_WQX-CUWJP220228-4996780-0228-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4996780-0228-4-C/results/945378293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10626","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","10:07:00","MST","2022-03-29 17:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378327","UTAHDWQ_WQX-CUWJP220329-4998400-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4998400-0329-4-C/results/945378327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10627","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","10:26:00","MST","2022-03-29 17:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378339","UTAHDWQ_WQX-CUWJP220329-4998140-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","043","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"40.6099500000",40.60995,"-111.3051800000",-111.30518,"OK","16020203","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6099500000","-111.3051800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4998140-0329-4-C/results/945378339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10628","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","10:35:00","MST","2022-03-29 17:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378351","UTAHDWQ_WQX-CUWJP220329-4998130-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4998130-0329-4-C/results/945378351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10629","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","10:54:00","MST","2022-03-29 17:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378363","UTAHDWQ_WQX-CUWJP220329-4997330-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4997330-0329-4-C/results/945378363/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10630","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","11:14:00","MST","2022-03-29 18:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378398","UTAHDWQ_WQX-CUWJP220329-4997675-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4997675-0329-4-C/results/945378398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10631","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","11:21:00","MST","2022-03-29 18:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378429","UTAHDWQ_WQX-CUWJP220329-4997670-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4997670-0329-4-C/results/945378429/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10632","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","11:36:00","MST","2022-03-29 18:36:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378441","UTAHDWQ_WQX-CUWJP220329-4997300-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4997300-0329-4-C/results/945378441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10633","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","11:44:00","MST","2022-03-29 18:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378453","UTAHDWQ_WQX-CUWJP220329-5910302-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5910302-0329-4-C/results/945378453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10634","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","11:52:00","MST","2022-03-29 18:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378469","UTAHDWQ_WQX-CUWJP220329-5910273-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5910273-0329-4-C/results/945378469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10635","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","12:03:00","MST","2022-03-29 19:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378481","UTAHDWQ_WQX-CUWJP220329-4997250-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4997250-0329-4-C/results/945378481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10636","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","12:10:00","MST","2022-03-29 19:10:00",NA,"1.4",1400,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378493","UTAHDWQ_WQX-CUWJP220329-5910250-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5910250-0329-4-C/results/945378493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10637","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","13:00:00","MST","2022-03-29 20:00:00",NA,"1.7",1700,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378527","UTAHDWQ_WQX-CUWJP220329-5910020-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"40.4613500000",40.46135,"-111.4715700000",-111.47157,"OK","16020203","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4613500000","-111.4715700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5910020-0329-4-C/results/945378527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10638","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","13:12:00","MST","2022-03-29 20:12:00",NA,"1.9",1900,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378543","UTAHDWQ_WQX-CUWJP220329-5913460-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5913460-0329-4-C/results/945378543/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10639","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","13:33:00","MST","2022-03-29 20:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378555","UTAHDWQ_WQX-CUWJP220329-4996870-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996870-0329-4-C/results/945378555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10640","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","13:37:00","MST","2022-03-29 20:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378567","UTAHDWQ_WQX-CUWJP220329-5913210-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5913210-0329-4-C/results/945378567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10641","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","13:38:00","MST","2022-03-29 20:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378579","UTAHDWQ_WQX-CUWJP220329-4996890-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996890-0329-4-C/results/945378579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10642","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","13:50:00","MST","2022-03-29 20:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378595","UTAHDWQ_WQX-CUWJP220329-4996850-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996850-0329-4-C/results/945378595/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10643","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","13:59:00","MST","2022-03-29 20:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378607","UTAHDWQ_WQX-CUWJP220329-4996830-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996830-0329-4-C/results/945378607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10644","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","14:10:00","MST","2022-03-29 21:10:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378619","UTAHDWQ_WQX-CUWJP220329-4996810-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996810-0329-4-C/results/945378619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10645","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","14:22:00","MST","2022-03-29 21:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378631","UTAHDWQ_WQX-CUWJP220329-4996780-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996780-0329-4-C/results/945378631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10646","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-30","08:57:00","MST","2022-03-30 15:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378650","UTAHDWQ_WQX-CUWDF220330-4995600-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220330-4995600-0330-4-C/results/945378650/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10647","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-30","09:12:00","MST","2022-03-30 16:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378665","UTAHDWQ_WQX-CUWDF220330-4995640-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FK CK AB SPANISH FK R AT US6 89 XING","River/Stream",NA,"40.0269000000",40.0269,"-111.5040800000",-111.50408,"OK","16020202","UTAHDWQ_WQX-4995640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0269000000","-111.5040800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220330-4995640-0330-4-C/results/945378665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10648","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-30","09:22:00","MST","2022-03-30 16:22:00",NA,"1",1000,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-945378671","UTAHDWQ_WQX-CUWDF220330-4995790-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FK R AB CNFL / DIAMOND FK CK","River/Stream",NA,"40.0246700000",40.02467,"-111.5029700000",-111.50297,"OK","16020202","UTAHDWQ_WQX-4995790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-20T15:13:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0246700000","-111.5029700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220330-4995790-0330-4-C/results/945378671/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"623","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-12","09:07:00","MST","2022-07-12 16:07:00",NA,"1.45",1450,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214013","WFWQC_UT-WFWQC0722-4994952-0712-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4994952-0712-LAB/results/946214013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"624","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-12","09:37:00","MST","2022-07-12 16:37:00",NA,"3.93",3930,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214024","WFWQC_UT-WFWQC0722-4995043-0712-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4995043-0712-LAB/results/946214024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"868","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-12","10:04:00","MST","2022-07-12 17:04:00",NA,"2.79",2790,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214035","WFWQC_UT-WFWQC0722-4995075-0712-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4995075-0712-LAB/results/946214035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"626","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-12","10:37:00","MST","2022-07-12 17:37:00",NA,"0.614",614,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214046","WFWQC_UT-WFWQC0722-4995222-0712-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4995222-0712-LAB/results/946214046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"506","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-12","11:46:00","MST","2022-07-12 18:46:00",NA,"11.2",11200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214057","WFWQC_UT-WFWQC0722-4995210-0712-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4995210-0712-LAB/results/946214057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"507","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2022-07-12","13:24:00","MST","2022-07-12 20:24:00",NA,NA,230,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Below Reporting Limit","Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214068","WFWQC_UT-WFWQC0722-4996680-0712-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996680-0712-LAB/results/946214068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"508","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2022-07-12","14:44:00","MST","2022-07-12 21:44:00",NA,NA,230,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Below Reporting Limit","Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214079","WFWQC_UT-WFWQC0722-4995575-0712-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4995575-0712-LAB/results/946214079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"509","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-12","15:18:00","MST","2022-07-12 22:18:00",NA,"2.69",2690,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214090","WFWQC_UT-WFWQC0722-4917712-0712-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4917712-0712-LAB/results/946214090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"510","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","08:53:00","MST","2022-07-13 15:53:00",NA,"1.99",1990,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214101","WFWQC_UT-WFWQC0722-4996570-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996570-0713-LAB/results/946214101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"511","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","09:03:00","MST","2022-07-13 16:03:00",NA,"19.4",19400,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214112","WFWQC_UT-WFWQC0722-4996560-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996560-0713-LAB/results/946214112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"512","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","09:17:00","MST","2022-07-13 16:17:00",NA,"16.6",16600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214123","WFWQC_UT-WFWQC0722-4996550-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996550-0713-LAB/results/946214123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"634","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","09:47:00","MST","2022-07-13 16:47:00",NA,"0.664",664,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214134","WFWQC_UT-WFWQC0722-4996410-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996410-0713-LAB/results/946214134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"514","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","10:03:00","MST","2022-07-13 17:03:00",NA,"8.17",8170,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214145","WFWQC_UT-WFWQC0722-4996190-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996190-0713-LAB/results/946214145/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"515","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","10:31:00","MST","2022-07-13 17:31:00",NA,"8.09",8090,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214156","WFWQC_UT-WFWQC0722-4996540-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996540-0713-LAB/results/946214156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"516","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","10:52:00","MST","2022-07-13 17:52:00",NA,"5.49",5490,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214167","WFWQC_UT-WFWQC0722-4996566-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996566-0713-LAB/results/946214167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"881","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","11:18:00","MST","2022-07-13 18:18:00",NA,"8.23",8230,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214178","WFWQC_UT-WFWQC0722-4996275-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996275-0713-LAB/results/946214178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1611","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","11:37:00","MST","2022-07-13 18:37:00",NA,"0.283",283,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214189","WFWQC_UT-WFWQC0722-4996100-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996100-0713-LAB/results/946214189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"519","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","12:29:00","MST","2022-07-13 19:29:00",NA,"1.43",1430,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214200","WFWQC_UT-WFWQC0722-4996022-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996022-0713-LAB/results/946214200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"884","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","12:49:00","MST","2022-07-13 19:49:00",NA,"8.97",8970,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214211","WFWQC_UT-WFWQC0722-4996020-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996020-0713-LAB/results/946214211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1614","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-07-13","13:00:00","MST","2022-07-13 20:00:00",NA,"4.33",4330,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-946214222","WFWQC_UT-WFWQC0722-4996003-0713-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-07-23T14:53:55",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996003-0713-LAB/results/946214222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"522","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-16","10:24:00","MST","2022-08-16 17:24:00",NA,"1.14",1140,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871814","WFWQC_UT-WFWQC0822-4994952-0816-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4994952-0816-LAB/results/949871814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"523","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-16","10:41:00","MST","2022-08-16 17:41:00",NA,"5.08",5080,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871825","WFWQC_UT-WFWQC0822-4995043-0816-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4995043-0816-LAB/results/949871825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"524","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-16","09:39:00","MST","2022-08-16 16:39:00",NA,"3.25",3250,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871838","WFWQC_UT-WFWQC0822-4995075-0816-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4995075-0816-LAB/results/949871838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"525","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-16","11:55:00","MST","2022-08-16 18:55:00",NA,"10.1",10100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871849","WFWQC_UT-WFWQC0822-4995210-0816-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4995210-0816-LAB/results/949871849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1619","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-16","13:59:00","MST","2022-08-16 20:59:00",NA,"0.445",445,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871860","WFWQC_UT-WFWQC0822-4996680-0816-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996680-0816-LAB/results/949871860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"527","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-16","15:11:00","MST","2022-08-16 22:11:00",NA,"2.84",2840,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871871","WFWQC_UT-WFWQC0822-4917712-0816-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4917712-0816-LAB/results/949871871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"528","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-16","15:38:00","MST","2022-08-16 22:38:00",NA,"1.02",1020,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871882","WFWQC_UT-WFWQC0822-4995467-0816-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4995467-0816-LAB/results/949871882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1622","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","09:32:00","MST","2022-08-17 16:32:00",NA,"2.12",2120,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871893","WFWQC_UT-WFWQC0822-4996570-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996570-0817-LAB/results/949871893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"530","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_NA","2022-08-17","09:43:00","MST","2022-08-17 16:43:00",NA,NA,230,"Result Value/Unit Copied from Detection Limit","Actual","N","N",NA,"UG/L","No Result Value","Accepted","Below Reporting Limit","Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871907","WFWQC_UT-WFWQC0822-4996560-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996560-0817-LAB/results/949871907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"531","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","10:04:00","MST","2022-08-17 17:04:00",NA,"15.2",15200,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871918","WFWQC_UT-WFWQC0822-4996550-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996550-0817-LAB/results/949871918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"532","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","10:33:00","MST","2022-08-17 17:33:00",NA,"0.873",873,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871929","WFWQC_UT-WFWQC0822-4996410-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996410-0817-LAB/results/949871929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"533","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","10:59:00","MST","2022-08-17 17:59:00",NA,"9.08",9080,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871940","WFWQC_UT-WFWQC0822-4996190-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996190-0817-LAB/results/949871940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"534","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","12:04:00","MST","2022-08-17 19:04:00",NA,"8.26",8260,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871951","WFWQC_UT-WFWQC0822-4996540-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996540-0817-LAB/results/949871951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"535","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","12:35:00","MST","2022-08-17 19:35:00",NA,"5.92",5920,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871962","WFWQC_UT-WFWQC0822-4996566-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996566-0817-LAB/results/949871962/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"536","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","12:50:00","MST","2022-08-17 19:50:00",NA,"9.03",9030,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871973","WFWQC_UT-WFWQC0822-4996275-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996275-0817-LAB/results/949871973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"537","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","13:11:00","MST","2022-08-17 20:11:00",NA,"0.335",335,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871986","WFWQC_UT-WFWQC0822-4996100-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996100-0817-LAB/results/949871986/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"538","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","14:10:00","MST","2022-08-17 21:10:00",NA,"1.69",1690,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949871997","WFWQC_UT-WFWQC0822-4996022-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996022-0817-LAB/results/949871997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"903","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","14:32:00","MST","2022-08-17 21:32:00",NA,"2.64",2640,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949872008","WFWQC_UT-WFWQC0822-4996020-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996020-0817-LAB/results/949872008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"540","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-08-17","14:43:00","MST","2022-08-17 21:43:00",NA,"2.31",2310,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-949872019","WFWQC_UT-WFWQC0822-4996003-0817-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-08-25T16:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996003-0817-LAB/results/949872019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"541","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-13","08:52:00","MST","2022-09-13 15:52:00",NA,"1.78",1780,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966344","WFWQC_UT-WFWQC0922-4994952-0913-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"40.3729630000",40.372963,"-111.8340320000",-111.834032,"OK","16020201","WFWQC_UT-4994952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3729630000","-111.8340320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4994952-0913-LAB/results/951966344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"906","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-13","09:28:00","MST","2022-09-13 16:28:00",NA,"4.27",4270,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966355","WFWQC_UT-WFWQC0922-4995043-0913-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"40.3363310000",40.336331,"-111.7770790000",-111.777079,"OK","16020201","WFWQC_UT-4995043",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3363310000","-111.7770790000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995043-0913-LAB/results/951966355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"543","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-13","09:55:00","MST","2022-09-13 16:55:00",NA,"3.25",3250,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966366","WFWQC_UT-WFWQC0922-4995075-0913-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"40.3300290000",40.330029,"-111.7657920000",-111.765792,"OK","16020201","WFWQC_UT-4995075",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3300290000","-111.7657920000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995075-0913-LAB/results/951966366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"544","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-13","10:31:00","MST","2022-09-13 17:31:00",NA,"0.561",561,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966377","WFWQC_UT-WFWQC0922-4995222-0913-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Creek at Vineyard","River/Stream",NA,"40.3039893432",40.3039893432,"-111.7623006552",-111.7623006552,"OK","16020201","WFWQC_UT-4995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3039893432","-111.7623006552","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995222-0913-LAB/results/951966377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"545","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-13","11:42:00","MST","2022-09-13 18:42:00",NA,"10.3",10300,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966388","WFWQC_UT-WFWQC0922-4995210-0913-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653238630",40.265323863,"-111.7429835120",-111.742983512,"OK","16020201","WFWQC_UT-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2653238630","-111.7429835120","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995210-0913-LAB/results/951966388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1275","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-13","13:39:00","MST","2022-09-13 20:39:00",NA,"0.391",391,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966399","WFWQC_UT-WFWQC0922-4996680-0913-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000230",40.236900023,"-111.7315988730",-111.731598873,"OK","16020201","WFWQC_UT-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2369000230","-111.7315988730","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996680-0913-LAB/results/951966399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"547","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-13","14:26:00","MST","2022-09-13 21:26:00",NA,"0.311",311,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966410","WFWQC_UT-WFWQC0922-4995575-0913-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spanish Fork River at mouth","River/Stream",NA,"40.1668900000",40.16689,"-111.7484900000",-111.74849,"OK","16020201","WFWQC_UT-4995575",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:48",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1668900000","-111.7484900000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995575-0913-LAB/results/951966410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"548","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-13","15:18:00","MST","2022-09-13 22:18:00",NA,"2.64",2640,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966421","WFWQC_UT-WFWQC0922-4917712-0913-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Unnamed flow at 4000 West @ mouth","River/Stream",NA,"40.1522940000",40.152294,"-111.7509300000",-111.75093,"OK","16020201","WFWQC_UT-4917712",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1522940000","-111.7509300000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4917712-0913-LAB/results/951966421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1278","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-13","16:02:00","MST","2022-09-13 23:02:00",NA,"0.611",611,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966432","WFWQC_UT-WFWQC0922-4995467-0913-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Beer Creek at Utah Lake mouth","River/Stream",NA,"40.1383540000",40.138354,"-111.7936320000",-111.793632,"OK","16020201","WFWQC_UT-4995467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:49",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1383540000","-111.7936320000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995467-0913-LAB/results/951966432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"550","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","09:07:00","MST","2022-09-14 16:07:00",NA,"1.82",1820,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966443","WFWQC_UT-WFWQC0922-4996570-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK AB PROVO WWTP","River/Stream",NA,"40.2165400000",40.21654,"-111.6550100000",-111.65501,"OK","16020201","WFWQC_UT-4996570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2165400000","-111.6550100000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996570-0914-LAB/results/951966443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"551","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","09:21:00","MST","2022-09-14 16:21:00",NA,"15.6",15600,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966454","WFWQC_UT-WFWQC0922-4996560-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO WWTP","Facility Other",NA,"40.2114300000",40.21143,"-111.6519500000",-111.65195,"OK","16020201","WFWQC_UT-4996560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2114300000","-111.6519500000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996560-0914-LAB/results/951966454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"552","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","09:44:00","MST","2022-09-14 16:44:00",NA,"13.1",13100,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966465","WFWQC_UT-WFWQC0922-4996550-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILLRACE CK BL PROVO WWTP","River/Stream",NA,"40.2090848655",40.2090848655,"-111.6522513752",-111.6522513752,"OK","16020201","WFWQC_UT-4996550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:50",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2090848655","-111.6522513752","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996550-0914-LAB/results/951966465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"553","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","10:16:00","MST","2022-09-14 17:16:00",NA,"0.876",876,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966476","WFWQC_UT-WFWQC0922-4996410-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"40.1993711820",40.199371182,"-111.6396453340",-111.639645334,"OK","16020201","WFWQC_UT-4996410",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1993711820","-111.6396453340","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996410-0914-LAB/results/951966476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1647","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","10:37:00","MST","2022-09-14 17:37:00",NA,"9.19",9190,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966487","WFWQC_UT-WFWQC0922-4996190-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"40.1916650460",40.191665046,"-111.6385743560",-111.638574356,"OK","16020202","WFWQC_UT-4996190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:51",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1916650460","-111.6385743560","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996190-0914-LAB/results/951966487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"919","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","11:20:00","MST","2022-09-14 18:20:00",NA,"9.05",9050,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966498","WFWQC_UT-WFWQC0922-4996540-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030894240",40.203089424,"-111.6562123710",-111.656212371,"OK","16020201","WFWQC_UT-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2030894240","-111.6562123710","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996540-0914-LAB/results/951966498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"556","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","11:39:00","MST","2022-09-14 18:39:00",NA,"6.15",6150,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966509","WFWQC_UT-WFWQC0922-4996566-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536560000",-111.653656,"OK","16020201","WFWQC_UT-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:52",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2021000000","-111.6536560000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996566-0914-LAB/results/951966509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1650","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","12:08:00","MST","2022-09-14 19:08:00",NA,"8.68",8680,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966520","WFWQC_UT-WFWQC0922-4996275-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895780000",40.189578,"-111.6489750000",-111.648975,"OK","16020201","WFWQC_UT-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1895780000","-111.6489750000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996275-0914-LAB/results/951966520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"922","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","12:23:00","MST","2022-09-14 19:23:00",NA,"0.504",504,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966531","WFWQC_UT-WFWQC0922-4996100-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","WFWQC_UT-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996100-0914-LAB/results/951966531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"559","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","13:32:00","MST","2022-09-14 20:32:00",NA,"1.92",1920,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966542","WFWQC_UT-WFWQC0922-4996022-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"40.1450050000",40.145005,"-111.6502840000",-111.650284,"OK","16020202","WFWQC_UT-4996022",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:53",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1450050000","-111.6502840000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996022-0914-LAB/results/951966542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1653","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","13:48:00","MST","2022-09-14 20:48:00",NA,"0.743",743,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966553","WFWQC_UT-WFWQC0922-4996020-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","SPANISH FORK WWTP","Facility Other",NA,"40.1449720000",40.144972,"-111.6503330000",-111.650333,"OK","16020202","WFWQC_UT-4996020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1449720000","-111.6503330000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996020-0914-LAB/results/951966553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"561","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_TOTAL_AS N_UG/L","2022-09-14","14:02:00","MST","2022-09-14 21:02:00",NA,"1.39",1390,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Minimum Reporting Level","0.23",230,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Nitrate, Dimethylphenol Method",NA,"10206","HACH",NA,"Valid","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Timpanogos Special Service District",NA,"STORET-951966564","WFWQC_UT-WFWQC0922-4996003-0914-LAB","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","N","Not a duplicate","Y","Not a duplicate","Unique","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project","WFWQC",NA,NA,NA,"N","US","49","049","Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"40.1507640000",40.150764,"-111.6576370000",-111.657637,"OK","16020202","WFWQC_UT-4996003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-09-28T17:52:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1507640000","-111.6576370000","Accepted",NA,NA,NA,NA,NA,NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996003-0914-LAB/results/951966564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10709","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-04","11:00:00","MST","2021-10-04 18:00:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581815","UTAHDWQ_WQX-UCASE2021-4900452-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","033","Little Creek 65 meters below Litle Creek Dam","River/Stream",NA,"41.6734900000",41.67349,"-111.2265300000",-111.22653,"OK","16010101","UTAHDWQ_WQX-4900452",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6734900000","-111.2265300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900452-1004-4-C/results/953581815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10710","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-03","09:00:00","MST","2021-11-03 16:00:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581821","UTAHDWQ_WQX-BRI211101-4900470-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900470-1103-4-C/results/953581821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10711","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-03","09:00:00","MST","2021-11-03 16:00:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581824","UTAHDWQ_WQX-BRI211101-4900470-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","DAM CK AB MANTUA RES","River/Stream",NA,"41.5143300000",41.51433,"-111.9324000000",-111.9324,"OK","16010204","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5143300000","-111.9324000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900470-1103-4-C/results/953581824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10712","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-05","12:02:00","MST","2021-10-05 19:02:00",NA,"0.188",188,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581849","UTAHDWQ_WQX-UCASE2021-4900502-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Stillwater Fork 1 mile BL Christmas Meadows CG and 0.3 mile bl FS 113 rd xing","River/Stream",NA,"40.8367300000",40.83673,"-110.8134700000",-110.81347,"OK","16010101","UTAHDWQ_WQX-4900502",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8367300000","-110.8134700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900502-1005-4-C/results/953581849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10713","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","16:30:00","MST","2021-11-02 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581855","UTAHDWQ_WQX-BRI211101-4900751-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900751-1102-4-C/results/953581855/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10714","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","16:30:00","MST","2021-11-02 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581858","UTAHDWQ_WQX-BRI211101-4900751-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900751-1102-4-C/results/953581858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10715","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-03","13:45:00","MST","2021-11-03 20:45:00",NA,"0.178",178,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581881","UTAHDWQ_WQX-BRI211101-4900751-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900751-1103-4-C/results/953581881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10716","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-03","13:45:00","MST","2021-11-03 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581884","UTAHDWQ_WQX-BRI211101-4900751-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900751-1103-4-C/results/953581884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10717","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","09:30:00","MST","2021-11-02 16:30:00",NA,"0.427",427,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581945","UTAHDWQ_WQX-BRI211101-4901190-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901190-1102-4-C/results/953581945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10718","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","09:30:00","MST","2021-11-02 16:30:00",NA,"0.373",373,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581948","UTAHDWQ_WQX-BRI211101-4901190-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"41.5223000000",41.5223,"-112.0411700000",-112.04117,"OK","16010204","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5223000000","-112.0411700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901190-1102-4-C/results/953581948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10719","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","10:15:00","MST","2021-11-02 17:15:00",NA,"0.772",772,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581971","UTAHDWQ_WQX-BRI211101-4901930-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901930-1102-4-C/results/953581971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10720","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","10:15:00","MST","2021-11-02 17:15:00",NA,"0.795",795,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581974","UTAHDWQ_WQX-BRI211101-4901930-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"41.7852100000",41.78521,"-112.1024600000",-112.10246,"OK","16010204","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7852100000","-112.1024600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901930-1102-4-C/results/953581974/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10721","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","10:35:00","MST","2021-11-02 17:35:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953581997","UTAHDWQ_WQX-BRI211101-4901950-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901950-1102-4-C/results/953581997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10722","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","10:35:00","MST","2021-11-02 17:35:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582000","UTAHDWQ_WQX-BRI211101-4901950-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"41.8254600000",41.82546,"-112.0665400000",-112.06654,"OK","16010204","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8254600000","-112.0665400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901950-1102-4-C/results/953582000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10723","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","11:15:00","MST","2021-11-02 18:15:00",NA,"2.66",2660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582516","UTAHDWQ_WQX-BRI211101-4903060-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903060-1102-4-C/results/953582516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10724","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","11:15:00","MST","2021-11-02 18:15:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582519","UTAHDWQ_WQX-BRI211101-4903060-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"41.8583200000",41.85832,"-111.9981500000",-111.99815,"OK","16010202","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8583200000","-111.9981500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903060-1102-4-C/results/953582519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10725","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","11:30:00","MST","2021-11-02 18:30:00",NA,"2.95",2950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582542","UTAHDWQ_WQX-BRI211101-4903080-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903080-1102-4-C/results/953582542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10726","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","11:30:00","MST","2021-11-02 18:30:00",NA,"2.98",2980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582545","UTAHDWQ_WQX-BRI211101-4903080-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"41.8625900000",41.86259,"-111.9955900000",-111.99559,"OK","16010202","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8625900000","-111.9955900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903080-1102-4-C/results/953582545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10727","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-06","11:00:00","MST","2021-10-06 18:00:00",NA,"0.85",850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582572","UTAHDWQ_WQX-LAKES211004-4903130-1006-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES AB DAM 01","Lake",NA,"41.8971500000",41.89715,"-111.9743900000",-111.97439,"OK","16010202","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8971500000","-111.9743900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4903130-1006-2-C/results/953582572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10728","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-06","11:00:00","MST","2021-10-06 18:00:00",NA,"0.497",497,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582576","UTAHDWQ_WQX-LAKES211004-4903130-1006-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","NEWTON RES AB DAM 01","Lake",NA,"41.8971500000",41.89715,"-111.9743900000",-111.97439,"OK","16010202","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8971500000","-111.9743900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4903130-1006-2-C/results/953582576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10729","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-06","11:35:00","MST","2021-10-06 18:35:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582603","UTAHDWQ_WQX-LAKES211004-4903190-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4903190-1006-4-C/results/953582603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10730","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-06","11:35:00","MST","2021-10-06 18:35:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582607","UTAHDWQ_WQX-LAKES211004-4903190-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CLARKSTON CK AT U142 XING","River/Stream",NA,"41.9198700000",41.91987,"-112.0377800000",-112.03778,"OK","16010202","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9198700000","-112.0377800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4903190-1006-4-C/results/953582607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10731","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","13:30:00","MST","2021-11-02 20:30:00",NA,"4.12",4120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582630","UTAHDWQ_WQX-BRI211101-4903500-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903500-1102-4-C/results/953582630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10732","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","13:30:00","MST","2021-11-02 20:30:00",NA,"4.08",4080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582633","UTAHDWQ_WQX-BRI211101-4903500-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903500-1102-4-C/results/953582633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10733","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","13:35:00","MST","2021-11-02 20:35:00",NA,"4.18",4180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582656","UTAHDWQ_WQX-BRI211101-4903501-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903501-1102-4-C/results/953582656/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10734","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","13:35:00","MST","2021-11-02 20:35:00",NA,"4.07",4070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582659","UTAHDWQ_WQX-BRI211101-4903501-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","41.8332600000",41.83326,"-111.8843900000",-111.88439,"OK","16010202","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8332600000","-111.8843900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903501-1102-4-C/results/953582659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10735","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","13:20:00","MST","2021-11-02 20:20:00",NA,"0.536",536,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582682","UTAHDWQ_WQX-BRI211101-4903504-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903504-1102-4-C/results/953582682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10736","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","13:20:00","MST","2021-11-02 20:20:00",NA,"0.244",244,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582685","UTAHDWQ_WQX-BRI211101-4903504-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"41.8363800000",41.83638,"-111.8439500000",-111.84395,"OK","16010202","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8363800000","-111.8439500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903504-1102-4-C/results/953582685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10737","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","12:35:00","MST","2021-11-02 19:35:00",NA,"1.99",1990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582708","UTAHDWQ_WQX-BRI211101-4904310-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4904310-1102-4-C/results/953582708/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10738","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","12:35:00","MST","2021-11-02 19:35:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582711","UTAHDWQ_WQX-BRI211101-4904310-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"41.9760600000",41.97606,"-111.8164900000",-111.81649,"OK","16010202","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.9760600000","-111.8164900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4904310-1102-4-C/results/953582711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10739","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","11:45:00","MST","2021-11-02 18:45:00",NA,"2.73",2730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582734","UTAHDWQ_WQX-BRI211101-4904726-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4904726-1102-4-C/results/953582734/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10740","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","11:45:00","MST","2021-11-02 18:45:00",NA,"2.39",2390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582737","UTAHDWQ_WQX-BRI211101-4904726-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","Clay Slough at 7000 N crossing","River/Stream",NA,"41.8595700000",41.85957,"-111.9279800000",-111.92798,"OK","16010202","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8595700000","-111.9279800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4904726-1102-4-C/results/953582737/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10741","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","11:45:00","MST","2021-10-27 18:45:00",NA,"0.507",507,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582760","UTAHDWQ_WQX-LOGANRV211027-4905040-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905040-1027-4-C/results/953582760/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10742","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","12:15:00","MST","2021-10-27 19:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582766","UTAHDWQ_WQX-LOGANRV211027-4905135-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905135-1027-4-C/results/953582766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10743","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","12:00:00","MST","2021-10-27 19:00:00",NA,"0.402",402,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582770","UTAHDWQ_WQX-LOGANRV211027-4905137-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"41.7430900000",41.74309,"-111.9198600000",-111.91986,"OK","16010203","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7430900000","-111.9198600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905137-1027-4-C/results/953582770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10744","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","10:30:00","MST","2021-10-27 17:30:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582776","UTAHDWQ_WQX-LOGANRV211027-4905140-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905140-1027-4-C/results/953582776/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10745","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","10:40:00","MST","2021-10-27 17:40:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582782","UTAHDWQ_WQX-LOGANRV211027-4905142-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905142-1027-4-C/results/953582782/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10746","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","10:00:00","MST","2021-10-27 17:00:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582788","UTAHDWQ_WQX-LOGANRV211027-4905188-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:42:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905188-1027-4-C/results/953582788/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10747","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","09:45:00","MST","2021-10-27 16:45:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582794","UTAHDWQ_WQX-LOGANRV211027-4905192-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905192-1027-4-C/results/953582794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10748","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","09:15:00","MST","2021-10-27 16:15:00",NA,"0.205",205,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582800","UTAHDWQ_WQX-LOGANRV211027-4905195-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905195-1027-4-C/results/953582800/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10749","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","09:00:00","MST","2021-10-27 16:00:00",NA,"0.187",187,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582806","UTAHDWQ_WQX-LOGANRV211027-4905198-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905198-1027-4-C/results/953582806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10750","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","10:15:00","MST","2021-10-27 17:15:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582812","UTAHDWQ_WQX-LOGANRV211027-4905400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905400-1027-4-C/results/953582812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10751","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-03","10:05:00","MST","2021-11-03 17:05:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582818","UTAHDWQ_WQX-BRI211101-4905580-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905580-1103-4-C/results/953582818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10752","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-03","10:05:00","MST","2021-11-03 17:05:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582821","UTAHDWQ_WQX-BRI211101-4905580-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"41.6666000000",41.6666,"-111.9174400000",-111.91744,"OK","16010203","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6666000000","-111.9174400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905580-1103-4-C/results/953582821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10753","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-03","09:45:00","MST","2021-11-03 16:45:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582844","UTAHDWQ_WQX-BRI211101-4905590-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905590-1103-4-C/results/953582844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10754","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-03","09:45:00","MST","2021-11-03 16:45:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582847","UTAHDWQ_WQX-BRI211101-4905590-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"41.6667600000",41.66676,"-111.9203700000",-111.92037,"OK","16010203","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.6667600000","-111.9203700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905590-1103-4-C/results/953582847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10755","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-03","11:10:00","MST","2021-11-03 18:10:00",NA,"0.452",452,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582870","UTAHDWQ_WQX-BRI211101-4905770-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905770-1103-4-C/results/953582870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10756","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-03","11:10:00","MST","2021-11-03 18:10:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582873","UTAHDWQ_WQX-BRI211101-4905770-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"41.5004900000",41.50049,"-111.8141000000",-111.8141,"OK","16010203","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.5004900000","-111.8141000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905770-1103-4-C/results/953582873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10757","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-03","13:30:00","MST","2021-11-03 20:30:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582896","UTAHDWQ_WQX-BRI211101-4908152-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4908152-1103-4-C/results/953582896/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10758","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-03","13:30:00","MST","2021-11-03 20:30:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582899","UTAHDWQ_WQX-BRI211101-4908152-1103-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","033","Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"41.7681100000",41.76811,"-111.1738200000",-111.17382,"OK","16010101","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7681100000","-111.1738200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4908152-1103-4-C/results/953582899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10759","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","14:00:00","MST","2021-10-20 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582930","UTAHDWQ_WQX-UTLK211025-4910009-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1020-4-C/results/953582930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10760","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","14:00:00","MST","2021-10-20 21:00:00",NA,"0.193",193,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582935","UTAHDWQ_WQX-UTLK211025-4910009-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1020-4-C/results/953582935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10761","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-21","13:00:00","MST","2021-10-21 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582969","UTAHDWQ_WQX-UTLK211025-4910009-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1021-4-C/results/953582969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10762","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","13:00:00","MST","2021-10-21 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582974","UTAHDWQ_WQX-UTLK211025-4910009-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1021-4-C/results/953582974/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10763","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","14:45:00","MST","2021-10-28 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582988","UTAHDWQ_WQX-UTLK211025-4910009-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1028-4-C/results/953582988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10764","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","14:45:00","MST","2021-10-28 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953582993","UTAHDWQ_WQX-UTLK211025-4910009-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1028-4-C/results/953582993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10765","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","15:00:00","MST","2021-11-15 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583007","UTAHDWQ_WQX-UTLK211115-4910009-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1115-4-C/results/953583007/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10766","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","15:00:00","MST","2021-11-15 22:00:00",NA,"0.094",94,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583012","UTAHDWQ_WQX-UTLK211115-4910009-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1115-4-C/results/953583012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10767","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","15:55:00","MST","2021-11-16 22:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583046","UTAHDWQ_WQX-UTLK211115-4910009-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1116-4-C/results/953583046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10768","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","15:55:00","MST","2021-11-16 22:55:00",NA,"0.301",301,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583051","UTAHDWQ_WQX-UTLK211115-4910009-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1116-4-C/results/953583051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10769","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","15:00:00","MST","2021-11-17 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583065","UTAHDWQ_WQX-UTLK211115-4910009-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1117-4-C/results/953583065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10770","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","15:00:00","MST","2021-11-17 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583070","UTAHDWQ_WQX-UTLK211115-4910009-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1117-4-C/results/953583070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10771","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","15:00:00","MST","2021-12-02 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583084","UTAHDWQ_WQX-UTLK211202-4910009-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4910009-1202-4-C/results/953583084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10772","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","15:00:00","MST","2021-12-02 22:00:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583089","UTAHDWQ_WQX-UTLK211202-4910009-1202-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4910009-1202-4-C/results/953583089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10773","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","16:00:00","MST","2021-12-08 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583123","UTAHDWQ_WQX-UTLK211202-4910009-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4910009-1208-4-C/results/953583123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10774","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","16:00:00","MST","2021-12-08 23:00:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583128","UTAHDWQ_WQX-UTLK211202-4910009-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4910009-1208-4-C/results/953583128/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10775","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","17:00:00","MST","2022-01-25 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583141","UTAHDWQ_WQX-UTLK220124-4910009-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4910009-0124-4-C/results/953583141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10776","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","17:00:00","MST","2022-01-25 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583146","UTAHDWQ_WQX-UTLK220124-4910009-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4910009-0124-4-C/results/953583146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10777","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","16:00:00","MST","2022-02-15 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583159","UTAHDWQ_WQX-UTLK220215-4910009-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4910009-0215-4-C/results/953583159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10778","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","16:00:00","MST","2022-02-15 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583164","UTAHDWQ_WQX-UTLK220215-4910009-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4910009-0215-4-C/results/953583164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10779","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","18:00:00","MST","2022-03-15 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583178","UTAHDWQ_WQX-UTLK220314-4910009-0314-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4910009-0314-4-C/results/953583178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10780","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","18:00:00","MST","2022-03-15 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583183","UTAHDWQ_WQX-UTLK220314-4910009-0314-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4910009-0314-4-C/results/953583183/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10781","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","18:00:00","MST","2022-03-16 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583217","UTAHDWQ_WQX-UTLK220314-4910009-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4910009-0315-4-C/results/953583217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10782","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","18:00:00","MST","2022-03-16 01:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583222","UTAHDWQ_WQX-UTLK220314-4910009-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4910009-0315-4-C/results/953583222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10783","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","11:50:00","MST","2021-11-30 18:50:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583231","UTAHDWQ_WQX-DC211130-4915630-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4915630-1130-4-C/results/953583231/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10784","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","11:50:00","MST","2021-11-30 18:50:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583235","UTAHDWQ_WQX-DC211130-4915630-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4915630-1130-4-C/results/953583235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10785","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","12:00:00","MST","2022-01-25 19:00:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583258","UTAHDWQ_WQX-DC220125-4915630-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4915630-0125-4-C/results/953583258/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10786","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","12:00:00","MST","2022-01-25 19:00:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583262","UTAHDWQ_WQX-DC220125-4915630-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4915630-0125-4-C/results/953583262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10787","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","12:15:00","MST","2022-02-22 19:15:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583285","UTAHDWQ_WQX-DC220222-4915630-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4915630-0222-4-C/results/953583285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10788","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","12:15:00","MST","2022-02-22 19:15:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583289","UTAHDWQ_WQX-DC220222-4915630-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4915630-0222-4-C/results/953583289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10789","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","12:00:00","MST","2022-03-22 19:00:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583312","UTAHDWQ_WQX-DC220322-4915630-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4915630-0322-4-C/results/953583312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10790","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","12:00:00","MST","2022-03-22 19:00:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583316","UTAHDWQ_WQX-DC220322-4915630-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4915630-0322-4-C/results/953583316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10791","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","11:35:00","MST","2021-11-30 18:35:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583330","UTAHDWQ_WQX-DC211130-4915650-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4915650-1130-4-C/results/953583330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10792","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","11:35:00","MST","2021-11-30 18:35:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583334","UTAHDWQ_WQX-DC211130-4915650-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4915650-1130-4-C/results/953583334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10793","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","11:40:00","MST","2022-01-25 18:40:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583357","UTAHDWQ_WQX-DC220125-4915650-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4915650-0125-4-C/results/953583357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10794","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","11:40:00","MST","2022-01-25 18:40:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583361","UTAHDWQ_WQX-DC220125-4915650-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4915650-0125-4-C/results/953583361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10795","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","12:00:00","MST","2022-02-22 19:00:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583384","UTAHDWQ_WQX-DC220222-4915650-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4915650-0222-4-C/results/953583384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10796","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","12:00:00","MST","2022-02-22 19:00:00",NA,"0.5",500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583388","UTAHDWQ_WQX-DC220222-4915650-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4915650-0222-4-C/results/953583388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10797","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","11:45:00","MST","2022-03-22 18:45:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583411","UTAHDWQ_WQX-DC220322-4915650-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4915650-0322-4-C/results/953583411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10798","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","11:45:00","MST","2022-03-22 18:45:00",NA,"0.477",477,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583415","UTAHDWQ_WQX-DC220322-4915650-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4915650-0322-4-C/results/953583415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10799","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","09:30:00","MST","2021-10-20 16:30:00",NA,"2.43",2430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583434","UTAHDWQ_WQX-UTLK211025-4917305-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917305-1020-2-C/results/953583434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10800","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","09:30:00","MST","2021-10-20 16:30:00",NA,"2.51",2510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583439","UTAHDWQ_WQX-UTLK211025-4917305-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917305-1020-2-C/results/953583439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10801","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","09:35:00","MST","2021-11-15 16:35:00",NA,"0.844",844,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583455","UTAHDWQ_WQX-UTLK211115-4917305-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917305-1115-2-C/results/953583455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10802","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","09:35:00","MST","2021-11-15 16:35:00",NA,"0.83",830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583460","UTAHDWQ_WQX-UTLK211115-4917305-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917305-1115-2-C/results/953583460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10803","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","10:00:00","MST","2021-12-02 17:00:00",NA,"0.826",826,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583476","UTAHDWQ_WQX-UTLK211202-4917305-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917305-1202-2-C/results/953583476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10804","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","10:00:00","MST","2021-12-02 17:00:00",NA,"0.652",652,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583481","UTAHDWQ_WQX-UTLK211202-4917305-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917305-1202-2-C/results/953583481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10805","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","10:00:00","MST","2022-03-14 17:00:00",NA,"0.959",959,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583497","UTAHDWQ_WQX-UTLK220314-4917305-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917305-0314-2-C/results/953583497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10806","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","10:10:00","MST","2021-10-20 17:10:00",NA,"0.89",890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583513","UTAHDWQ_WQX-UTLK211025-4917310-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917310-1020-2-C/results/953583513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10807","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:10:00","MST","2021-10-20 17:10:00",NA,"0.852",852,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583518","UTAHDWQ_WQX-UTLK211025-4917310-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917310-1020-2-C/results/953583518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10808","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","10:15:00","MST","2021-10-20 17:15:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.256",1.256,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583531","UTAHDWQ_WQX-UTLK211025-4917310-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917310-1020-29-C/results/953583531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10809","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:15:00","MST","2021-10-20 17:15:00",NA,"0.932",932,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.256",1.256,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583536","UTAHDWQ_WQX-UTLK211025-4917310-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917310-1020-29-C/results/953583536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10810","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:05:00","MST","2021-11-15 17:05:00",NA,"0.781",781,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583570","UTAHDWQ_WQX-UTLK211115-4917310-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917310-1115-2-C/results/953583570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10811","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:05:00","MST","2021-11-15 17:05:00",NA,"0.884",884,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583575","UTAHDWQ_WQX-UTLK211115-4917310-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917310-1115-2-C/results/953583575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10812","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:10:00","MST","2021-11-15 17:10:00",NA,"0.805",805,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.344",1.344,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583588","UTAHDWQ_WQX-UTLK211115-4917310-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917310-1115-29-C/results/953583588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10813","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:10:00","MST","2021-11-15 17:10:00",NA,"0.837",837,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.344",1.344,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583593","UTAHDWQ_WQX-UTLK211115-4917310-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917310-1115-29-C/results/953583593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10814","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","11:00:00","MST","2021-12-02 18:00:00",NA,"0.808",808,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583627","UTAHDWQ_WQX-UTLK211202-4917310-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917310-1202-2-C/results/953583627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10815","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","11:00:00","MST","2021-12-02 18:00:00",NA,"0.828",828,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583632","UTAHDWQ_WQX-UTLK211202-4917310-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917310-1202-2-C/results/953583632/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10816","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","10:40:00","MST","2021-12-02 17:40:00",NA,"0.788",788,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.343",1.343,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583645","UTAHDWQ_WQX-UTLK211202-4917310-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917310-1202-29-C/results/953583645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10817","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","10:40:00","MST","2021-12-02 17:40:00",NA,"0.704",704,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.343",1.343,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583650","UTAHDWQ_WQX-UTLK211202-4917310-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917310-1202-29-C/results/953583650/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10818","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","10:45:00","MST","2022-03-14 17:45:00",NA,"1.47",1470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583683","UTAHDWQ_WQX-UTLK220314-4917310-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917310-0314-2-C/results/953583683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10819","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","10:45:00","MST","2022-03-14 17:45:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583688","UTAHDWQ_WQX-UTLK220314-4917310-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917310-0314-2-C/results/953583688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10820","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","10:47:00","MST","2022-03-14 17:47:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.649",1.649,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583701","UTAHDWQ_WQX-UTLK220314-4917310-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917310-0314-29-C/results/953583701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10821","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","10:47:00","MST","2022-03-14 17:47:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.649",1.649,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583706","UTAHDWQ_WQX-UTLK220314-4917310-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917310-0314-29-C/results/953583706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10822","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","10:20:00","MST","2021-10-20 17:20:00",NA,"0.775",775,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"No Corresponding field measurements available",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583740","UTAHDWQ_WQX-UTLK211025-4917320-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917320-1020-2-C/results/953583740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10823","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:20:00","MST","2021-10-20 17:20:00",NA,"0.941",941,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"No Corresponding field measurements available",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583745","UTAHDWQ_WQX-UTLK211025-4917320-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917320-1020-2-C/results/953583745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10824","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","10:25:00","MST","2021-10-20 17:25:00",NA,"0.766",766,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"No Corresponding field measurements available",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583758","UTAHDWQ_WQX-UTLK211025-4917320-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917320-1020-29-C/results/953583758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10825","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:25:00","MST","2021-10-20 17:25:00",NA,"0.862",862,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"No Corresponding field measurements available",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583763","UTAHDWQ_WQX-UTLK211025-4917320-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917320-1020-29-C/results/953583763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10826","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:15:00","MST","2021-11-15 17:15:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583797","UTAHDWQ_WQX-UTLK211115-4917320-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917320-1115-2-C/results/953583797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10827","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:15:00","MST","2021-11-15 17:15:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583802","UTAHDWQ_WQX-UTLK211115-4917320-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:43:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917320-1115-2-C/results/953583802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10828","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:20:00","MST","2021-11-15 17:20:00",NA,"0.749",749,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.359",1.359,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583815","UTAHDWQ_WQX-UTLK211115-4917320-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917320-1115-29-C/results/953583815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10829","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:20:00","MST","2021-11-15 17:20:00",NA,"0.752",752,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.359",1.359,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583820","UTAHDWQ_WQX-UTLK211115-4917320-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917320-1115-29-C/results/953583820/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10830","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","10:45:00","MST","2021-12-02 17:45:00",NA,"0.825",825,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583854","UTAHDWQ_WQX-UTLK211202-4917320-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917320-1202-2-C/results/953583854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10831","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","10:45:00","MST","2021-12-02 17:45:00",NA,"0.726",726,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583859","UTAHDWQ_WQX-UTLK211202-4917320-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917320-1202-2-C/results/953583859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10832","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","10:50:00","MST","2021-12-02 17:50:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.364",1.364,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583872","UTAHDWQ_WQX-UTLK211202-4917320-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917320-1202-29-C/results/953583872/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10833","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","10:50:00","MST","2021-12-02 17:50:00",NA,"0.705",705,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.364",1.364,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583877","UTAHDWQ_WQX-UTLK211202-4917320-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917320-1202-29-C/results/953583877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10834","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","10:50:00","MST","2022-03-14 17:50:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583911","UTAHDWQ_WQX-UTLK220314-4917320-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917320-0314-2-C/results/953583911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10835","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","10:50:00","MST","2022-03-14 17:50:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583916","UTAHDWQ_WQX-UTLK220314-4917320-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917320-0314-2-C/results/953583916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10836","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","10:50:00","MST","2022-03-14 17:50:00",NA,"0.943",943,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.644",1.644,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583929","UTAHDWQ_WQX-UTLK220314-4917320-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917320-0314-29-C/results/953583929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10837","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","10:50:00","MST","2022-03-14 17:50:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.644",1.644,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583934","UTAHDWQ_WQX-UTLK220314-4917320-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917320-0314-29-C/results/953583934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10838","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","09:55:00","MST","2021-10-20 16:55:00",NA,"1.5",1500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583968","UTAHDWQ_WQX-UTLK211025-4917335-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917335-1020-2-C/results/953583968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10839","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","09:55:00","MST","2021-10-20 16:55:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583973","UTAHDWQ_WQX-UTLK211025-4917335-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917335-1020-2-C/results/953583973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10840","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","09:55:00","MST","2021-11-15 16:55:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583989","UTAHDWQ_WQX-UTLK211115-4917335-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917335-1115-2-C/results/953583989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10841","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","09:55:00","MST","2021-11-15 16:55:00",NA,"0.707",707,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953583994","UTAHDWQ_WQX-UTLK211115-4917335-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917335-1115-2-C/results/953583994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10842","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","10:30:00","MST","2021-12-02 17:30:00",NA,"0.938",938,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584010","UTAHDWQ_WQX-UTLK211202-4917335-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917335-1202-2-C/results/953584010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10843","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","10:30:00","MST","2021-12-02 17:30:00",NA,"0.813",813,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584015","UTAHDWQ_WQX-UTLK211202-4917335-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917335-1202-2-C/results/953584015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10844","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","10:20:00","MST","2022-03-14 17:20:00",NA,"1.87",1870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584031","UTAHDWQ_WQX-UTLK220314-4917335-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917335-0314-2-C/results/953584031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10845","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","10:45:00","MST","2021-10-20 17:45:00",NA,"0.773",773,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584047","UTAHDWQ_WQX-UTLK211025-4917365-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917365-1020-2-C/results/953584047/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10846","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:45:00","MST","2021-10-20 17:45:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584052","UTAHDWQ_WQX-UTLK211025-4917365-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917365-1020-2-C/results/953584052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10847","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","10:50:00","MST","2021-10-20 17:50:00",NA,"0.74",740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.811",1.811,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584065","UTAHDWQ_WQX-UTLK211025-4917365-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917365-1020-29-C/results/953584065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10848","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:50:00","MST","2021-10-20 17:50:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.811",1.811,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584070","UTAHDWQ_WQX-UTLK211025-4917365-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917365-1020-29-C/results/953584070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10849","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:40:00","MST","2021-11-15 17:40:00",NA,"0.902",902,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584104","UTAHDWQ_WQX-UTLK211115-4917365-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917365-1115-2-C/results/953584104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10850","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:40:00","MST","2021-11-15 17:40:00",NA,"0.881",881,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584109","UTAHDWQ_WQX-UTLK211115-4917365-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917365-1115-2-C/results/953584109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10851","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:45:00","MST","2021-11-15 17:45:00",NA,"0.815",815,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.886",1.886,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584122","UTAHDWQ_WQX-UTLK211115-4917365-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917365-1115-29-C/results/953584122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10852","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:45:00","MST","2021-11-15 17:45:00",NA,"0.75",750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.886",1.886,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584127","UTAHDWQ_WQX-UTLK211115-4917365-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917365-1115-29-C/results/953584127/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10853","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","11:20:00","MST","2021-12-02 18:20:00",NA,"0.713",713,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584161","UTAHDWQ_WQX-UTLK211202-4917365-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917365-1202-2-C/results/953584161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10854","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","11:20:00","MST","2021-12-02 18:20:00",NA,"0.88",880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584166","UTAHDWQ_WQX-UTLK211202-4917365-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917365-1202-2-C/results/953584166/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10855","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","11:30:00","MST","2021-12-02 18:30:00",NA,"0.732",732,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.186",2.186,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584179","UTAHDWQ_WQX-UTLK211202-4917365-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917365-1202-29-C/results/953584179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10856","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","11:30:00","MST","2021-12-02 18:30:00",NA,"0.849",849,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.186",2.186,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584184","UTAHDWQ_WQX-UTLK211202-4917365-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917365-1202-29-C/results/953584184/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10857","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","11:30:00","MST","2022-03-14 18:30:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584217","UTAHDWQ_WQX-UTLK220314-4917365-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917365-0314-2-C/results/953584217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10858","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","11:30:00","MST","2022-03-14 18:30:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584222","UTAHDWQ_WQX-UTLK220314-4917365-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917365-0314-2-C/results/953584222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10859","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","11:35:00","MST","2022-03-14 18:35:00",NA,"0.659",659,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.237",2.237,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584235","UTAHDWQ_WQX-UTLK220314-4917365-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917365-0314-29-C/results/953584235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10860","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","11:35:00","MST","2022-03-14 18:35:00",NA,"0.606",606,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.237",2.237,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584240","UTAHDWQ_WQX-UTLK220314-4917365-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917365-0314-29-C/results/953584240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10861","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","13:20:00","MST","2021-10-20 20:20:00",NA,"0.759",759,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584274","UTAHDWQ_WQX-UTLK211025-4917370-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917370-1020-2-C/results/953584274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10862","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","13:20:00","MST","2021-10-20 20:20:00",NA,"0.774",774,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584279","UTAHDWQ_WQX-UTLK211025-4917370-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917370-1020-2-C/results/953584279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10863","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","13:25:00","MST","2021-10-20 20:25:00",NA,"0.773",773,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.904",1.904,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584292","UTAHDWQ_WQX-UTLK211025-4917370-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917370-1020-29-C/results/953584292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10864","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","13:25:00","MST","2021-10-20 20:25:00",NA,"0.799",799,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.904",1.904,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584297","UTAHDWQ_WQX-UTLK211025-4917370-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917370-1020-29-C/results/953584297/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10865","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:15:00","MST","2021-11-15 20:15:00",NA,"0.955",955,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584331","UTAHDWQ_WQX-UTLK211115-4917370-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917370-1115-2-C/results/953584331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10866","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:15:00","MST","2021-11-15 20:15:00",NA,"0.979",979,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584336","UTAHDWQ_WQX-UTLK211115-4917370-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917370-1115-2-C/results/953584336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10867","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:20:00","MST","2021-11-15 20:20:00",NA,"0.766",766,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.837",1.837,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584349","UTAHDWQ_WQX-UTLK211115-4917370-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917370-1115-29-C/results/953584349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10868","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:20:00","MST","2021-11-15 20:20:00",NA,"0.971",971,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.837",1.837,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584354","UTAHDWQ_WQX-UTLK211115-4917370-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917370-1115-29-C/results/953584354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10869","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","13:30:00","MST","2021-12-02 20:30:00",NA,"0.698",698,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584388","UTAHDWQ_WQX-UTLK211202-4917370-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917370-1202-2-C/results/953584388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10870","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","13:30:00","MST","2021-12-02 20:30:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584393","UTAHDWQ_WQX-UTLK211202-4917370-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917370-1202-2-C/results/953584393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10871","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","13:40:00","MST","2021-12-02 20:40:00",NA,"0.741",741,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.899",1.899,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584406","UTAHDWQ_WQX-UTLK211202-4917370-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917370-1202-29-C/results/953584406/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10872","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","13:40:00","MST","2021-12-02 20:40:00",NA,"0.855",855,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.899",1.899,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584411","UTAHDWQ_WQX-UTLK211202-4917370-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917370-1202-29-C/results/953584411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10873","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","14:15:00","MST","2022-03-14 21:15:00",NA,"0.654",654,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584445","UTAHDWQ_WQX-UTLK220314-4917370-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917370-0314-2-C/results/953584445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10874","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","14:15:00","MST","2022-03-14 21:15:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584450","UTAHDWQ_WQX-UTLK220314-4917370-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917370-0314-2-C/results/953584450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10875","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","14:20:00","MST","2022-03-14 21:20:00",NA,"0.667",667,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.177",2.177,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584463","UTAHDWQ_WQX-UTLK220314-4917370-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917370-0314-29-C/results/953584463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10876","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","14:20:00","MST","2022-03-14 21:20:00",NA,"0.617",617,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.177",2.177,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584468","UTAHDWQ_WQX-UTLK220314-4917370-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917370-0314-29-C/results/953584468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10877","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","11:05:00","MST","2021-10-20 18:05:00",NA,"0.74",740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584502","UTAHDWQ_WQX-UTLK211025-4917390-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917390-1020-2-C/results/953584502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10878","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:05:00","MST","2021-10-20 18:05:00",NA,"0.769",769,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584507","UTAHDWQ_WQX-UTLK211025-4917390-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917390-1020-2-C/results/953584507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10879","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","11:10:00","MST","2021-10-20 18:10:00",NA,"0.893",893,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.172",2.172,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584520","UTAHDWQ_WQX-UTLK211025-4917390-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917390-1020-29-C/results/953584520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10880","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:10:00","MST","2021-10-20 18:10:00",NA,"0.87",870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.172",2.172,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584525","UTAHDWQ_WQX-UTLK211025-4917390-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917390-1020-29-C/results/953584525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10881","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:25:00","MST","2021-11-15 18:25:00",NA,"0.82",820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584559","UTAHDWQ_WQX-UTLK211115-4917390-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917390-1115-2-C/results/953584559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10882","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:25:00","MST","2021-11-15 18:25:00",NA,"0.996",996,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584564","UTAHDWQ_WQX-UTLK211115-4917390-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917390-1115-2-C/results/953584564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10883","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:30:00","MST","2021-11-15 18:30:00",NA,"0.772",772,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.264",2.264,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584577","UTAHDWQ_WQX-UTLK211115-4917390-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917390-1115-29-C/results/953584577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10884","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:30:00","MST","2021-11-15 18:30:00",NA,"0.721",721,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.264",2.264,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584582","UTAHDWQ_WQX-UTLK211115-4917390-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917390-1115-29-C/results/953584582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10885","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","12:00:00","MST","2021-12-02 19:00:00",NA,"0.795",795,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584616","UTAHDWQ_WQX-UTLK211202-4917390-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917390-1202-2-C/results/953584616/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10886","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","12:00:00","MST","2021-12-02 19:00:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584621","UTAHDWQ_WQX-UTLK211202-4917390-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917390-1202-2-C/results/953584621/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10887","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","12:10:00","MST","2021-12-02 19:10:00",NA,"0.821",821,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.244",2.244,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584634","UTAHDWQ_WQX-UTLK211202-4917390-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917390-1202-29-C/results/953584634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10888","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","12:10:00","MST","2021-12-02 19:10:00",NA,"0.797",797,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.244",2.244,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584639","UTAHDWQ_WQX-UTLK211202-4917390-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917390-1202-29-C/results/953584639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10889","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","12:20:00","MST","2022-03-14 19:20:00",NA,"0.689",689,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584673","UTAHDWQ_WQX-UTLK220314-4917390-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917390-0314-2-C/results/953584673/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10890","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","12:20:00","MST","2022-03-14 19:20:00",NA,"0.617",617,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584678","UTAHDWQ_WQX-UTLK220314-4917390-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917390-0314-2-C/results/953584678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10891","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","12:25:00","MST","2022-03-14 19:25:00",NA,"0.698",698,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.703",2.703,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584691","UTAHDWQ_WQX-UTLK220314-4917390-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917390-0314-29-C/results/953584691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10892","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","12:25:00","MST","2022-03-14 19:25:00",NA,"0.592",592,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.703",2.703,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584696","UTAHDWQ_WQX-UTLK220314-4917390-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917390-0314-29-C/results/953584696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10893","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","13:30:00","MST","2021-10-20 20:30:00",NA,"1.97",1970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584730","UTAHDWQ_WQX-UTLK211025-4917414-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:44:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917414-1020-2-C/results/953584730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10894","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","13:30:00","MST","2021-10-20 20:30:00",NA,"2.41",2410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584735","UTAHDWQ_WQX-UTLK211025-4917414-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917414-1020-2-C/results/953584735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10895","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:30:00","MST","2021-11-15 20:30:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584751","UTAHDWQ_WQX-UTLK211115-4917414-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917414-1115-2-C/results/953584751/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10896","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:30:00","MST","2021-11-15 20:30:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584756","UTAHDWQ_WQX-UTLK211115-4917414-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917414-1115-2-C/results/953584756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10897","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","13:50:00","MST","2021-12-02 20:50:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584772","UTAHDWQ_WQX-UTLK211202-4917414-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917414-1202-2-C/results/953584772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10898","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","13:50:00","MST","2021-12-02 20:50:00",NA,"2.41",2410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584777","UTAHDWQ_WQX-UTLK211202-4917414-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917414-1202-2-C/results/953584777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10899","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","14:40:00","MST","2022-03-14 21:40:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584793","UTAHDWQ_WQX-UTLK220314-4917414-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917414-0314-2-C/results/953584793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10900","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","14:40:00","MST","2022-03-14 21:40:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584798","UTAHDWQ_WQX-UTLK220314-4917414-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917414-0314-2-C/results/953584798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10901","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","11:25:00","MST","2021-10-20 18:25:00",NA,"0.919",919,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584814","UTAHDWQ_WQX-UTLK211025-4917433-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917433-1020-2-C/results/953584814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10902","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:25:00","MST","2021-10-20 18:25:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584819","UTAHDWQ_WQX-UTLK211025-4917433-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917433-1020-2-C/results/953584819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10903","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:00:00","MST","2021-11-15 18:00:00",NA,"0.826",826,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584835","UTAHDWQ_WQX-UTLK211115-4917433-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917433-1115-2-C/results/953584835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10904","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","11:50:00","MST","2021-12-02 18:50:00",NA,"0.862",862,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584850","UTAHDWQ_WQX-UTLK211202-4917433-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917433-1202-2-C/results/953584850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10905","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","11:50:00","MST","2021-12-02 18:50:00",NA,"0.771",771,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584855","UTAHDWQ_WQX-UTLK211202-4917433-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917433-1202-2-C/results/953584855/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10906","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","12:05:00","MST","2022-03-14 19:05:00",NA,"0.74",740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584871","UTAHDWQ_WQX-UTLK220314-4917433-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917433-0314-2-C/results/953584871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10907","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","12:05:00","MST","2022-03-14 19:05:00",NA,"0.575",575,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584876","UTAHDWQ_WQX-UTLK220314-4917433-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917433-0314-2-C/results/953584876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10908","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-21","11:45:00","MST","2021-10-21 18:45:00",NA,"8.69",8690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584892","UTAHDWQ_WQX-UTLK211025-4917450-1021-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917450-1021-2-C/results/953584892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10909","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","11:45:00","MST","2021-10-21 18:45:00",NA,"9.01",9010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584897","UTAHDWQ_WQX-UTLK211025-4917450-1021-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917450-1021-2-C/results/953584897/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10910","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","13:00:00","MST","2021-11-17 20:00:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584911","UTAHDWQ_WQX-UTLK211115-4917450-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917450-1117-2-C/results/953584911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10911","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","13:00:00","MST","2021-11-17 20:00:00",NA,"2.35",2350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584916","UTAHDWQ_WQX-UTLK211115-4917450-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917450-1117-2-C/results/953584916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10912","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","12:50:00","MST","2021-10-20 19:50:00",NA,"0.791",791,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584930","UTAHDWQ_WQX-UTLK211025-4917500-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917500-1020-2-C/results/953584930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10913","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","12:50:00","MST","2021-10-20 19:50:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584935","UTAHDWQ_WQX-UTLK211025-4917500-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917500-1020-2-C/results/953584935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10914","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","12:55:00","MST","2021-10-20 19:55:00",NA,"0.759",759,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.986",1.986,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584948","UTAHDWQ_WQX-UTLK211025-4917500-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917500-1020-29-C/results/953584948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10915","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","12:55:00","MST","2021-10-20 19:55:00",NA,"0.806",806,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.986",1.986,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584953","UTAHDWQ_WQX-UTLK211025-4917500-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917500-1020-29-C/results/953584953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10916","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:50:00","MST","2021-11-15 19:50:00",NA,"0.785",785,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584987","UTAHDWQ_WQX-UTLK211115-4917500-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917500-1115-2-C/results/953584987/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10917","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:50:00","MST","2021-11-15 19:50:00",NA,"0.85",850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953584992","UTAHDWQ_WQX-UTLK211115-4917500-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917500-1115-2-C/results/953584992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10918","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:55:00","MST","2021-11-15 19:55:00",NA,"0.781",781,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.961",1.961,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585005","UTAHDWQ_WQX-UTLK211115-4917500-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917500-1115-29-C/results/953585005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10919","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:55:00","MST","2021-11-15 19:55:00",NA,"0.776",776,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.961",1.961,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585010","UTAHDWQ_WQX-UTLK211115-4917500-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917500-1115-29-C/results/953585010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10920","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","13:00:00","MST","2021-12-02 20:00:00",NA,"0.796",796,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585044","UTAHDWQ_WQX-UTLK211202-4917500-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917500-1202-2-C/results/953585044/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10921","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","13:00:00","MST","2021-12-02 20:00:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585049","UTAHDWQ_WQX-UTLK211202-4917500-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917500-1202-2-C/results/953585049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10922","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","13:10:00","MST","2021-12-02 20:10:00",NA,"0.799",799,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.044",2.044,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585062","UTAHDWQ_WQX-UTLK211202-4917500-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917500-1202-29-C/results/953585062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10923","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","13:10:00","MST","2021-12-02 20:10:00",NA,"0.717",717,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.044",2.044,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585067","UTAHDWQ_WQX-UTLK211202-4917500-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917500-1202-29-C/results/953585067/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10924","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","13:40:00","MST","2022-03-14 20:40:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585101","UTAHDWQ_WQX-UTLK220314-4917500-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917500-0314-2-C/results/953585101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10925","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","13:40:00","MST","2022-03-14 20:40:00",NA,"0.843",843,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585106","UTAHDWQ_WQX-UTLK220314-4917500-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917500-0314-2-C/results/953585106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10926","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","13:50:00","MST","2022-03-14 20:50:00",NA,"0.688",688,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.527",2.527,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585119","UTAHDWQ_WQX-UTLK220314-4917500-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917500-0314-29-C/results/953585119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10927","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","13:40:00","MST","2021-10-20 20:40:00",NA,"0.728",728,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585153","UTAHDWQ_WQX-UTLK211025-4917520-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917520-1020-2-C/results/953585153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10928","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","13:40:00","MST","2021-10-20 20:40:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585158","UTAHDWQ_WQX-UTLK211025-4917520-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917520-1020-2-C/results/953585158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10929","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","13:45:00","MST","2021-10-20 20:45:00",NA,"0.753",753,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.376",1.376,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585171","UTAHDWQ_WQX-UTLK211025-4917520-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917520-1020-29-C/results/953585171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10930","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","13:45:00","MST","2021-10-20 20:45:00",NA,"0.764",764,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.376",1.376,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585176","UTAHDWQ_WQX-UTLK211025-4917520-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917520-1020-29-C/results/953585176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10931","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:45:00","MST","2021-11-15 20:45:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585210","UTAHDWQ_WQX-UTLK211115-4917520-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917520-1115-2-C/results/953585210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10932","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:45:00","MST","2021-11-15 20:45:00",NA,"0.831",831,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585215","UTAHDWQ_WQX-UTLK211115-4917520-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917520-1115-2-C/results/953585215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10933","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:50:00","MST","2021-11-15 20:50:00",NA,"0.782",782,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.434",1.434,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585228","UTAHDWQ_WQX-UTLK211115-4917520-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917520-1115-29-C/results/953585228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10934","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:50:00","MST","2021-11-15 20:50:00",NA,"0.733",733,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.434",1.434,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585233","UTAHDWQ_WQX-UTLK211115-4917520-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917520-1115-29-C/results/953585233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10935","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","14:15:00","MST","2021-12-02 21:15:00",NA,"0.786",786,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585267","UTAHDWQ_WQX-UTLK211202-4917520-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917520-1202-2-C/results/953585267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10936","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","14:15:00","MST","2021-12-02 21:15:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585272","UTAHDWQ_WQX-UTLK211202-4917520-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917520-1202-2-C/results/953585272/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10937","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","14:20:00","MST","2021-12-02 21:20:00",NA,"0.818",818,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.539",1.539,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585285","UTAHDWQ_WQX-UTLK211202-4917520-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917520-1202-29-C/results/953585285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10938","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","14:20:00","MST","2021-12-02 21:20:00",NA,"0.745",745,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.539",1.539,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585290","UTAHDWQ_WQX-UTLK211202-4917520-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917520-1202-29-C/results/953585290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10939","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","15:00:00","MST","2022-03-14 22:00:00",NA,"0.633",633,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585324","UTAHDWQ_WQX-UTLK220314-4917520-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917520-0314-2-C/results/953585324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10940","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","15:00:00","MST","2022-03-14 22:00:00",NA,"0.564",564,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585329","UTAHDWQ_WQX-UTLK220314-4917520-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917520-0314-2-C/results/953585329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10941","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","15:05:00","MST","2022-03-14 22:05:00",NA,"0.641",641,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.806",1.806,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585342","UTAHDWQ_WQX-UTLK220314-4917520-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917520-0314-29-C/results/953585342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10942","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","15:05:00","MST","2022-03-14 22:05:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.806",1.806,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585347","UTAHDWQ_WQX-UTLK220314-4917520-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917520-0314-29-C/results/953585347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10943","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-21","10:20:00","MST","2021-10-21 17:20:00",NA,"0.883",883,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585381","UTAHDWQ_WQX-UTLK211025-4917600-1021-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917600-1021-2-C/results/953585381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10944","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","10:20:00","MST","2021-10-21 17:20:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585386","UTAHDWQ_WQX-UTLK211025-4917600-1021-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917600-1021-2-C/results/953585386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10945","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","11:00:00","MST","2021-11-17 18:00:00",NA,"0.708",708,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585400","UTAHDWQ_WQX-UTLK211115-4917600-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917600-1117-2-C/results/953585400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10946","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","11:00:00","MST","2021-11-17 18:00:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585405","UTAHDWQ_WQX-UTLK211115-4917600-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917600-1117-2-C/results/953585405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10947","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","12:20:00","MST","2021-10-20 19:20:00",NA,"0.641",641,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585419","UTAHDWQ_WQX-UTLK211025-4917708-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917708-1020-2-C/results/953585419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10948","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","12:20:00","MST","2021-10-20 19:20:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585424","UTAHDWQ_WQX-UTLK211025-4917708-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917708-1020-2-C/results/953585424/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10949","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:15:00","MST","2021-11-15 19:15:00",NA,"0.89",890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585440","UTAHDWQ_WQX-UTLK211115-4917708-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917708-1115-2-C/results/953585440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10950","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:15:00","MST","2021-11-15 19:15:00",NA,"0.738",738,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585445","UTAHDWQ_WQX-UTLK211115-4917708-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917708-1115-2-C/results/953585445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10951","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","12:40:00","MST","2021-12-02 19:40:00",NA,"0.799",799,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585461","UTAHDWQ_WQX-UTLK211202-4917708-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917708-1202-2-C/results/953585461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10952","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","12:40:00","MST","2021-12-02 19:40:00",NA,"0.793",793,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585466","UTAHDWQ_WQX-UTLK211202-4917708-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917708-1202-2-C/results/953585466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10953","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","13:30:00","MST","2022-03-14 20:30:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585482","UTAHDWQ_WQX-UTLK220314-4917708-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917708-0314-2-C/results/953585482/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10954","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","13:30:00","MST","2022-03-14 20:30:00",NA,"0.795",795,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585487","UTAHDWQ_WQX-UTLK220314-4917708-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917708-0314-2-C/results/953585487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10955","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","12:05:00","MST","2021-10-20 19:05:00",NA,"0.756",756,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585503","UTAHDWQ_WQX-UTLK211025-4917710-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917710-1020-2-C/results/953585503/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10956","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","12:05:00","MST","2021-10-20 19:05:00",NA,"0.783",783,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585508","UTAHDWQ_WQX-UTLK211025-4917710-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917710-1020-2-C/results/953585508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10957","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","12:10:00","MST","2021-10-20 19:10:00",NA,"0.773",773,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.164",2.164,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585521","UTAHDWQ_WQX-UTLK211025-4917710-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917710-1020-29-C/results/953585521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10958","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","12:10:00","MST","2021-10-20 19:10:00",NA,"0.863",863,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.164",2.164,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585526","UTAHDWQ_WQX-UTLK211025-4917710-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917710-1020-29-C/results/953585526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10959","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:00:00","MST","2021-11-15 19:00:00",NA,"0.725",725,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585560","UTAHDWQ_WQX-UTLK211115-4917710-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917710-1115-2-C/results/953585560/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10960","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:00:00","MST","2021-11-15 19:00:00",NA,"0.849",849,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585565","UTAHDWQ_WQX-UTLK211115-4917710-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917710-1115-2-C/results/953585565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10961","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:05:00","MST","2021-11-15 19:05:00",NA,"0.773",773,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.085",2.085,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585578","UTAHDWQ_WQX-UTLK211115-4917710-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917710-1115-29-C/results/953585578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10962","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:05:00","MST","2021-11-15 19:05:00",NA,"0.757",757,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.085",2.085,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585583","UTAHDWQ_WQX-UTLK211115-4917710-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917710-1115-29-C/results/953585583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10963","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","12:30:00","MST","2021-12-02 19:30:00",NA,"0.751",751,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585616","UTAHDWQ_WQX-UTLK211202-4917710-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917710-1202-2-C/results/953585616/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10964","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","12:30:00","MST","2021-12-02 19:30:00",NA,"0.907",907,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585621","UTAHDWQ_WQX-UTLK211202-4917710-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917710-1202-2-C/results/953585621/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10965","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","12:40:00","MST","2021-12-02 19:40:00",NA,"0.791",791,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.132",2.132,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585634","UTAHDWQ_WQX-UTLK211202-4917710-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917710-1202-29-C/results/953585634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10966","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","12:40:00","MST","2021-12-02 19:40:00",NA,"0.785",785,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.132",2.132,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585639","UTAHDWQ_WQX-UTLK211202-4917710-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917710-1202-29-C/results/953585639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10967","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","13:00:00","MST","2022-03-14 20:00:00",NA,"0.666",666,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585673","UTAHDWQ_WQX-UTLK220314-4917710-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917710-0314-2-C/results/953585673/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10968","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","13:00:00","MST","2022-03-14 20:00:00",NA,"0.603",603,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585678","UTAHDWQ_WQX-UTLK220314-4917710-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917710-0314-2-C/results/953585678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10969","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","13:05:00","MST","2022-03-14 20:05:00",NA,"0.691",691,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.595",2.595,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585691","UTAHDWQ_WQX-UTLK220314-4917710-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917710-0314-29-C/results/953585691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10970","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","13:05:00","MST","2022-03-14 20:05:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.595",2.595,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585696","UTAHDWQ_WQX-UTLK220314-4917710-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917710-0314-29-C/results/953585696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10971","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","11:50:00","MST","2021-10-20 18:50:00",NA,"0.743",743,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585730","UTAHDWQ_WQX-UTLK211025-4917715-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917715-1020-2-C/results/953585730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10972","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:50:00","MST","2021-10-20 18:50:00",NA,"0.896",896,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585735","UTAHDWQ_WQX-UTLK211025-4917715-1020-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917715-1020-2-C/results/953585735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10973","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","11:55:00","MST","2021-10-20 18:55:00",NA,"0.739",739,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.231",2.231,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585748","UTAHDWQ_WQX-UTLK211025-4917715-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917715-1020-29-C/results/953585748/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10974","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:55:00","MST","2021-10-20 18:55:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.231",2.231,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585753","UTAHDWQ_WQX-UTLK211025-4917715-1020-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917715-1020-29-C/results/953585753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10975","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:50:00","MST","2021-11-15 18:50:00",NA,"0.745",745,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585787","UTAHDWQ_WQX-UTLK211115-4917715-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917715-1115-2-C/results/953585787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10976","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:50:00","MST","2021-11-15 18:50:00",NA,"0.857",857,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585792","UTAHDWQ_WQX-UTLK211115-4917715-1115-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917715-1115-2-C/results/953585792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10977","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:55:00","MST","2021-11-15 18:55:00",NA,"0.788",788,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.213",2.213,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585805","UTAHDWQ_WQX-UTLK211115-4917715-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917715-1115-29-C/results/953585805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10978","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:55:00","MST","2021-11-15 18:55:00",NA,"0.826",826,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.213",2.213,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585810","UTAHDWQ_WQX-UTLK211115-4917715-1115-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:45:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917715-1115-29-C/results/953585810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10979","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","12:15:00","MST","2021-12-02 19:15:00",NA,"0.761",761,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585844","UTAHDWQ_WQX-UTLK211202-4917715-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917715-1202-2-C/results/953585844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10980","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","12:15:00","MST","2021-12-02 19:15:00",NA,"1.5",1500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585849","UTAHDWQ_WQX-UTLK211202-4917715-1202-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917715-1202-2-C/results/953585849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10981","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-02","12:20:00","MST","2021-12-02 19:20:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.253",2.253,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585862","UTAHDWQ_WQX-UTLK211202-4917715-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917715-1202-29-C/results/953585862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10982","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-02","12:20:00","MST","2021-12-02 19:20:00",NA,"0.972",972,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.253",2.253,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585867","UTAHDWQ_WQX-UTLK211202-4917715-1202-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917715-1202-29-C/results/953585867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10983","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","12:40:00","MST","2022-03-14 19:40:00",NA,"0.674",674,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585901","UTAHDWQ_WQX-UTLK220314-4917715-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917715-0314-2-C/results/953585901/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10984","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","12:40:00","MST","2022-03-14 19:40:00",NA,"0.831",831,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585906","UTAHDWQ_WQX-UTLK220314-4917715-0314-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917715-0314-2-C/results/953585906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10985","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","12:45:00","MST","2022-03-14 19:45:00",NA,"0.716",716,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.586",2.586,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585919","UTAHDWQ_WQX-UTLK220314-4917715-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917715-0314-29-C/results/953585919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10986","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","12:45:00","MST","2022-03-14 19:45:00",NA,"0.602",602,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.586",2.586,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585924","UTAHDWQ_WQX-UTLK220314-4917715-0314-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917715-0314-29-C/results/953585924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10987","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-21","12:20:00","MST","2021-10-21 19:20:00",NA,"2.46",2460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585958","UTAHDWQ_WQX-UTLK211025-4917770-1021-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917770-1021-2-C/results/953585958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10988","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","12:20:00","MST","2021-10-21 19:20:00",NA,"2.64",2640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585963","UTAHDWQ_WQX-UTLK211025-4917770-1021-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917770-1021-2-C/results/953585963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10989","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","13:10:00","MST","2021-11-17 20:10:00",NA,"0.62",620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585977","UTAHDWQ_WQX-UTLK211115-4917770-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917770-1117-2-C/results/953585977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10990","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","13:10:00","MST","2021-11-17 20:10:00",NA,"0.662",662,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585982","UTAHDWQ_WQX-UTLK211115-4917770-1117-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917770-1117-2-C/results/953585982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10991","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:00:00","MST","2021-11-15 18:00:00",NA,"6.82",6820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585990","UTAHDWQ_WQX-WRI211115-4920010-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","IRRIGATION CANAL AB WEBER R","Canal Irrigation",NA,"41.2835800000",41.28358,"-112.0896600000",-112.08966,"OK","16020102","UTAHDWQ_WQX-4920010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2835800000","-112.0896600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920010-1115-4-C/results/953585990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10992","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:00:00","MST","2021-11-15 18:00:00",NA,"6.72",6720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953585993","UTAHDWQ_WQX-WRI211115-4920010-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","IRRIGATION CANAL AB WEBER R","Canal Irrigation",NA,"41.2835800000",41.28358,"-112.0896600000",-112.08966,"OK","16020102","UTAHDWQ_WQX-4920010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2835800000","-112.0896600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920010-1115-4-C/results/953585993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10993","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:55:00","MST","2021-12-13 17:55:00",NA,"6.47",6470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586033","UTAHDWQ_WQX-WRI211213-4920010-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","IRRIGATION CANAL AB WEBER R","Canal Irrigation",NA,"41.2835800000",41.28358,"-112.0896600000",-112.08966,"OK","16020102","UTAHDWQ_WQX-4920010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2835800000","-112.0896600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920010-1213-4-C/results/953586033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10994","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","10:55:00","MST","2021-12-13 17:55:00",NA,"7.28",7280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586036","UTAHDWQ_WQX-WRI211213-4920010-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","IRRIGATION CANAL AB WEBER R","Canal Irrigation",NA,"41.2835800000",41.28358,"-112.0896600000",-112.08966,"OK","16020102","UTAHDWQ_WQX-4920010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2835800000","-112.0896600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920010-1213-4-C/results/953586036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10995","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","11:20:00","MST","2022-01-10 18:20:00",NA,"8.82",8820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586076","UTAHDWQ_WQX-WRI220110-4920010-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","IRRIGATION CANAL AB WEBER R","Canal Irrigation",NA,"41.2835800000",41.28358,"-112.0896600000",-112.08966,"OK","16020102","UTAHDWQ_WQX-4920010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2835800000","-112.0896600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920010-0110-4-C/results/953586076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10996","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","11:20:00","MST","2022-01-10 18:20:00",NA,"8.42",8420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586079","UTAHDWQ_WQX-WRI220110-4920010-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","IRRIGATION CANAL AB WEBER R","Canal Irrigation",NA,"41.2835800000",41.28358,"-112.0896600000",-112.08966,"OK","16020102","UTAHDWQ_WQX-4920010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2835800000","-112.0896600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920010-0110-4-C/results/953586079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10997","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","11:15:00","MST","2022-02-07 18:15:00",NA,"9.41",9410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586119","UTAHDWQ_WQX-WRI220207-4920010-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","IRRIGATION CANAL AB WEBER R","Canal Irrigation",NA,"41.2835800000",41.28358,"-112.0896600000",-112.08966,"OK","16020102","UTAHDWQ_WQX-4920010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2835800000","-112.0896600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920010-0207-4-C/results/953586119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10998","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","11:15:00","MST","2022-02-07 18:15:00",NA,"9.33",9330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586122","UTAHDWQ_WQX-WRI220207-4920010-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","IRRIGATION CANAL AB WEBER R","Canal Irrigation",NA,"41.2835800000",41.28358,"-112.0896600000",-112.08966,"OK","16020102","UTAHDWQ_WQX-4920010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2835800000","-112.0896600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920010-0207-4-C/results/953586122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10999","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","12:10:00","MST","2021-10-18 19:10:00",NA,"8.75",8750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586162","UTAHDWQ_WQX-WRI211018-4920030-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920030-1018-4-C/results/953586162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11000","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","12:10:00","MST","2021-10-18 19:10:00",NA,"8.54",8540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586165","UTAHDWQ_WQX-WRI211018-4920030-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920030-1018-4-C/results/953586165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11001","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:10:00","MST","2021-11-15 18:10:00",NA,"7.31",7310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586189","UTAHDWQ_WQX-WRI211115-4920030-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920030-1115-4-C/results/953586189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11002","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:10:00","MST","2021-11-15 18:10:00",NA,"6.71",6710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586192","UTAHDWQ_WQX-WRI211115-4920030-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920030-1115-4-C/results/953586192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11003","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","11:10:00","MST","2021-12-13 18:10:00",NA,"7.65",7650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586200","UTAHDWQ_WQX-WRI211213-4920030-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920030-1213-4-C/results/953586200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11004","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","11:10:00","MST","2021-12-13 18:10:00",NA,"7.02",7020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586203","UTAHDWQ_WQX-WRI211213-4920030-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920030-1213-4-C/results/953586203/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11005","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","11:50:00","MST","2022-01-10 18:50:00",NA,"9.41",9410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586227","UTAHDWQ_WQX-WRI220110-4920030-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920030-0110-4-C/results/953586227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11006","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","11:50:00","MST","2022-01-10 18:50:00",NA,"8.76",8760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586230","UTAHDWQ_WQX-WRI220110-4920030-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920030-0110-4-C/results/953586230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11007","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","10:45:00","MST","2022-03-07 17:45:00",NA,"9.98",9980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586238","UTAHDWQ_WQX-WRI220307-4920030-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920030-0307-4-C/results/953586238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11008","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","10:45:00","MST","2022-03-07 17:45:00",NA,"8.91",8910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586241","UTAHDWQ_WQX-WRI220307-4920030-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920030-0307-4-C/results/953586241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11009","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","11:30:00","MST","2021-10-18 18:30:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586248","UTAHDWQ_WQX-WRI211018-4920048-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920048-1018-4-C/results/953586248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11010","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","11:30:00","MST","2021-10-18 18:30:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586251","UTAHDWQ_WQX-WRI211018-4920048-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920048-1018-4-C/results/953586251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11011","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:40:00","MST","2021-11-15 17:40:00",NA,"3.04",3040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586290","UTAHDWQ_WQX-WRI211115-4920048-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920048-1115-4-C/results/953586290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11012","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:40:00","MST","2021-11-15 17:40:00",NA,"2.95",2950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586293","UTAHDWQ_WQX-WRI211115-4920048-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920048-1115-4-C/results/953586293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11013","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:40:00","MST","2021-12-13 17:40:00",NA,"2.87",2870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586332","UTAHDWQ_WQX-WRI211213-4920048-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920048-1213-4-C/results/953586332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11014","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","10:40:00","MST","2021-12-13 17:40:00",NA,"2.9",2900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586335","UTAHDWQ_WQX-WRI211213-4920048-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920048-1213-4-C/results/953586335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11015","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","11:00:00","MST","2022-01-10 18:00:00",NA,"6.4",6400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586374","UTAHDWQ_WQX-WRI220110-4920048-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920048-0110-4-C/results/953586374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11016","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","11:00:00","MST","2022-01-10 18:00:00",NA,"6.97",6970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586377","UTAHDWQ_WQX-WRI220110-4920048-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920048-0110-4-C/results/953586377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11017","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","11:00:00","MST","2022-02-07 18:00:00",NA,"7.67",7670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586416","UTAHDWQ_WQX-WRI220207-4920048-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920048-0207-4-C/results/953586416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11018","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","11:00:00","MST","2022-02-07 18:00:00",NA,"8.85",8850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586419","UTAHDWQ_WQX-WRI220207-4920048-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920048-0207-4-C/results/953586419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11019","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","10:30:00","MST","2022-03-07 17:30:00",NA,"7.98",7980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586458","UTAHDWQ_WQX-WRI220307-4920048-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920048-0307-4-C/results/953586458/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11020","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","10:30:00","MST","2022-03-07 17:30:00",NA,"7.88",7880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586461","UTAHDWQ_WQX-WRI220307-4920048-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920048-0307-4-C/results/953586461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11021","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","11:15:00","MST","2021-10-18 18:15:00",NA,"1.92",1920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586501","UTAHDWQ_WQX-WRI211018-4920050-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920050-1018-4-C/results/953586501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11022","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","11:15:00","MST","2021-10-18 18:15:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586504","UTAHDWQ_WQX-WRI211018-4920050-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920050-1018-4-C/results/953586504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11023","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:30:00","MST","2021-11-15 17:30:00",NA,"3.76",3760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586544","UTAHDWQ_WQX-WRI211115-4920050-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920050-1115-4-C/results/953586544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11024","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:30:00","MST","2021-11-15 17:30:00",NA,"2.9",2900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586547","UTAHDWQ_WQX-WRI211115-4920050-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920050-1115-4-C/results/953586547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11025","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:30:00","MST","2021-12-13 17:30:00",NA,"2.8",2800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586587","UTAHDWQ_WQX-WRI211213-4920050-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920050-1213-4-C/results/953586587/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11026","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","10:30:00","MST","2021-12-13 17:30:00",NA,"3.08",3080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586590","UTAHDWQ_WQX-WRI211213-4920050-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920050-1213-4-C/results/953586590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11027","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","10:55:00","MST","2022-01-10 17:55:00",NA,"7.01",7010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586630","UTAHDWQ_WQX-WRI220110-4920050-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920050-0110-4-C/results/953586630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11028","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","10:55:00","MST","2022-01-10 17:55:00",NA,"7.01",7010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586633","UTAHDWQ_WQX-WRI220110-4920050-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920050-0110-4-C/results/953586633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11029","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","10:50:00","MST","2022-02-07 17:50:00",NA,"7.92",7920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586673","UTAHDWQ_WQX-WRI220207-4920050-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920050-0207-4-C/results/953586673/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11030","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","10:20:00","MST","2022-03-07 17:20:00",NA,"7.9",7900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586713","UTAHDWQ_WQX-WRI220307-4920050-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920050-0307-4-C/results/953586713/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11031","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","10:20:00","MST","2022-03-07 17:20:00",NA,"7.55",7550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586716","UTAHDWQ_WQX-WRI220307-4920050-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920050-0307-4-C/results/953586716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11032","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","13:00:00","MST","2021-10-18 20:00:00",NA,"0.818",818,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586755","UTAHDWQ_WQX-WRI211018-4920062-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920062-1018-4-C/results/953586755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11033","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","13:00:00","MST","2021-10-18 20:00:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586758","UTAHDWQ_WQX-WRI211018-4920062-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:46:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920062-1018-4-C/results/953586758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11034","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:45:00","MST","2021-11-15 18:45:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586781","UTAHDWQ_WQX-WRI211115-4920062-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920062-1115-4-C/results/953586781/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11035","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:45:00","MST","2021-11-15 18:45:00",NA,"0.881",881,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586784","UTAHDWQ_WQX-WRI211115-4920062-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920062-1115-4-C/results/953586784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11036","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","11:50:00","MST","2021-12-13 18:50:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586791","UTAHDWQ_WQX-WRI211213-4920062-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920062-1213-4-C/results/953586791/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11037","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","11:50:00","MST","2021-12-13 18:50:00",NA,"1.75",1750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586794","UTAHDWQ_WQX-WRI211213-4920062-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920062-1213-4-C/results/953586794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11038","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","12:35:00","MST","2022-01-10 19:35:00",NA,"1.59",1590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586817","UTAHDWQ_WQX-WRI220110-4920062-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920062-0110-4-C/results/953586817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11039","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","12:35:00","MST","2022-01-10 19:35:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586820","UTAHDWQ_WQX-WRI220110-4920062-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920062-0110-4-C/results/953586820/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11040","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","11:50:00","MST","2022-02-07 18:50:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586827","UTAHDWQ_WQX-WRI220207-4920062-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920062-0207-4-C/results/953586827/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11041","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","11:50:00","MST","2022-02-07 18:50:00",NA,"2.27",2270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586830","UTAHDWQ_WQX-WRI220207-4920062-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920062-0207-4-C/results/953586830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11042","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","11:20:00","MST","2022-03-07 18:20:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586853","UTAHDWQ_WQX-WRI220307-4920062-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920062-0307-4-C/results/953586853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11043","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","11:20:00","MST","2022-03-07 18:20:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586856","UTAHDWQ_WQX-WRI220307-4920062-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920062-0307-4-C/results/953586856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11044","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","16:00:00","MST","2021-10-18 23:00:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586863","UTAHDWQ_WQX-WRI211018-4920097-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1018-4-C/results/953586863/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11045","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","16:00:00","MST","2021-10-18 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586866","UTAHDWQ_WQX-WRI211018-4920097-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1018-4-C/results/953586866/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11046","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","16:00:00","MST","2021-10-19 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586905","UTAHDWQ_WQX-WRI211018-4920097-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1019-4-C/results/953586905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11047","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","16:00:00","MST","2021-10-19 23:00:00",NA,"0.103",103,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586908","UTAHDWQ_WQX-WRI211018-4920097-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1019-4-C/results/953586908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11048","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","15:00:00","MST","2021-10-20 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586931","UTAHDWQ_WQX-WRI211018-4920097-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1020-4-C/results/953586931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11049","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","15:00:00","MST","2021-10-20 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586934","UTAHDWQ_WQX-WRI211018-4920097-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1020-4-C/results/953586934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11050","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","15:30:00","MST","2021-11-15 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586957","UTAHDWQ_WQX-WRI211115-4920097-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1115-4-C/results/953586957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11051","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","15:30:00","MST","2021-11-15 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586960","UTAHDWQ_WQX-WRI211115-4920097-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1115-4-C/results/953586960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11052","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","16:30:00","MST","2021-11-16 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953586999","UTAHDWQ_WQX-WRI211115-4920097-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1116-4-C/results/953586999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11053","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","16:30:00","MST","2021-11-16 23:30:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587002","UTAHDWQ_WQX-WRI211115-4920097-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1116-4-C/results/953587002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11054","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","16:15:00","MST","2021-11-17 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587009","UTAHDWQ_WQX-WRI211115-4920097-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1117-4-C/results/953587009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11055","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","16:15:00","MST","2021-11-17 23:15:00",NA,"0.083",83,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587012","UTAHDWQ_WQX-WRI211115-4920097-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1117-4-C/results/953587012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11056","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","13:35:00","MST","2021-12-13 20:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587019","UTAHDWQ_WQX-WRI211213-4920097-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1213-4-C/results/953587019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11057","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","13:35:00","MST","2021-12-13 20:35:00",NA,"0.156",156,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587022","UTAHDWQ_WQX-WRI211213-4920097-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1213-4-C/results/953587022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11058","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","15:00:00","MST","2021-12-14 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587061","UTAHDWQ_WQX-WRI211213-4920097-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1214-4-C/results/953587061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11059","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","15:00:00","MST","2021-12-14 22:00:00",NA,"0.627",627,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587064","UTAHDWQ_WQX-WRI211213-4920097-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1214-4-C/results/953587064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11060","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","15:00:00","MST","2021-12-21 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587087","UTAHDWQ_WQX-WRI211213-4920097-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1221-4-C/results/953587087/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11061","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","15:00:00","MST","2021-12-21 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587090","UTAHDWQ_WQX-WRI211213-4920097-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1221-4-C/results/953587090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11062","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","16:00:00","MST","2022-01-10 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587113","UTAHDWQ_WQX-WRI220110-4920097-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920097-0110-4-C/results/953587113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11063","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","16:00:00","MST","2022-01-10 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587116","UTAHDWQ_WQX-WRI220110-4920097-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920097-0110-4-C/results/953587116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11064","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","16:00:00","MST","2022-01-11 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587155","UTAHDWQ_WQX-WRI220110-4920097-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920097-0111-4-C/results/953587155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11065","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","16:00:00","MST","2022-01-11 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587158","UTAHDWQ_WQX-WRI220110-4920097-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920097-0111-4-C/results/953587158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11066","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","16:00:00","MST","2022-02-07 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587165","UTAHDWQ_WQX-WRI220207-4920097-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0207-4-C/results/953587165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11067","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","16:00:00","MST","2022-02-07 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587168","UTAHDWQ_WQX-WRI220207-4920097-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0207-4-C/results/953587168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11068","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","15:00:00","MST","2022-02-08 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587207","UTAHDWQ_WQX-WRI220207-4920097-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0208-4-C/results/953587207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11069","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","15:00:00","MST","2022-02-08 22:00:00",NA,"0.41",410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587210","UTAHDWQ_WQX-WRI220207-4920097-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0208-4-C/results/953587210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11070","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","15:00:00","MST","2022-02-09 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587233","UTAHDWQ_WQX-WRI220207-4920097-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0209-4-C/results/953587233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11071","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","15:00:00","MST","2022-02-09 22:00:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587236","UTAHDWQ_WQX-WRI220207-4920097-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0209-4-C/results/953587236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11072","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","16:30:00","MST","2022-03-07 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587259","UTAHDWQ_WQX-WRI220307-4920097-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0307-4-C/results/953587259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11073","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","16:30:00","MST","2022-03-07 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587262","UTAHDWQ_WQX-WRI220307-4920097-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0307-4-C/results/953587262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11074","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","15:00:00","MST","2022-03-08 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587301","UTAHDWQ_WQX-WRI220307-4920097-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0308-4-C/results/953587301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11075","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","15:00:00","MST","2022-03-08 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587304","UTAHDWQ_WQX-WRI220307-4920097-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0308-4-C/results/953587304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11076","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","16:00:00","MST","2022-03-09 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587311","UTAHDWQ_WQX-WRI220307-4920097-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0309-4-C/results/953587311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11077","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","16:00:00","MST","2022-03-09 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587314","UTAHDWQ_WQX-WRI220307-4920097-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0309-4-C/results/953587314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11078","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","07:30:00","MST","2021-10-26 14:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587321","UTAHDWQ_WQX-WRI211018-4920098-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1026-4-C/results/953587321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11079","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","07:30:00","MST","2021-10-26 14:30:00",NA,"0.122",122,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587324","UTAHDWQ_WQX-WRI211018-4920098-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1026-4-C/results/953587324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11080","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","16:00:00","MST","2021-10-26 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587347","UTAHDWQ_WQX-WRI211018-4920098-1026-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1026-4%2F1-C/results/953587347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11081","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","16:00:00","MST","2021-10-26 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587350","UTAHDWQ_WQX-WRI211018-4920098-1026-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1026-4%2F1-C/results/953587350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11082","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","15:40:00","MST","2021-10-27 22:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587389","UTAHDWQ_WQX-WRI211018-4920098-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1027-4-C/results/953587389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11083","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","15:40:00","MST","2021-10-27 22:40:00",NA,"0.122",122,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587392","UTAHDWQ_WQX-WRI211018-4920098-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1027-4-C/results/953587392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11084","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","15:00:00","MST","2021-11-15 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587431","UTAHDWQ_WQX-WRI211115-4920098-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1115-4-C/results/953587431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11085","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","15:00:00","MST","2021-11-15 22:00:00",NA,"0.095",95,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587434","UTAHDWQ_WQX-WRI211115-4920098-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1115-4-C/results/953587434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11086","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","16:30:00","MST","2021-11-16 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587473","UTAHDWQ_WQX-WRI211115-4920098-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1116-4-C/results/953587473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11087","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","16:30:00","MST","2021-11-16 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587476","UTAHDWQ_WQX-WRI211115-4920098-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1116-4-C/results/953587476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11088","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","15:00:00","MST","2021-11-17 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587484","UTAHDWQ_WQX-WRI211115-4920098-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1117-4-C/results/953587484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11089","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","15:00:00","MST","2021-11-17 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587487","UTAHDWQ_WQX-WRI211115-4920098-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1117-4-C/results/953587487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11090","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","15:00:00","MST","2021-12-13 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587526","UTAHDWQ_WQX-WRI211213-4920098-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920098-1213-4-C/results/953587526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11091","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","15:00:00","MST","2021-12-13 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587529","UTAHDWQ_WQX-WRI211213-4920098-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920098-1213-4-C/results/953587529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11092","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","16:30:00","MST","2021-12-14 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587568","UTAHDWQ_WQX-WRI211213-4920098-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920098-1214-4-C/results/953587568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11093","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","16:30:00","MST","2021-12-14 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587571","UTAHDWQ_WQX-WRI211213-4920098-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920098-1214-4-C/results/953587571/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11094","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","15:00:00","MST","2022-01-10 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587610","UTAHDWQ_WQX-WRI220110-4920098-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0110-4-C/results/953587610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11095","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","15:00:00","MST","2022-01-10 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587613","UTAHDWQ_WQX-WRI220110-4920098-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0110-4-C/results/953587613/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11096","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","15:00:00","MST","2022-01-11 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587652","UTAHDWQ_WQX-WRI220110-4920098-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0111-4-C/results/953587652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11097","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","15:00:00","MST","2022-01-11 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587655","UTAHDWQ_WQX-WRI220110-4920098-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0111-4-C/results/953587655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11098","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-12","15:00:00","MST","2022-01-12 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587663","UTAHDWQ_WQX-WRI220110-4920098-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0112-4-C/results/953587663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11099","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-12","15:00:00","MST","2022-01-12 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587666","UTAHDWQ_WQX-WRI220110-4920098-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0112-4-C/results/953587666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11100","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","15:00:00","MST","2022-02-07 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587705","UTAHDWQ_WQX-WRI220207-4920098-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0207-4-C/results/953587705/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11101","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","15:00:00","MST","2022-02-07 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587708","UTAHDWQ_WQX-WRI220207-4920098-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:47:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0207-4-C/results/953587708/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11102","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","15:00:00","MST","2022-02-08 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587747","UTAHDWQ_WQX-WRI220207-4920098-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0208-4-C/results/953587747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11103","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","15:00:00","MST","2022-02-08 22:00:00",NA,"0.313",313,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587750","UTAHDWQ_WQX-WRI220207-4920098-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0208-4-C/results/953587750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11104","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","12:00:00","MST","2022-02-09 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587789","UTAHDWQ_WQX-WRI220207-4920098-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0209-4-C/results/953587789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11105","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","12:00:00","MST","2022-02-09 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587792","UTAHDWQ_WQX-WRI220207-4920098-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0209-4-C/results/953587792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11106","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","15:00:00","MST","2022-03-07 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587816","UTAHDWQ_WQX-WRI220307-4920098-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0307-4-C/results/953587816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11107","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","15:00:00","MST","2022-03-07 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587819","UTAHDWQ_WQX-WRI220307-4920098-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0307-4-C/results/953587819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11108","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","15:00:00","MST","2022-03-08 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587858","UTAHDWQ_WQX-WRI220307-4920098-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0308-4-C/results/953587858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11109","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","15:00:00","MST","2022-03-08 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587861","UTAHDWQ_WQX-WRI220307-4920098-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0308-4-C/results/953587861/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11110","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","14:00:00","MST","2022-03-09 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587900","UTAHDWQ_WQX-WRI220307-4920098-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0309-4-C/results/953587900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11111","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","14:00:00","MST","2022-03-09 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587903","UTAHDWQ_WQX-WRI220307-4920098-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0309-4-C/results/953587903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11112","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","12:45:00","MST","2021-10-18 19:45:00",NA,"10.4",10400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587911","UTAHDWQ_WQX-WRI211018-4920110-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920110-1018-4-C/results/953587911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11113","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","12:45:00","MST","2021-10-18 19:45:00",NA,"10.7",10700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587914","UTAHDWQ_WQX-WRI211018-4920110-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920110-1018-4-C/results/953587914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11114","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:30:00","MST","2021-11-15 18:30:00",NA,"9.04",9040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587954","UTAHDWQ_WQX-WRI211115-4920110-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920110-1115-4-C/results/953587954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11115","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:30:00","MST","2021-11-15 18:30:00",NA,"8.89",8890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587957","UTAHDWQ_WQX-WRI211115-4920110-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920110-1115-4-C/results/953587957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11116","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","11:35:00","MST","2021-12-13 18:35:00",NA,"7.31",7310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953587997","UTAHDWQ_WQX-WRI211213-4920110-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920110-1213-4-C/results/953587997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11117","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","11:35:00","MST","2021-12-13 18:35:00",NA,"7.6",7600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588000","UTAHDWQ_WQX-WRI211213-4920110-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920110-1213-4-C/results/953588000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11118","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","12:20:00","MST","2022-01-10 19:20:00",NA,"10.4",10400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588040","UTAHDWQ_WQX-WRI220110-4920110-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920110-0110-4-C/results/953588040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11119","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","12:20:00","MST","2022-01-10 19:20:00",NA,"10.1",10100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588043","UTAHDWQ_WQX-WRI220110-4920110-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920110-0110-4-C/results/953588043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11120","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","11:40:00","MST","2022-02-07 18:40:00",NA,"11.2",11200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588051","UTAHDWQ_WQX-WRI220207-4920110-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920110-0207-4-C/results/953588051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11121","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","11:40:00","MST","2022-02-07 18:40:00",NA,"11.7",11700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588054","UTAHDWQ_WQX-WRI220207-4920110-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920110-0207-4-C/results/953588054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11122","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","11:05:00","MST","2022-03-07 18:05:00",NA,"13",13000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588094","UTAHDWQ_WQX-WRI220307-4920110-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920110-0307-4-C/results/953588094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11123","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","11:05:00","MST","2022-03-07 18:05:00",NA,"12.8",12800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588097","UTAHDWQ_WQX-WRI220307-4920110-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920110-0307-4-C/results/953588097/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11124","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","10:50:00","MST","2021-10-18 17:50:00",NA,"0.78",780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588137","UTAHDWQ_WQX-WRI211018-4920120-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920120-1018-4-C/results/953588137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11125","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","10:50:00","MST","2021-10-18 17:50:00",NA,"0.786",786,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588140","UTAHDWQ_WQX-WRI211018-4920120-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920120-1018-4-C/results/953588140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11126","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:10:00","MST","2021-11-15 17:10:00",NA,"0.647",647,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588180","UTAHDWQ_WQX-WRI211115-4920120-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920120-1115-4-C/results/953588180/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11127","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:10:00","MST","2021-11-15 17:10:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588183","UTAHDWQ_WQX-WRI211115-4920120-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920120-1115-4-C/results/953588183/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11128","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:10:00","MST","2021-12-13 17:10:00",NA,"0.809",809,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588223","UTAHDWQ_WQX-WRI211213-4920120-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920120-1213-4-C/results/953588223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11129","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","10:10:00","MST","2021-12-13 17:10:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588226","UTAHDWQ_WQX-WRI211213-4920120-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920120-1213-4-C/results/953588226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11130","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","10:40:00","MST","2022-01-10 17:40:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588266","UTAHDWQ_WQX-WRI220110-4920120-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920120-0110-4-C/results/953588266/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11131","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","10:40:00","MST","2022-01-10 17:40:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588269","UTAHDWQ_WQX-WRI220110-4920120-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920120-0110-4-C/results/953588269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11132","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","10:30:00","MST","2022-02-07 17:30:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588309","UTAHDWQ_WQX-WRI220207-4920120-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920120-0207-4-C/results/953588309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11133","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","10:30:00","MST","2022-02-07 17:30:00",NA,"2.48",2480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588312","UTAHDWQ_WQX-WRI220207-4920120-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920120-0207-4-C/results/953588312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11134","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","10:00:00","MST","2022-03-07 17:00:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588352","UTAHDWQ_WQX-WRI220307-4920120-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920120-0307-4-C/results/953588352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11135","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","10:00:00","MST","2022-03-07 17:00:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588355","UTAHDWQ_WQX-WRI220307-4920120-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920120-0307-4-C/results/953588355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11136","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-05","10:30:00","MST","2021-10-05 17:30:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588397","UTAHDWQ_WQX-LAKES211004-4920440-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920440-1005-2-C/results/953588397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11137","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-05","10:30:00","MST","2021-10-05 17:30:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588401","UTAHDWQ_WQX-LAKES211004-4920440-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920440-1005-2-C/results/953588401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11138","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-05","10:45:00","MST","2021-10-05 17:45:00",NA,"0.521",521,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588428","UTAHDWQ_WQX-LAKES211004-4920450-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920450-1005-2-C/results/953588428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11139","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-05","10:45:00","MST","2021-10-05 17:45:00",NA,"0.433",433,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588432","UTAHDWQ_WQX-LAKES211004-4920450-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920450-1005-2-C/results/953588432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11140","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-05","11:00:00","MST","2021-10-05 18:00:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588442","UTAHDWQ_WQX-LAKES211004-4920460-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920460-1005-2-C/results/953588442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11141","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-05","11:00:00","MST","2021-10-05 18:00:00",NA,"0.485",485,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588446","UTAHDWQ_WQX-LAKES211004-4920460-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920460-1005-2-C/results/953588446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11142","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-05","11:15:00","MST","2021-10-05 18:15:00",NA,"0.521",521,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588456","UTAHDWQ_WQX-LAKES211004-4920470-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920470-1005-2-C/results/953588456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11143","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-05","11:15:00","MST","2021-10-05 18:15:00",NA,"0.388",388,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588460","UTAHDWQ_WQX-LAKES211004-4920470-1005-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920470-1005-2-C/results/953588460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11144","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","08:50:00","MST","2021-10-18 15:50:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588467","UTAHDWQ_WQX-WRI211018-4920973-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920973-1018-4-C/results/953588467/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11145","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","08:50:00","MST","2021-10-18 15:50:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588470","UTAHDWQ_WQX-WRI211018-4920973-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920973-1018-4-C/results/953588470/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11146","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","09:00:00","MST","2021-11-15 16:00:00",NA,"0.287",287,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588493","UTAHDWQ_WQX-WRI211115-4920973-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920973-1115-4-C/results/953588493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11147","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","09:00:00","MST","2021-11-15 16:00:00",NA,"0.239",239,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588496","UTAHDWQ_WQX-WRI211115-4920973-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920973-1115-4-C/results/953588496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11148","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","09:00:00","MST","2021-12-13 16:00:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588503","UTAHDWQ_WQX-WRI211213-4920973-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920973-1213-4-C/results/953588503/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11149","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","09:00:00","MST","2021-12-13 16:00:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588506","UTAHDWQ_WQX-WRI211213-4920973-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920973-1213-4-C/results/953588506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11150","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","12:40:00","MST","2021-10-19 19:40:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588529","UTAHDWQ_WQX-WRI211018-4920990-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920990-1019-4-C/results/953588529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11151","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","12:40:00","MST","2021-10-19 19:40:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588532","UTAHDWQ_WQX-WRI211018-4920990-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920990-1019-4-C/results/953588532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11152","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:40:00","MST","2021-11-16 19:40:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588555","UTAHDWQ_WQX-WRI211115-4920990-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920990-1116-4-C/results/953588555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11153","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:40:00","MST","2021-11-16 19:40:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588558","UTAHDWQ_WQX-WRI211115-4920990-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920990-1116-4-C/results/953588558/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11154","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","12:00:00","MST","2021-12-14 19:00:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588565","UTAHDWQ_WQX-WRI211213-4920990-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920990-1214-4-C/results/953588565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11155","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","12:00:00","MST","2021-12-14 19:00:00",NA,"1.99",1990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588568","UTAHDWQ_WQX-WRI211213-4920990-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920990-1214-4-C/results/953588568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11156","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","10:55:00","MST","2022-01-11 17:55:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588591","UTAHDWQ_WQX-WRI220110-4920990-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920990-0111-4-C/results/953588591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11157","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","10:55:00","MST","2022-01-11 17:55:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588594","UTAHDWQ_WQX-WRI220110-4920990-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920990-0111-4-C/results/953588594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11158","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","12:00:00","MST","2022-02-08 19:00:00",NA,"1.75",1750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588601","UTAHDWQ_WQX-WRI220207-4920990-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920990-0208-4-C/results/953588601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11159","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","12:00:00","MST","2022-02-08 19:00:00",NA,"1.77",1770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588604","UTAHDWQ_WQX-WRI220207-4920990-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920990-0208-4-C/results/953588604/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11160","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","12:00:00","MST","2022-03-08 19:00:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588627","UTAHDWQ_WQX-WRI220307-4920990-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920990-0308-4-C/results/953588627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11161","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","12:00:00","MST","2022-03-08 19:00:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588630","UTAHDWQ_WQX-WRI220307-4920990-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920990-0308-4-C/results/953588630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11162","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","12:30:00","MST","2021-10-19 19:30:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588638","UTAHDWQ_WQX-WRI211018-4921000-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921000-1019-4-C/results/953588638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11163","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","12:30:00","MST","2021-10-19 19:30:00",NA,"1.77",1770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588641","UTAHDWQ_WQX-WRI211018-4921000-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921000-1019-4-C/results/953588641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11164","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:30:00","MST","2021-11-16 19:30:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588649","UTAHDWQ_WQX-WRI211115-4921000-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921000-1116-4-C/results/953588649/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11165","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:30:00","MST","2021-11-16 19:30:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588652","UTAHDWQ_WQX-WRI211115-4921000-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921000-1116-4-C/results/953588652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11166","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","11:55:00","MST","2021-12-14 18:55:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588660","UTAHDWQ_WQX-WRI211213-4921000-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921000-1214-4-C/results/953588660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11167","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","11:55:00","MST","2021-12-14 18:55:00",NA,"2.02",2020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588663","UTAHDWQ_WQX-WRI211213-4921000-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921000-1214-4-C/results/953588663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11168","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","10:50:00","MST","2022-01-11 17:50:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588687","UTAHDWQ_WQX-WRI220110-4921000-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921000-0111-4-C/results/953588687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11169","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","10:50:00","MST","2022-01-11 17:50:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588690","UTAHDWQ_WQX-WRI220110-4921000-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921000-0111-4-C/results/953588690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11170","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","11:50:00","MST","2022-02-08 18:50:00",NA,"1.72",1720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588698","UTAHDWQ_WQX-WRI220207-4921000-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921000-0208-4-C/results/953588698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11171","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","11:50:00","MST","2022-02-08 18:50:00",NA,"1.75",1750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588701","UTAHDWQ_WQX-WRI220207-4921000-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921000-0208-4-C/results/953588701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11172","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","11:50:00","MST","2022-03-08 18:50:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588725","UTAHDWQ_WQX-WRI220307-4921000-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921000-0308-4-C/results/953588725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11173","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","11:50:00","MST","2022-03-08 18:50:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588728","UTAHDWQ_WQX-WRI220307-4921000-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921000-0308-4-C/results/953588728/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11174","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","12:10:00","MST","2021-10-19 19:10:00",NA,"13.9",13900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588736","UTAHDWQ_WQX-WRI211018-4921010-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921010-1019-4-C/results/953588736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11175","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","12:10:00","MST","2021-10-19 19:10:00",NA,"13.3",13300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588739","UTAHDWQ_WQX-WRI211018-4921010-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921010-1019-4-C/results/953588739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11176","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:15:00","MST","2021-11-16 19:15:00",NA,"31.1",31100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588763","UTAHDWQ_WQX-WRI211115-4921010-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921010-1116-4-C/results/953588763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11177","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:15:00","MST","2021-11-16 19:15:00",NA,"31.6",31600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588766","UTAHDWQ_WQX-WRI211115-4921010-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921010-1116-4-C/results/953588766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11178","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","11:40:00","MST","2021-12-14 18:40:00",NA,"32.8",32800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588774","UTAHDWQ_WQX-WRI211213-4921010-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921010-1214-4-C/results/953588774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11179","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","11:40:00","MST","2021-12-14 18:40:00",NA,"30.7",30700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588777","UTAHDWQ_WQX-WRI211213-4921010-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921010-1214-4-C/results/953588777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11180","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","10:30:00","MST","2022-01-11 17:30:00",NA,"36.7",36700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588801","UTAHDWQ_WQX-WRI220110-4921010-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921010-0111-4-C/results/953588801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11181","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","10:30:00","MST","2022-01-11 17:30:00",NA,"35.3",35300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588804","UTAHDWQ_WQX-WRI220110-4921010-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921010-0111-4-C/results/953588804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11182","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","11:30:00","MST","2022-02-08 18:30:00",NA,"41.1",41100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588812","UTAHDWQ_WQX-WRI220207-4921010-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921010-0208-4-C/results/953588812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11183","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","11:30:00","MST","2022-02-08 18:30:00",NA,"39.6",39600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588815","UTAHDWQ_WQX-WRI220207-4921010-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921010-0208-4-C/results/953588815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11184","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","11:35:00","MST","2022-03-08 18:35:00",NA,"45.5",45500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588839","UTAHDWQ_WQX-WRI220307-4921010-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921010-0308-4-C/results/953588839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11185","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","11:35:00","MST","2022-03-08 18:35:00",NA,"42.1",42100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588842","UTAHDWQ_WQX-WRI220307-4921010-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921010-0308-4-C/results/953588842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11186","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","13:40:00","MST","2021-10-25 20:40:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588849","UTAHDWQ_WQX-WRI211018-4921113-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921113-1025-4-C/results/953588849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11187","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","13:40:00","MST","2021-10-25 20:40:00",NA,"0.181",181,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588852","UTAHDWQ_WQX-WRI211018-4921113-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921113-1025-4-C/results/953588852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11188","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:35:00","MST","2021-11-16 19:35:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588875","UTAHDWQ_WQX-WRI211115-4921113-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921113-1116-4-C/results/953588875/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11189","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:35:00","MST","2021-11-16 19:35:00",NA,"0.187",187,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588878","UTAHDWQ_WQX-WRI211115-4921113-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921113-1116-4-C/results/953588878/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11190","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","10:50:00","MST","2021-12-14 17:50:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588885","UTAHDWQ_WQX-WRI211213-4921113-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921113-1214-4-C/results/953588885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11191","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","10:50:00","MST","2021-12-14 17:50:00",NA,"0.575",575,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588888","UTAHDWQ_WQX-WRI211213-4921113-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921113-1214-4-C/results/953588888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11192","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","14:45:00","MST","2021-10-25 21:45:00",NA,"0.163",163,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588911","UTAHDWQ_WQX-WRI211018-4921124-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921124-1025-4-C/results/953588911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11193","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","14:45:00","MST","2021-10-25 21:45:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588914","UTAHDWQ_WQX-WRI211018-4921124-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921124-1025-4-C/results/953588914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11194","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","13:30:00","MST","2021-11-16 20:30:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588937","UTAHDWQ_WQX-WRI211115-4921124-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921124-1116-4-C/results/953588937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11195","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","13:30:00","MST","2021-11-16 20:30:00",NA,"0.16",160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588940","UTAHDWQ_WQX-WRI211115-4921124-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921124-1116-4-C/results/953588940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11196","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","10:45:00","MST","2021-12-14 17:45:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588948","UTAHDWQ_WQX-WRI211213-4921124-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921124-1214-4-C/results/953588948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11197","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","10:45:00","MST","2021-12-14 17:45:00",NA,"0.398",398,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588951","UTAHDWQ_WQX-WRI211213-4921124-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921124-1214-4-C/results/953588951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11198","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","13:00:00","MST","2021-10-19 20:00:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588975","UTAHDWQ_WQX-WRI211018-4921133-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921133-1019-4-C/results/953588975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11199","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","13:00:00","MST","2021-10-19 20:00:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953588978","UTAHDWQ_WQX-WRI211018-4921133-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:48:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921133-1019-4-C/results/953588978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11200","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","13:00:00","MST","2021-11-16 20:00:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589002","UTAHDWQ_WQX-WRI211115-4921133-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921133-1116-4-C/results/953589002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11201","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","13:00:00","MST","2021-11-16 20:00:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589005","UTAHDWQ_WQX-WRI211115-4921133-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921133-1116-4-C/results/953589005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11202","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","12:20:00","MST","2021-12-14 19:20:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589013","UTAHDWQ_WQX-WRI211213-4921133-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921133-1214-4-C/results/953589013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11203","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","12:20:00","MST","2021-12-14 19:20:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589016","UTAHDWQ_WQX-WRI211213-4921133-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921133-1214-4-C/results/953589016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11204","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","11:05:00","MST","2022-01-11 18:05:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589040","UTAHDWQ_WQX-WRI220110-4921133-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921133-0111-4-C/results/953589040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11205","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","11:05:00","MST","2022-01-11 18:05:00",NA,"2.08",2080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589043","UTAHDWQ_WQX-WRI220110-4921133-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921133-0111-4-C/results/953589043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11206","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","12:20:00","MST","2022-02-08 19:20:00",NA,"1.75",1750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589051","UTAHDWQ_WQX-WRI220207-4921133-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921133-0208-4-C/results/953589051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11207","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","12:20:00","MST","2022-02-08 19:20:00",NA,"1.85",1850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589054","UTAHDWQ_WQX-WRI220207-4921133-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921133-0208-4-C/results/953589054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11208","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","12:15:00","MST","2022-03-08 19:15:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589078","UTAHDWQ_WQX-WRI220307-4921133-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921133-0308-4-C/results/953589078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11209","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","12:15:00","MST","2022-03-08 19:15:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589081","UTAHDWQ_WQX-WRI220307-4921133-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921133-0308-4-C/results/953589081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11210","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","09:10:00","MST","2021-10-20 16:10:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589088","UTAHDWQ_WQX-WRI211018-4921143-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921143-1020-4-C/results/953589088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11211","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","09:10:00","MST","2021-10-20 16:10:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589091","UTAHDWQ_WQX-WRI211018-4921143-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921143-1020-4-C/results/953589091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11212","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","10:30:00","MST","2021-11-17 17:30:00",NA,"0.135",135,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589114","UTAHDWQ_WQX-WRI211115-4921143-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921143-1117-4-C/results/953589114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11213","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","10:30:00","MST","2021-11-17 17:30:00",NA,"0.256",256,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589117","UTAHDWQ_WQX-WRI211115-4921143-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921143-1117-4-C/results/953589117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11214","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","09:15:00","MST","2021-12-21 16:15:00",NA,"0.313",313,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589124","UTAHDWQ_WQX-WRI211213-4921143-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921143-1221-4-C/results/953589124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11215","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","09:15:00","MST","2021-12-21 16:15:00",NA,"0.088",88,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589127","UTAHDWQ_WQX-WRI211213-4921143-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921143-1221-4-C/results/953589127/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11216","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","13:20:00","MST","2022-01-11 20:20:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589150","UTAHDWQ_WQX-WRI220110-4921143-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921143-0111-4-C/results/953589150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11217","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","13:20:00","MST","2022-01-11 20:20:00",NA,"0.371",371,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589153","UTAHDWQ_WQX-WRI220110-4921143-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921143-0111-4-C/results/953589153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11218","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","10:00:00","MST","2022-03-09 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589160","UTAHDWQ_WQX-WRI220307-4921143-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921143-0309-4-C/results/953589160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11219","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","10:00:00","MST","2022-03-09 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589163","UTAHDWQ_WQX-WRI220307-4921143-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921143-0309-4-C/results/953589163/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11220","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","10:15:00","MST","2021-10-27 17:15:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589170","UTAHDWQ_WQX-WRI211018-4921149-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)","River/Stream",NA,"40.7544200000",40.75442,"-111.3821300000",-111.38213,"OK","16020101","UTAHDWQ_WQX-4921149",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7544200000","-111.3821300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921149-1027-4-C/results/953589170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11221","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","10:15:00","MST","2021-10-27 17:15:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589173","UTAHDWQ_WQX-WRI211018-4921149-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)","River/Stream",NA,"40.7544200000",40.75442,"-111.3821300000",-111.38213,"OK","16020101","UTAHDWQ_WQX-4921149",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7544200000","-111.3821300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921149-1027-4-C/results/953589173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11222","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","12:50:00","MST","2022-03-08 19:50:00",NA,"0.633",633,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589196","UTAHDWQ_WQX-WRI220307-4921149-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)","River/Stream",NA,"40.7544200000",40.75442,"-111.3821300000",-111.38213,"OK","16020101","UTAHDWQ_WQX-4921149",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7544200000","-111.3821300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921149-0308-4-C/results/953589196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11223","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","12:50:00","MST","2022-03-08 19:50:00",NA,"0.626",626,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589199","UTAHDWQ_WQX-WRI220307-4921149-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)","River/Stream",NA,"40.7544200000",40.75442,"-111.3821300000",-111.38213,"OK","16020101","UTAHDWQ_WQX-4921149",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7544200000","-111.3821300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921149-0308-4-C/results/953589199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11224","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","09:35:00","MST","2021-10-18 16:35:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589206","UTAHDWQ_WQX-WRI211018-4922700-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BUES POND OUTFLOW","River/Stream",NA,"41.1836500000",41.18365,"-111.9393100000",-111.93931,"OK","16020102","UTAHDWQ_WQX-4922700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1836500000","-111.9393100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922700-1018-4-C/results/953589206/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11225","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","09:35:00","MST","2021-10-18 16:35:00",NA,"0.385",385,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589209","UTAHDWQ_WQX-WRI211018-4922700-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BUES POND OUTFLOW","River/Stream",NA,"41.1836500000",41.18365,"-111.9393100000",-111.93931,"OK","16020102","UTAHDWQ_WQX-4922700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1836500000","-111.9393100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922700-1018-4-C/results/953589209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11226","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","09:45:00","MST","2021-11-15 16:45:00",NA,"0.464",464,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589232","UTAHDWQ_WQX-WRI211115-4922700-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BUES POND OUTFLOW","River/Stream",NA,"41.1836500000",41.18365,"-111.9393100000",-111.93931,"OK","16020102","UTAHDWQ_WQX-4922700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1836500000","-111.9393100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922700-1115-4-C/results/953589232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11227","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","09:45:00","MST","2021-11-15 16:45:00",NA,"0.742",742,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589235","UTAHDWQ_WQX-WRI211115-4922700-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BUES POND OUTFLOW","River/Stream",NA,"41.1836500000",41.18365,"-111.9393100000",-111.93931,"OK","16020102","UTAHDWQ_WQX-4922700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1836500000","-111.9393100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922700-1115-4-C/results/953589235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11228","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","09:40:00","MST","2021-12-13 16:40:00",NA,"0.318",318,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589242","UTAHDWQ_WQX-WRI211213-4922700-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BUES POND OUTFLOW","River/Stream",NA,"41.1836500000",41.18365,"-111.9393100000",-111.93931,"OK","16020102","UTAHDWQ_WQX-4922700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1836500000","-111.9393100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922700-1213-4-C/results/953589242/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11229","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","09:40:00","MST","2021-12-13 16:40:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589245","UTAHDWQ_WQX-WRI211213-4922700-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BUES POND OUTFLOW","River/Stream",NA,"41.1836500000",41.18365,"-111.9393100000",-111.93931,"OK","16020102","UTAHDWQ_WQX-4922700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1836500000","-111.9393100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922700-1213-4-C/results/953589245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11230","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","10:10:00","MST","2022-01-10 17:10:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589268","UTAHDWQ_WQX-WRI220110-4922700-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BUES POND OUTFLOW","River/Stream",NA,"41.1836500000",41.18365,"-111.9393100000",-111.93931,"OK","16020102","UTAHDWQ_WQX-4922700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1836500000","-111.9393100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922700-0110-4-C/results/953589268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11231","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","10:10:00","MST","2022-01-10 17:10:00",NA,"0.818",818,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589271","UTAHDWQ_WQX-WRI220110-4922700-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BUES POND OUTFLOW","River/Stream",NA,"41.1836500000",41.18365,"-111.9393100000",-111.93931,"OK","16020102","UTAHDWQ_WQX-4922700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1836500000","-111.9393100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922700-0110-4-C/results/953589271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11232","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","10:00:00","MST","2022-02-07 17:00:00",NA,"0.463",463,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589278","UTAHDWQ_WQX-WRI220207-4922700-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BUES POND OUTFLOW","River/Stream",NA,"41.1836500000",41.18365,"-111.9393100000",-111.93931,"OK","16020102","UTAHDWQ_WQX-4922700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1836500000","-111.9393100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922700-0207-4-C/results/953589278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11233","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","10:00:00","MST","2022-02-07 17:00:00",NA,"0.583",583,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589281","UTAHDWQ_WQX-WRI220207-4922700-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BUES POND OUTFLOW","River/Stream",NA,"41.1836500000",41.18365,"-111.9393100000",-111.93931,"OK","16020102","UTAHDWQ_WQX-4922700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1836500000","-111.9393100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922700-0207-4-C/results/953589281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11234","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","09:40:00","MST","2022-03-07 16:40:00",NA,"0.981",981,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589304","UTAHDWQ_WQX-WRI220307-4922736-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922736-0307-4-C/results/953589304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11235","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","09:40:00","MST","2022-03-07 16:40:00",NA,"0.969",969,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589307","UTAHDWQ_WQX-WRI220307-4922736-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922736-0307-4-C/results/953589307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11236","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","10:15:00","MST","2021-10-18 17:15:00",NA,"0.264",264,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589314","UTAHDWQ_WQX-WRI211018-4922744-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922744-1018-4-C/results/953589314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11237","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","10:15:00","MST","2021-10-18 17:15:00",NA,"0.379",379,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589317","UTAHDWQ_WQX-WRI211018-4922744-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922744-1018-4-C/results/953589317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11238","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","15:00:00","MST","2021-11-17 22:00:00",NA,"0.373",373,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589340","UTAHDWQ_WQX-WRI211115-4922744-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922744-1117-4-C/results/953589340/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11239","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","15:00:00","MST","2021-11-17 22:00:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589343","UTAHDWQ_WQX-WRI211115-4922744-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922744-1117-4-C/results/953589343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11240","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","09:10:00","MST","2021-10-18 16:10:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589350","UTAHDWQ_WQX-WRI211018-4922756-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922756-1018-4-C/results/953589350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11241","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","09:10:00","MST","2021-10-18 16:10:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589353","UTAHDWQ_WQX-WRI211018-4922756-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922756-1018-4-C/results/953589353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11242","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","09:30:00","MST","2021-11-15 16:30:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589376","UTAHDWQ_WQX-WRI211115-4922756-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922756-1115-4-C/results/953589376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11243","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","09:30:00","MST","2021-11-15 16:30:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589379","UTAHDWQ_WQX-WRI211115-4922756-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922756-1115-4-C/results/953589379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11244","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","09:25:00","MST","2021-12-13 16:25:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589386","UTAHDWQ_WQX-WRI211213-4922756-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922756-1213-4-C/results/953589386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11245","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","09:25:00","MST","2021-12-13 16:25:00",NA,"2.08",2080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589389","UTAHDWQ_WQX-WRI211213-4922756-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922756-1213-4-C/results/953589389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11246","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","09:35:00","MST","2022-01-10 16:35:00",NA,"1.92",1920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589412","UTAHDWQ_WQX-WRI220110-4922756-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922756-0110-4-C/results/953589412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11247","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","09:35:00","MST","2022-01-10 16:35:00",NA,"2.11",2110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589415","UTAHDWQ_WQX-WRI220110-4922756-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922756-0110-4-C/results/953589415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11248","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","09:40:00","MST","2022-02-07 16:40:00",NA,"1.88",1880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589422","UTAHDWQ_WQX-WRI220207-4922756-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922756-0207-4-C/results/953589422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11249","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","09:40:00","MST","2022-02-07 16:40:00",NA,"2.88",2880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589425","UTAHDWQ_WQX-WRI220207-4922756-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922756-0207-4-C/results/953589425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11250","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","09:25:00","MST","2022-03-07 16:25:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589448","UTAHDWQ_WQX-WRI220307-4922756-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922756-0307-4-C/results/953589448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11251","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","09:25:00","MST","2022-03-07 16:25:00",NA,"1.84",1840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589451","UTAHDWQ_WQX-WRI220307-4922756-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922756-0307-4-C/results/953589451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11252","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","09:55:00","MST","2022-01-10 16:55:00",NA,"1.71",1710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589458","UTAHDWQ_WQX-WRI220110-4922760-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922760-0110-4-C/results/953589458/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11253","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","09:55:00","MST","2022-01-10 16:55:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589461","UTAHDWQ_WQX-WRI220110-4922760-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922760-0110-4-C/results/953589461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11254","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","09:10:00","MST","2022-03-07 16:10:00",NA,"0.836",836,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589468","UTAHDWQ_WQX-WRI220307-4922760-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922760-0307-4-C/results/953589468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11255","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","09:10:00","MST","2022-03-07 16:10:00",NA,"0.918",918,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589471","UTAHDWQ_WQX-WRI220307-4922760-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922760-0307-4-C/results/953589471/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11256","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","13:15:00","MST","2021-10-18 20:15:00",NA,"0.81",810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589478","UTAHDWQ_WQX-WRI211018-4922990-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922990-1018-4-C/results/953589478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11257","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","13:15:00","MST","2021-10-18 20:15:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589481","UTAHDWQ_WQX-WRI211018-4922990-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922990-1018-4-C/results/953589481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11258","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:00:00","MST","2021-11-15 19:00:00",NA,"0.857",857,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589504","UTAHDWQ_WQX-WRI211115-4922990-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922990-1115-4-C/results/953589504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11259","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:00:00","MST","2021-11-15 19:00:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589507","UTAHDWQ_WQX-WRI211115-4922990-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922990-1115-4-C/results/953589507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11260","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","12:05:00","MST","2021-12-13 19:05:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589514","UTAHDWQ_WQX-WRI211213-4922990-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922990-1213-4-C/results/953589514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11261","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","12:05:00","MST","2021-12-13 19:05:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589517","UTAHDWQ_WQX-WRI211213-4922990-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922990-1213-4-C/results/953589517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11262","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","13:05:00","MST","2022-01-10 20:05:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589540","UTAHDWQ_WQX-WRI220110-4922990-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922990-0110-4-C/results/953589540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11263","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","13:05:00","MST","2022-01-10 20:05:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589543","UTAHDWQ_WQX-WRI220110-4922990-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922990-0110-4-C/results/953589543/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11264","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","13:00:00","MST","2022-02-07 20:00:00",NA,"1.54",1540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589550","UTAHDWQ_WQX-WRI220207-4922990-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922990-0207-4-C/results/953589550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11265","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","13:00:00","MST","2022-02-07 20:00:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589553","UTAHDWQ_WQX-WRI220207-4922990-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922990-0207-4-C/results/953589553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11266","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","11:35:00","MST","2022-03-07 18:35:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589576","UTAHDWQ_WQX-WRI220307-4922990-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922990-0307-4-C/results/953589576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11267","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","11:35:00","MST","2022-03-07 18:35:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589579","UTAHDWQ_WQX-WRI220307-4922990-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922990-0307-4-C/results/953589579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11268","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","13:30:00","MST","2021-10-18 20:30:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589586","UTAHDWQ_WQX-WRI211018-4923010-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923010-1018-4-C/results/953589586/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11269","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","13:30:00","MST","2021-10-18 20:30:00",NA,"0.485",485,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589589","UTAHDWQ_WQX-WRI211018-4923010-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923010-1018-4-C/results/953589589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11270","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:30:00","MST","2021-11-15 19:30:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589612","UTAHDWQ_WQX-WRI211115-4923010-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923010-1115-4-C/results/953589612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11271","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:30:00","MST","2021-11-15 19:30:00",NA,"0.281",281,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589615","UTAHDWQ_WQX-WRI211115-4923010-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923010-1115-4-C/results/953589615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11272","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","12:20:00","MST","2021-12-13 19:20:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589622","UTAHDWQ_WQX-WRI211213-4923010-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923010-1213-4-C/results/953589622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11273","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","12:20:00","MST","2021-12-13 19:20:00",NA,"0.31",310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589625","UTAHDWQ_WQX-WRI211213-4923010-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923010-1213-4-C/results/953589625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11274","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","13:15:00","MST","2022-01-10 20:15:00",NA,"0.586",586,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589648","UTAHDWQ_WQX-WRI220110-4923010-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923010-0110-4-C/results/953589648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11275","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","13:15:00","MST","2022-01-10 20:15:00",NA,"0.818",818,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589651","UTAHDWQ_WQX-WRI220110-4923010-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923010-0110-4-C/results/953589651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11276","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","13:30:00","MST","2022-02-07 20:30:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589658","UTAHDWQ_WQX-WRI220207-4923010-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923010-0207-4-C/results/953589658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11277","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","13:30:00","MST","2022-02-07 20:30:00",NA,"0.536",536,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589661","UTAHDWQ_WQX-WRI220207-4923010-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923010-0207-4-C/results/953589661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11278","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","11:55:00","MST","2022-03-07 18:55:00",NA,"0.34",340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589684","UTAHDWQ_WQX-WRI220307-4923010-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923010-0307-4-C/results/953589684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11279","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","11:55:00","MST","2022-03-07 18:55:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589687","UTAHDWQ_WQX-WRI220307-4923010-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923010-0307-4-C/results/953589687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11280","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","14:00:00","MST","2021-10-18 21:00:00",NA,"0.276",276,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589694","UTAHDWQ_WQX-WRI211018-4923177-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923177-1018-4-C/results/953589694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11281","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","14:00:00","MST","2021-10-18 21:00:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589697","UTAHDWQ_WQX-WRI211018-4923177-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923177-1018-4-C/results/953589697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11282","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:45:00","MST","2021-11-15 19:45:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589720","UTAHDWQ_WQX-WRI211115-4923177-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923177-1115-4-C/results/953589720/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11283","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:45:00","MST","2021-11-15 19:45:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589723","UTAHDWQ_WQX-WRI211115-4923177-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923177-1115-4-C/results/953589723/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11284","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","12:35:00","MST","2021-12-13 19:35:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589730","UTAHDWQ_WQX-WRI211213-4923177-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923177-1213-4-C/results/953589730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11285","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","12:35:00","MST","2021-12-13 19:35:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589733","UTAHDWQ_WQX-WRI211213-4923177-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923177-1213-4-C/results/953589733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11286","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","13:50:00","MST","2022-01-10 20:50:00",NA,"0.428",428,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589756","UTAHDWQ_WQX-WRI220110-4923177-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923177-0110-4-C/results/953589756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11287","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","13:50:00","MST","2022-01-10 20:50:00",NA,"0.748",748,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589759","UTAHDWQ_WQX-WRI220110-4923177-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923177-0110-4-C/results/953589759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11288","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","13:40:00","MST","2022-02-07 20:40:00",NA,"0.507",507,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589766","UTAHDWQ_WQX-WRI220207-4923177-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923177-0207-4-C/results/953589766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11289","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","13:40:00","MST","2022-02-07 20:40:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589769","UTAHDWQ_WQX-WRI220207-4923177-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923177-0207-4-C/results/953589769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11290","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","12:15:00","MST","2022-03-07 19:15:00",NA,"0.388",388,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589792","UTAHDWQ_WQX-WRI220307-4923177-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923177-0307-4-C/results/953589792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11291","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","12:15:00","MST","2022-03-07 19:15:00",NA,"0.583",583,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589795","UTAHDWQ_WQX-WRI220307-4923177-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923177-0307-4-C/results/953589795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11292","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","14:15:00","MST","2021-10-18 21:15:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589802","UTAHDWQ_WQX-WRI211018-4923200-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923200-1018-4-C/results/953589802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11293","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","14:15:00","MST","2021-10-18 21:15:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589805","UTAHDWQ_WQX-WRI211018-4923200-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923200-1018-4-C/results/953589805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11294","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:00:00","MST","2021-11-15 20:00:00",NA,"0.289",289,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589828","UTAHDWQ_WQX-WRI211115-4923200-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923200-1115-4-C/results/953589828/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11295","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:00:00","MST","2021-11-15 20:00:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589831","UTAHDWQ_WQX-WRI211115-4923200-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923200-1115-4-C/results/953589831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11296","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","08:55:00","MST","2021-12-14 15:55:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589838","UTAHDWQ_WQX-WRI211213-4923200-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923200-1214-4-C/results/953589838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11297","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","08:55:00","MST","2021-12-14 15:55:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589841","UTAHDWQ_WQX-WRI211213-4923200-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923200-1214-4-C/results/953589841/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11298","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","14:15:00","MST","2022-01-10 21:15:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589864","UTAHDWQ_WQX-WRI220110-4923200-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923200-0110-4-C/results/953589864/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11299","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","14:15:00","MST","2022-01-10 21:15:00",NA,"0.438",438,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589867","UTAHDWQ_WQX-WRI220110-4923200-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923200-0110-4-C/results/953589867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11300","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","09:20:00","MST","2022-02-08 16:20:00",NA,"0.617",617,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589874","UTAHDWQ_WQX-WRI220207-4923200-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923200-0208-4-C/results/953589874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11301","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","09:20:00","MST","2022-02-08 16:20:00",NA,"0.78",780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589877","UTAHDWQ_WQX-WRI220207-4923200-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923200-0208-4-C/results/953589877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11302","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","12:30:00","MST","2022-03-07 19:30:00",NA,"0.42",420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589900","UTAHDWQ_WQX-WRI220307-4923200-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923200-0307-4-C/results/953589900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11303","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","12:30:00","MST","2022-03-07 19:30:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589903","UTAHDWQ_WQX-WRI220307-4923200-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923200-0307-4-C/results/953589903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11304","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","14:20:00","MST","2021-10-18 21:20:00",NA,"0.318",318,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589910","UTAHDWQ_WQX-WRI211018-4923205-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923205-1018-4-C/results/953589910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11305","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","14:20:00","MST","2021-10-18 21:20:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589913","UTAHDWQ_WQX-WRI211018-4923205-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923205-1018-4-C/results/953589913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11306","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:10:00","MST","2021-11-15 20:10:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589936","UTAHDWQ_WQX-WRI211115-4923205-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923205-1115-4-C/results/953589936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11307","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:10:00","MST","2021-11-15 20:10:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589939","UTAHDWQ_WQX-WRI211115-4923205-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923205-1115-4-C/results/953589939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11308","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","09:00:00","MST","2021-12-14 16:00:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589946","UTAHDWQ_WQX-WRI211213-4923205-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923205-1214-4-C/results/953589946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11309","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","09:00:00","MST","2021-12-14 16:00:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589949","UTAHDWQ_WQX-WRI211213-4923205-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923205-1214-4-C/results/953589949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11310","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","14:20:00","MST","2022-01-10 21:20:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589972","UTAHDWQ_WQX-WRI220110-4923205-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923205-0110-4-C/results/953589972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11311","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","14:20:00","MST","2022-01-10 21:20:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589975","UTAHDWQ_WQX-WRI220110-4923205-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923205-0110-4-C/results/953589975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11312","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","09:30:00","MST","2022-02-08 16:30:00",NA,"0.883",883,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589982","UTAHDWQ_WQX-WRI220207-4923205-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923205-0208-4-C/results/953589982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11313","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","09:30:00","MST","2022-02-08 16:30:00",NA,"0.783",783,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953589985","UTAHDWQ_WQX-WRI220207-4923205-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923205-0208-4-C/results/953589985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11314","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","12:45:00","MST","2022-03-07 19:45:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590008","UTAHDWQ_WQX-WRI220307-4923205-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923205-0307-4-C/results/953590008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11315","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","12:45:00","MST","2022-03-07 19:45:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590011","UTAHDWQ_WQX-WRI220307-4923205-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923205-0307-4-C/results/953590011/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11316","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","09:15:00","MST","2021-10-19 16:15:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590018","UTAHDWQ_WQX-WRI211018-4924590-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924590-1019-4-C/results/953590018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11317","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","09:15:00","MST","2021-10-19 16:15:00",NA,"0.427",427,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590021","UTAHDWQ_WQX-WRI211018-4924590-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924590-1019-4-C/results/953590021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11318","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","10:00:00","MST","2021-11-16 17:00:00",NA,"0.264",264,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590044","UTAHDWQ_WQX-WRI211115-4924590-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924590-1116-4-C/results/953590044/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11319","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","10:00:00","MST","2021-11-16 17:00:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590047","UTAHDWQ_WQX-WRI211115-4924590-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924590-1116-4-C/results/953590047/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11320","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","09:15:00","MST","2021-12-14 16:15:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590054","UTAHDWQ_WQX-WRI211213-4924590-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924590-1214-4-C/results/953590054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11321","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","09:15:00","MST","2021-12-14 16:15:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590057","UTAHDWQ_WQX-WRI211213-4924590-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924590-1214-4-C/results/953590057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11322","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","09:10:00","MST","2022-01-11 16:10:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590080","UTAHDWQ_WQX-WRI220110-4924590-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4924590-0111-4-C/results/953590080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11323","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","09:10:00","MST","2022-01-11 16:10:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590083","UTAHDWQ_WQX-WRI220110-4924590-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4924590-0111-4-C/results/953590083/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11324","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","09:30:00","MST","2022-03-08 16:30:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590090","UTAHDWQ_WQX-WRI220307-4924590-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924590-0308-4-C/results/953590090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11325","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","09:30:00","MST","2022-03-08 16:30:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590093","UTAHDWQ_WQX-WRI220307-4924590-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924590-0308-4-C/results/953590093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11326","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","09:50:00","MST","2022-02-08 16:50:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590100","UTAHDWQ_WQX-WRI220207-4924650-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N Fk Ogden R at U162 Xing","River/Stream",NA,"41.3135000000",41.3135,"-111.8409300000",-111.84093,"OK","16020102","UTAHDWQ_WQX-4924650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3135000000","-111.8409300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924650-0208-4-C/results/953590100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11327","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","09:50:00","MST","2022-02-08 16:50:00",NA,"1.68",1680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590103","UTAHDWQ_WQX-WRI220207-4924650-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N Fk Ogden R at U162 Xing","River/Stream",NA,"41.3135000000",41.3135,"-111.8409300000",-111.84093,"OK","16020102","UTAHDWQ_WQX-4924650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3135000000","-111.8409300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924650-0208-4-C/results/953590103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11328","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","10:30:00","MST","2021-11-16 17:30:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590126","UTAHDWQ_WQX-WRI211115-4924660-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924660-1116-4-C/results/953590126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11329","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","10:30:00","MST","2021-11-16 17:30:00",NA,"0.098",98,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590129","UTAHDWQ_WQX-WRI211115-4924660-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924660-1116-4-C/results/953590129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11330","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","09:40:00","MST","2021-12-14 16:40:00",NA,"0.105",105,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590136","UTAHDWQ_WQX-WRI211213-4924660-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924660-1214-4-C/results/953590136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11331","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","09:40:00","MST","2021-12-14 16:40:00",NA,"0.922",922,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590139","UTAHDWQ_WQX-WRI211213-4924660-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924660-1214-4-C/results/953590139/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11332","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","10:30:00","MST","2022-03-08 17:30:00",NA,"0.216",216,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590162","UTAHDWQ_WQX-WRI220307-4924660-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924660-0308-4-C/results/953590162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11333","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","10:30:00","MST","2022-03-08 17:30:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590165","UTAHDWQ_WQX-WRI220307-4924660-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924660-0308-4-C/results/953590165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11334","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","11:45:00","MST","2021-10-19 18:45:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590172","UTAHDWQ_WQX-WRI211018-4924670-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924670-1019-4-C/results/953590172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11335","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","11:45:00","MST","2021-10-19 18:45:00",NA,"0.363",363,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590175","UTAHDWQ_WQX-WRI211018-4924670-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924670-1019-4-C/results/953590175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11336","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","11:55:00","MST","2021-11-16 18:55:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590198","UTAHDWQ_WQX-WRI211115-4924670-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924670-1116-4-C/results/953590198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11337","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","11:55:00","MST","2021-11-16 18:55:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590201","UTAHDWQ_WQX-WRI211115-4924670-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924670-1116-4-C/results/953590201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11338","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","11:15:00","MST","2021-12-14 18:15:00",NA,"0.741",741,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590208","UTAHDWQ_WQX-WRI211213-4924670-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924670-1214-4-C/results/953590208/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11339","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","11:15:00","MST","2021-12-14 18:15:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590211","UTAHDWQ_WQX-WRI211213-4924670-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:49:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924670-1214-4-C/results/953590211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11340","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","11:10:00","MST","2022-02-08 18:10:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590234","UTAHDWQ_WQX-WRI220207-4924670-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924670-0208-4-C/results/953590234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11341","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","11:10:00","MST","2022-02-08 18:10:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590237","UTAHDWQ_WQX-WRI220207-4924670-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924670-0208-4-C/results/953590237/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11342","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","11:05:00","MST","2022-03-08 18:05:00",NA,"0.766",766,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590260","UTAHDWQ_WQX-WRI220307-4924670-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924670-0308-4-C/results/953590260/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11343","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","11:05:00","MST","2022-03-08 18:05:00",NA,"0.738",738,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590263","UTAHDWQ_WQX-WRI220307-4924670-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924670-0308-4-C/results/953590263/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11344","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","11:30:00","MST","2021-10-19 18:30:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590270","UTAHDWQ_WQX-WRI211018-4924680-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924680-1019-4-C/results/953590270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11345","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","11:30:00","MST","2021-10-19 18:30:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590273","UTAHDWQ_WQX-WRI211018-4924680-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924680-1019-4-C/results/953590273/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11346","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","11:45:00","MST","2021-11-16 18:45:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590296","UTAHDWQ_WQX-WRI211115-4924680-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924680-1116-4-C/results/953590296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11347","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","11:45:00","MST","2021-11-16 18:45:00",NA,"0.393",393,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590299","UTAHDWQ_WQX-WRI211115-4924680-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924680-1116-4-C/results/953590299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11348","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","11:00:00","MST","2021-12-14 18:00:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590306","UTAHDWQ_WQX-WRI211213-4924680-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924680-1214-4-C/results/953590306/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11349","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","11:00:00","MST","2021-12-14 18:00:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590309","UTAHDWQ_WQX-WRI211213-4924680-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924680-1214-4-C/results/953590309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11350","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","11:00:00","MST","2022-02-08 18:00:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590332","UTAHDWQ_WQX-WRI220207-4924680-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924680-0208-4-C/results/953590332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11351","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","11:00:00","MST","2022-02-08 18:00:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590335","UTAHDWQ_WQX-WRI220207-4924680-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924680-0208-4-C/results/953590335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11352","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","10:50:00","MST","2022-03-08 17:50:00",NA,"0.469",469,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590358","UTAHDWQ_WQX-WRI220307-4924680-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924680-0308-4-C/results/953590358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11353","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","10:50:00","MST","2022-03-08 17:50:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590361","UTAHDWQ_WQX-WRI220307-4924680-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924680-0308-4-C/results/953590361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11354","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","10:10:00","MST","2021-10-19 17:10:00",NA,"0.218",218,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590368","UTAHDWQ_WQX-WRI211018-4924690-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924690-1019-4-C/results/953590368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11355","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","10:10:00","MST","2021-10-19 17:10:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590371","UTAHDWQ_WQX-WRI211018-4924690-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924690-1019-4-C/results/953590371/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11356","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","11:00:00","MST","2021-11-16 18:00:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590394","UTAHDWQ_WQX-WRI211115-4924690-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924690-1116-4-C/results/953590394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11357","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","11:00:00","MST","2021-11-16 18:00:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590397","UTAHDWQ_WQX-WRI211115-4924690-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924690-1116-4-C/results/953590397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11358","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","10:00:00","MST","2021-12-14 17:00:00",NA,"0.172",172,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590404","UTAHDWQ_WQX-WRI211213-4924690-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924690-1214-4-C/results/953590404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11359","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","10:00:00","MST","2021-12-14 17:00:00",NA,"0.221",221,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590407","UTAHDWQ_WQX-WRI211213-4924690-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924690-1214-4-C/results/953590407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11360","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","10:20:00","MST","2022-02-08 17:20:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590430","UTAHDWQ_WQX-WRI220207-4924690-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924690-0208-4-C/results/953590430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11361","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","10:20:00","MST","2022-02-08 17:20:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590433","UTAHDWQ_WQX-WRI220207-4924690-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924690-0208-4-C/results/953590433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11362","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","10:40:00","MST","2021-10-19 17:40:00",NA,"0.173",173,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590456","UTAHDWQ_WQX-WRI211018-4924700-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924700-1019-4-C/results/953590456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11363","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","10:40:00","MST","2021-10-19 17:40:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590459","UTAHDWQ_WQX-WRI211018-4924700-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924700-1019-4-C/results/953590459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11364","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","10:30:00","MST","2021-12-14 17:30:00",NA,"0.239",239,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590482","UTAHDWQ_WQX-WRI211213-4924700-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924700-1214-4-C/results/953590482/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11365","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","10:30:00","MST","2021-12-14 17:30:00",NA,"0.983",983,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590485","UTAHDWQ_WQX-WRI211213-4924700-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924700-1214-4-C/results/953590485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11366","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","10:30:00","MST","2021-10-19 17:30:00",NA,"0.189",189,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590508","UTAHDWQ_WQX-WRI211018-4924710-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924710-1019-4-C/results/953590508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11367","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","10:30:00","MST","2021-10-19 17:30:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590511","UTAHDWQ_WQX-WRI211018-4924710-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924710-1019-4-C/results/953590511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11368","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","11:10:00","MST","2021-11-16 18:10:00",NA,"0.117",117,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590534","UTAHDWQ_WQX-WRI211115-4924710-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924710-1116-4-C/results/953590534/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11369","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","11:10:00","MST","2021-11-16 18:10:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590537","UTAHDWQ_WQX-WRI211115-4924710-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924710-1116-4-C/results/953590537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11370","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","10:15:00","MST","2021-12-14 17:15:00",NA,"0.132",132,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590544","UTAHDWQ_WQX-WRI211213-4924710-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924710-1214-4-C/results/953590544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11371","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","10:15:00","MST","2021-12-14 17:15:00",NA,"0.112",112,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590547","UTAHDWQ_WQX-WRI211213-4924710-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924710-1214-4-C/results/953590547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11372","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","10:30:00","MST","2022-02-08 17:30:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590570","UTAHDWQ_WQX-WRI220207-4924710-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924710-0208-4-C/results/953590570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11373","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","10:30:00","MST","2022-02-08 17:30:00",NA,"0.256",256,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590573","UTAHDWQ_WQX-WRI220207-4924710-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924710-0208-4-C/results/953590573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11374","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","14:45:00","MST","2021-10-19 21:45:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590596","UTAHDWQ_WQX-WRI211018-4924960-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924960-1019-4-C/results/953590596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11375","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","14:45:00","MST","2021-10-19 21:45:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590599","UTAHDWQ_WQX-WRI211018-4924960-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924960-1019-4-C/results/953590599/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11376","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","14:10:00","MST","2021-11-16 21:10:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590622","UTAHDWQ_WQX-WRI211115-4924960-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924960-1116-4-C/results/953590622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11377","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","14:10:00","MST","2021-11-16 21:10:00",NA,"0.155",155,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590625","UTAHDWQ_WQX-WRI211115-4924960-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924960-1116-4-C/results/953590625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11378","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:45:00","MST","2021-12-14 20:45:00",NA,"0.151",151,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590632","UTAHDWQ_WQX-WRI211213-4924960-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924960-1214-4-C/results/953590632/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11379","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:45:00","MST","2021-12-14 20:45:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590635","UTAHDWQ_WQX-WRI211213-4924960-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924960-1214-4-C/results/953590635/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11380","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","14:50:00","MST","2021-10-19 21:50:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590658","UTAHDWQ_WQX-WRI211018-4924961-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924961-1019-4-C/results/953590658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11381","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","14:50:00","MST","2021-10-19 21:50:00",NA,"0.244",244,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590661","UTAHDWQ_WQX-WRI211018-4924961-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924961-1019-4-C/results/953590661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11382","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","14:20:00","MST","2021-11-16 21:20:00",NA,"0.125",125,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590684","UTAHDWQ_WQX-WRI211115-4924961-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924961-1116-4-C/results/953590684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11383","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","14:20:00","MST","2021-11-16 21:20:00",NA,"0.149",149,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590687","UTAHDWQ_WQX-WRI211115-4924961-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924961-1116-4-C/results/953590687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11384","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:50:00","MST","2021-12-14 20:50:00",NA,"0.141",141,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590694","UTAHDWQ_WQX-WRI211213-4924961-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924961-1214-4-C/results/953590694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11385","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:50:00","MST","2021-12-14 20:50:00",NA,"0.115",115,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590697","UTAHDWQ_WQX-WRI211213-4924961-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924961-1214-4-C/results/953590697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11386","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","09:30:00","MST","2021-10-20 16:30:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590720","UTAHDWQ_WQX-WRI211018-4925039-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925039-1020-4-C/results/953590720/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11387","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","09:30:00","MST","2021-10-20 16:30:00",NA,"0.195",195,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590723","UTAHDWQ_WQX-WRI211018-4925039-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925039-1020-4-C/results/953590723/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11388","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","10:40:00","MST","2021-11-17 17:40:00",NA,"0.091",91,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590746","UTAHDWQ_WQX-WRI211115-4925039-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925039-1117-4-C/results/953590746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11389","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","10:40:00","MST","2021-11-17 17:40:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590749","UTAHDWQ_WQX-WRI211115-4925039-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925039-1117-4-C/results/953590749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11390","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","13:35:00","MST","2022-01-11 20:35:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590756","UTAHDWQ_WQX-WRI220110-4925039-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925039-0111-4-C/results/953590756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11391","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","13:35:00","MST","2022-01-11 20:35:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590759","UTAHDWQ_WQX-WRI220110-4925039-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925039-0111-4-C/results/953590759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11392","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","10:10:00","MST","2022-03-09 17:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590766","UTAHDWQ_WQX-WRI220307-4925039-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925039-0309-4-C/results/953590766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11393","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","10:10:00","MST","2022-03-09 17:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590769","UTAHDWQ_WQX-WRI220307-4925039-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925039-0309-4-C/results/953590769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11394","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","10:00:00","MST","2021-10-20 17:00:00",NA,"0.572",572,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590776","UTAHDWQ_WQX-WRI211018-4925150-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925150-1020-4-C/results/953590776/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11395","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:00:00","MST","2021-10-20 17:00:00",NA,"0.59",590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590779","UTAHDWQ_WQX-WRI211018-4925150-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925150-1020-4-C/results/953590779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11396","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","11:30:00","MST","2021-11-17 18:30:00",NA,"0.604",604,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590802","UTAHDWQ_WQX-WRI211115-4925150-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925150-1117-4-C/results/953590802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11397","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","11:30:00","MST","2021-11-17 18:30:00",NA,"0.664",664,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590805","UTAHDWQ_WQX-WRI211115-4925150-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925150-1117-4-C/results/953590805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11398","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","10:40:00","MST","2021-10-20 17:40:00",NA,"0.999",999,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590812","UTAHDWQ_WQX-WRI211018-4925195-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925195-1020-4-C/results/953590812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11399","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:40:00","MST","2021-10-20 17:40:00",NA,"0.962",962,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590815","UTAHDWQ_WQX-WRI211018-4925195-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925195-1020-4-C/results/953590815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11400","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","11:45:00","MST","2021-11-17 18:45:00",NA,"0.796",796,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590838","UTAHDWQ_WQX-WRI211115-4925195-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925195-1117-4-C/results/953590838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11401","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","11:45:00","MST","2021-11-17 18:45:00",NA,"0.792",792,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590841","UTAHDWQ_WQX-WRI211115-4925195-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925195-1117-4-C/results/953590841/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11402","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","09:45:00","MST","2021-12-21 16:45:00",NA,"2.03",2030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590848","UTAHDWQ_WQX-WRI211213-4925195-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925195-1221-4-C/results/953590848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11403","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","09:45:00","MST","2021-12-21 16:45:00",NA,"2.03",2030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590851","UTAHDWQ_WQX-WRI211213-4925195-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925195-1221-4-C/results/953590851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11404","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","14:00:00","MST","2022-01-11 21:00:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590874","UTAHDWQ_WQX-WRI220110-4925195-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925195-0111-4-C/results/953590874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11405","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","14:00:00","MST","2022-01-11 21:00:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590877","UTAHDWQ_WQX-WRI220110-4925195-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925195-0111-4-C/results/953590877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11406","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","10:20:00","MST","2022-02-09 17:20:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590884","UTAHDWQ_WQX-WRI220207-4925195-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925195-0209-4-C/results/953590884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11407","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","10:20:00","MST","2022-02-09 17:20:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590887","UTAHDWQ_WQX-WRI220207-4925195-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925195-0209-4-C/results/953590887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11408","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","10:40:00","MST","2022-03-09 17:40:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590910","UTAHDWQ_WQX-WRI220307-4925195-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925195-0309-4-C/results/953590910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11409","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","10:40:00","MST","2022-03-09 17:40:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590913","UTAHDWQ_WQX-WRI220307-4925195-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925195-0309-4-C/results/953590913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11410","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","09:00:00","MST","2021-10-26 16:00:00",NA,"0.842",842,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590920","UTAHDWQ_WQX-WRI211018-4925218-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925218-1026-4-C/results/953590920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11411","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","09:00:00","MST","2021-10-26 16:00:00",NA,"0.898",898,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590923","UTAHDWQ_WQX-WRI211018-4925218-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925218-1026-4-C/results/953590923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11412","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","09:00:00","MST","2021-11-15 16:00:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590946","UTAHDWQ_WQX-WRI211115-4925218-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925218-1115-4-C/results/953590946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11413","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","09:00:00","MST","2021-11-15 16:00:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590949","UTAHDWQ_WQX-WRI211115-4925218-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925218-1115-4-C/results/953590949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11414","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","09:30:00","MST","2021-12-13 16:30:00",NA,"2.36",2360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590956","UTAHDWQ_WQX-WRI211213-4925218-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925218-1213-4-C/results/953590956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11415","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","09:30:00","MST","2021-12-13 16:30:00",NA,"2.85",2850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590959","UTAHDWQ_WQX-WRI211213-4925218-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925218-1213-4-C/results/953590959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11416","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","09:15:00","MST","2022-02-07 16:15:00",NA,"2.12",2120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590982","UTAHDWQ_WQX-WRI220207-4925218-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925218-0207-4-C/results/953590982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11417","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","09:15:00","MST","2022-02-07 16:15:00",NA,"2.24",2240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953590985","UTAHDWQ_WQX-WRI220207-4925218-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925218-0207-4-C/results/953590985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11418","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","09:25:00","MST","2021-10-26 16:25:00",NA,"0.989",989,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591008","UTAHDWQ_WQX-WRI211018-4925230-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925230-1026-4-C/results/953591008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11419","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","09:25:00","MST","2021-10-26 16:25:00",NA,"0.977",977,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591011","UTAHDWQ_WQX-WRI211018-4925230-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925230-1026-4-C/results/953591011/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11420","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","09:30:00","MST","2021-11-15 16:30:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591034","UTAHDWQ_WQX-WRI211115-4925230-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925230-1115-4-C/results/953591034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11421","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","09:30:00","MST","2021-11-15 16:30:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591037","UTAHDWQ_WQX-WRI211115-4925230-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925230-1115-4-C/results/953591037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11422","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","09:45:00","MST","2021-12-13 16:45:00",NA,"2.63",2630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591044","UTAHDWQ_WQX-WRI211213-4925230-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925230-1213-4-C/results/953591044/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11423","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","09:45:00","MST","2021-12-13 16:45:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591047","UTAHDWQ_WQX-WRI211213-4925230-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925230-1213-4-C/results/953591047/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11424","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","09:40:00","MST","2022-01-10 16:40:00",NA,"1.96",1960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591070","UTAHDWQ_WQX-WRI220110-4925230-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925230-0110-4-C/results/953591070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11425","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","09:40:00","MST","2022-01-10 16:40:00",NA,"1.82",1820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591073","UTAHDWQ_WQX-WRI220110-4925230-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925230-0110-4-C/results/953591073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11426","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","09:40:00","MST","2022-02-07 16:40:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591080","UTAHDWQ_WQX-WRI220207-4925230-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925230-0207-4-C/results/953591080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11427","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","09:40:00","MST","2022-02-07 16:40:00",NA,"2.28",2280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591083","UTAHDWQ_WQX-WRI220207-4925230-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925230-0207-4-C/results/953591083/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11428","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","09:00:00","MST","2022-03-07 16:00:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591106","UTAHDWQ_WQX-WRI220307-4925230-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925230-0307-4-C/results/953591106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11429","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","09:00:00","MST","2022-03-07 16:00:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591109","UTAHDWQ_WQX-WRI220307-4925230-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925230-0307-4-C/results/953591109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11430","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","09:30:00","MST","2021-10-26 16:30:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591116","UTAHDWQ_WQX-WRI211018-4925231-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925231-1026-4-C/results/953591116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11431","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","09:30:00","MST","2021-10-26 16:30:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591119","UTAHDWQ_WQX-WRI211018-4925231-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925231-1026-4-C/results/953591119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11432","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","09:35:00","MST","2021-11-15 16:35:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591142","UTAHDWQ_WQX-WRI211115-4925231-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925231-1115-4-C/results/953591142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11433","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","09:35:00","MST","2021-11-15 16:35:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591145","UTAHDWQ_WQX-WRI211115-4925231-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925231-1115-4-C/results/953591145/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11434","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","09:50:00","MST","2021-12-13 16:50:00",NA,"2.76",2760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591152","UTAHDWQ_WQX-WRI211213-4925231-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925231-1213-4-C/results/953591152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11435","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","09:50:00","MST","2021-12-13 16:50:00",NA,"2.66",2660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591155","UTAHDWQ_WQX-WRI211213-4925231-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925231-1213-4-C/results/953591155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11436","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","09:45:00","MST","2022-01-10 16:45:00",NA,"1.94",1940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591178","UTAHDWQ_WQX-WRI220110-4925231-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925231-0110-4-C/results/953591178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11437","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","09:45:00","MST","2022-01-10 16:45:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591181","UTAHDWQ_WQX-WRI220110-4925231-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925231-0110-4-C/results/953591181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11438","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","09:45:00","MST","2022-02-07 16:45:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591188","UTAHDWQ_WQX-WRI220207-4925231-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925231-0207-4-C/results/953591188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11439","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","09:45:00","MST","2022-02-07 16:45:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591191","UTAHDWQ_WQX-WRI220207-4925231-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925231-0207-4-C/results/953591191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11440","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","09:10:00","MST","2022-03-07 16:10:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591214","UTAHDWQ_WQX-WRI220307-4925231-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925231-0307-4-C/results/953591214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11441","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","09:10:00","MST","2022-03-07 16:10:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591217","UTAHDWQ_WQX-WRI220307-4925231-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925231-0307-4-C/results/953591217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11442","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","10:10:00","MST","2021-10-26 17:10:00",NA,"0.824",824,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591225","UTAHDWQ_WQX-WRI211018-4925240-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925240-1026-4-C/results/953591225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11443","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","10:10:00","MST","2021-10-26 17:10:00",NA,"0.776",776,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591228","UTAHDWQ_WQX-WRI211018-4925240-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925240-1026-4-C/results/953591228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11444","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:15:00","MST","2021-11-15 17:15:00",NA,"0.837",837,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591268","UTAHDWQ_WQX-WRI211115-4925240-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925240-1115-4-C/results/953591268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11445","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:15:00","MST","2021-11-15 17:15:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591271","UTAHDWQ_WQX-WRI211115-4925240-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925240-1115-4-C/results/953591271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11446","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:15:00","MST","2021-12-13 17:15:00",NA,"2.65",2650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591311","UTAHDWQ_WQX-WRI211213-4925240-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925240-1213-4-C/results/953591311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11447","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","10:15:00","MST","2021-12-13 17:15:00",NA,"2.88",2880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591314","UTAHDWQ_WQX-WRI211213-4925240-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925240-1213-4-C/results/953591314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11448","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","10:30:00","MST","2022-01-10 17:30:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591354","UTAHDWQ_WQX-WRI220110-4925240-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925240-0110-4-C/results/953591354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11449","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","10:30:00","MST","2022-01-10 17:30:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591357","UTAHDWQ_WQX-WRI220110-4925240-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925240-0110-4-C/results/953591357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11450","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","10:00:00","MST","2022-02-07 17:00:00",NA,"2.27",2270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591397","UTAHDWQ_WQX-WRI220207-4925240-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925240-0207-4-C/results/953591397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11451","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","10:00:00","MST","2022-02-07 17:00:00",NA,"2.24",2240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591400","UTAHDWQ_WQX-WRI220207-4925240-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925240-0207-4-C/results/953591400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11452","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","09:45:00","MST","2022-03-07 16:45:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591439","UTAHDWQ_WQX-WRI220307-4925240-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925240-0307-4-C/results/953591439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11453","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","09:45:00","MST","2022-03-07 16:45:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591442","UTAHDWQ_WQX-WRI220307-4925240-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925240-0307-4-C/results/953591442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11454","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","10:00:00","MST","2021-10-26 17:00:00",NA,"6.71",6710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591482","UTAHDWQ_WQX-WRI211018-4925250-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925250-1026-4-C/results/953591482/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11455","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","10:00:00","MST","2021-10-26 17:00:00",NA,"6.79",6790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591485","UTAHDWQ_WQX-WRI211018-4925250-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:50:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925250-1026-4-C/results/953591485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11456","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","09:55:00","MST","2021-11-15 16:55:00",NA,"6.59",6590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591526","UTAHDWQ_WQX-WRI211115-4925250-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925250-1115-4-C/results/953591526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11457","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","09:55:00","MST","2021-11-15 16:55:00",NA,"6.64",6640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591529","UTAHDWQ_WQX-WRI211115-4925250-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925250-1115-4-C/results/953591529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11458","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:20:00","MST","2021-12-13 17:20:00",NA,"7.28",7280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591569","UTAHDWQ_WQX-WRI211213-4925250-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925250-1213-4-C/results/953591569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11459","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","10:20:00","MST","2021-12-13 17:20:00",NA,"7.6",7600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591572","UTAHDWQ_WQX-WRI211213-4925250-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925250-1213-4-C/results/953591572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11460","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","10:00:00","MST","2022-01-10 17:00:00",NA,"4.68",4680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591612","UTAHDWQ_WQX-WRI220110-4925250-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925250-0110-4-C/results/953591612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11461","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","10:00:00","MST","2022-01-10 17:00:00",NA,"4.67",4670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591615","UTAHDWQ_WQX-WRI220110-4925250-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925250-0110-4-C/results/953591615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11462","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","10:20:00","MST","2022-02-07 17:20:00",NA,"7.13",7130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591655","UTAHDWQ_WQX-WRI220207-4925250-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925250-0207-4-C/results/953591655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11463","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","10:20:00","MST","2022-02-07 17:20:00",NA,"7.01",7010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591658","UTAHDWQ_WQX-WRI220207-4925250-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925250-0207-4-C/results/953591658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11464","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","09:30:00","MST","2022-03-07 16:30:00",NA,"4.6",4600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591698","UTAHDWQ_WQX-WRI220307-4925250-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925250-0307-4-C/results/953591698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11465","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","09:30:00","MST","2022-03-07 16:30:00",NA,"4.69",4690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591701","UTAHDWQ_WQX-WRI220307-4925250-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925250-0307-4-C/results/953591701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11466","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","10:45:00","MST","2021-10-26 17:45:00",NA,"0.626",626,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591741","UTAHDWQ_WQX-WRI211018-4925260-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925260-1026-4-C/results/953591741/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11467","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","10:45:00","MST","2021-10-26 17:45:00",NA,"0.628",628,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591744","UTAHDWQ_WQX-WRI211018-4925260-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925260-1026-4-C/results/953591744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11468","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:35:00","MST","2021-11-15 17:35:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591784","UTAHDWQ_WQX-WRI211115-4925260-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925260-1115-4-C/results/953591784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11469","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:35:00","MST","2021-11-15 17:35:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591787","UTAHDWQ_WQX-WRI211115-4925260-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925260-1115-4-C/results/953591787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11470","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:45:00","MST","2021-12-13 17:45:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591827","UTAHDWQ_WQX-WRI211213-4925260-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925260-1213-4-C/results/953591827/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11471","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","10:45:00","MST","2021-12-13 17:45:00",NA,"0.733",733,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591830","UTAHDWQ_WQX-WRI211213-4925260-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925260-1213-4-C/results/953591830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11472","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","10:40:00","MST","2022-01-10 17:40:00",NA,"0.786",786,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591870","UTAHDWQ_WQX-WRI220110-4925260-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925260-0110-4-C/results/953591870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11473","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","10:40:00","MST","2022-01-10 17:40:00",NA,"0.878",878,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591873","UTAHDWQ_WQX-WRI220110-4925260-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925260-0110-4-C/results/953591873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11474","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","10:45:00","MST","2022-02-07 17:45:00",NA,"0.531",531,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591913","UTAHDWQ_WQX-WRI220207-4925260-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925260-0207-4-C/results/953591913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11475","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","10:45:00","MST","2022-02-07 17:45:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591916","UTAHDWQ_WQX-WRI220207-4925260-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925260-0207-4-C/results/953591916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11476","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","10:00:00","MST","2022-03-07 17:00:00",NA,"0.911",911,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591956","UTAHDWQ_WQX-WRI220307-4925260-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925260-0307-4-C/results/953591956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11477","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","10:00:00","MST","2022-03-07 17:00:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591959","UTAHDWQ_WQX-WRI220307-4925260-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925260-0307-4-C/results/953591959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11478","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","11:20:00","MST","2021-10-26 18:20:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953591998","UTAHDWQ_WQX-WRI211018-4925320-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925320-1026-4-C/results/953591998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11479","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","11:20:00","MST","2021-10-26 18:20:00",NA,"0.613",613,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592001","UTAHDWQ_WQX-WRI211018-4925320-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925320-1026-4-C/results/953592001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11480","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:15:00","MST","2021-11-15 18:15:00",NA,"0.658",658,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592024","UTAHDWQ_WQX-WRI211115-4925320-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925320-1115-4-C/results/953592024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11481","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:15:00","MST","2021-11-15 18:15:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592027","UTAHDWQ_WQX-WRI211115-4925320-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925320-1115-4-C/results/953592027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11482","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:55:00","MST","2021-12-13 17:55:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592034","UTAHDWQ_WQX-WRI211213-4925320-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925320-1213-4-C/results/953592034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11483","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","10:55:00","MST","2021-12-13 17:55:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592037","UTAHDWQ_WQX-WRI211213-4925320-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925320-1213-4-C/results/953592037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11484","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","11:00:00","MST","2022-01-10 18:00:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592060","UTAHDWQ_WQX-WRI220110-4925320-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925320-0110-4-C/results/953592060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11485","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","11:00:00","MST","2022-01-10 18:00:00",NA,"0.711",711,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592063","UTAHDWQ_WQX-WRI220110-4925320-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925320-0110-4-C/results/953592063/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11486","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","11:35:00","MST","2022-02-07 18:35:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592070","UTAHDWQ_WQX-WRI220207-4925320-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925320-0207-4-C/results/953592070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11487","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","11:35:00","MST","2022-02-07 18:35:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592073","UTAHDWQ_WQX-WRI220207-4925320-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925320-0207-4-C/results/953592073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11488","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","10:30:00","MST","2022-03-07 17:30:00",NA,"0.628",628,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592096","UTAHDWQ_WQX-WRI220307-4925320-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925320-0307-4-C/results/953592096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11489","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","10:30:00","MST","2022-03-07 17:30:00",NA,"0.645",645,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592099","UTAHDWQ_WQX-WRI220307-4925320-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925320-0307-4-C/results/953592099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11490","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","11:10:00","MST","2021-10-26 18:10:00",NA,"0.135",135,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592106","UTAHDWQ_WQX-WRI211018-4925330-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925330-1026-4-C/results/953592106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11491","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","11:10:00","MST","2021-10-26 18:10:00",NA,"0.094",94,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592109","UTAHDWQ_WQX-WRI211018-4925330-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925330-1026-4-C/results/953592109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11492","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:00:00","MST","2021-11-15 18:00:00",NA,"0.087",87,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592132","UTAHDWQ_WQX-WRI211115-4925330-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925330-1115-4-C/results/953592132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11493","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:00:00","MST","2021-11-15 18:00:00",NA,"0.125",125,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592135","UTAHDWQ_WQX-WRI211115-4925330-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925330-1115-4-C/results/953592135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11494","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:50:00","MST","2021-12-13 17:50:00",NA,"0.141",141,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592142","UTAHDWQ_WQX-WRI211213-4925330-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925330-1213-4-C/results/953592142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11495","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","10:50:00","MST","2021-12-13 17:50:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592145","UTAHDWQ_WQX-WRI211213-4925330-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925330-1213-4-C/results/953592145/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11496","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","10:15:00","MST","2022-03-07 17:15:00",NA,"0.191",191,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592168","UTAHDWQ_WQX-WRI220307-4925330-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925330-0307-4-C/results/953592168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11497","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","10:15:00","MST","2022-03-07 17:15:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592171","UTAHDWQ_WQX-WRI220307-4925330-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925330-0307-4-C/results/953592171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11498","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","11:35:00","MST","2021-10-26 18:35:00",NA,"0.657",657,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592178","UTAHDWQ_WQX-WRI211018-4925350-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925350-1026-4-C/results/953592178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11499","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","11:35:00","MST","2021-10-26 18:35:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592181","UTAHDWQ_WQX-WRI211018-4925350-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925350-1026-4-C/results/953592181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11500","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:25:00","MST","2021-11-15 18:25:00",NA,"0.305",305,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592204","UTAHDWQ_WQX-WRI211115-4925350-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925350-1115-4-C/results/953592204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11501","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:25:00","MST","2021-11-15 18:25:00",NA,"0.913",913,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592207","UTAHDWQ_WQX-WRI211115-4925350-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925350-1115-4-C/results/953592207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11502","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","11:10:00","MST","2021-12-13 18:10:00",NA,"0.627",627,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592214","UTAHDWQ_WQX-WRI211213-4925350-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925350-1213-4-C/results/953592214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11503","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","11:10:00","MST","2021-12-13 18:10:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592217","UTAHDWQ_WQX-WRI211213-4925350-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925350-1213-4-C/results/953592217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11504","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","11:15:00","MST","2022-01-10 18:15:00",NA,"0.855",855,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592240","UTAHDWQ_WQX-WRI220110-4925350-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925350-0110-4-C/results/953592240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11505","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","11:15:00","MST","2022-01-10 18:15:00",NA,"0.91",910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592243","UTAHDWQ_WQX-WRI220110-4925350-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925350-0110-4-C/results/953592243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11506","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","11:15:00","MST","2022-02-07 18:15:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592250","UTAHDWQ_WQX-WRI220207-4925350-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925350-0207-4-C/results/953592250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11507","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","11:15:00","MST","2022-02-07 18:15:00",NA,"0.565",565,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592253","UTAHDWQ_WQX-WRI220207-4925350-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925350-0207-4-C/results/953592253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11508","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","10:40:00","MST","2022-03-07 17:40:00",NA,"0.795",795,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592276","UTAHDWQ_WQX-WRI220307-4925350-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925350-0307-4-C/results/953592276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11509","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","10:40:00","MST","2022-03-07 17:40:00",NA,"0.84",840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592279","UTAHDWQ_WQX-WRI220307-4925350-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925350-0307-4-C/results/953592279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11510","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","11:45:00","MST","2021-10-26 18:45:00",NA,"0.453",453,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592286","UTAHDWQ_WQX-WRI211018-4925360-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925360-1026-4-C/results/953592286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11511","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","11:45:00","MST","2021-10-26 18:45:00",NA,"0.428",428,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592289","UTAHDWQ_WQX-WRI211018-4925360-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925360-1026-4-C/results/953592289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11512","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","11:40:00","MST","2021-11-15 18:40:00",NA,"0.205",205,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592312","UTAHDWQ_WQX-WRI211115-4925360-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925360-1115-4-C/results/953592312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11513","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","11:40:00","MST","2021-11-15 18:40:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592315","UTAHDWQ_WQX-WRI211115-4925360-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925360-1115-4-C/results/953592315/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11514","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","11:25:00","MST","2021-12-13 18:25:00",NA,"0.645",645,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592322","UTAHDWQ_WQX-WRI211213-4925360-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925360-1213-4-C/results/953592322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11515","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","11:25:00","MST","2021-12-13 18:25:00",NA,"0.813",813,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592325","UTAHDWQ_WQX-WRI211213-4925360-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925360-1213-4-C/results/953592325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11516","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","11:30:00","MST","2022-01-10 18:30:00",NA,"0.613",613,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592348","UTAHDWQ_WQX-WRI220110-4925360-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925360-0110-4-C/results/953592348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11517","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","11:30:00","MST","2022-01-10 18:30:00",NA,"0.67",670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592351","UTAHDWQ_WQX-WRI220110-4925360-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925360-0110-4-C/results/953592351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11518","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","12:00:00","MST","2022-02-07 19:00:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592358","UTAHDWQ_WQX-WRI220207-4925360-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925360-0207-4-C/results/953592358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11519","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","12:00:00","MST","2022-02-07 19:00:00",NA,"0.453",453,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592361","UTAHDWQ_WQX-WRI220207-4925360-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925360-0207-4-C/results/953592361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11520","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","10:55:00","MST","2022-03-07 17:55:00",NA,"0.432",432,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592384","UTAHDWQ_WQX-WRI220307-4925360-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925360-0307-4-C/results/953592384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11521","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","10:55:00","MST","2022-03-07 17:55:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592387","UTAHDWQ_WQX-WRI220307-4925360-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925360-0307-4-C/results/953592387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11522","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","13:05:00","MST","2021-10-26 20:05:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592394","UTAHDWQ_WQX-WRI211018-4925440-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925440-1026-4-C/results/953592394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11523","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","13:05:00","MST","2021-10-26 20:05:00",NA,"0.391",391,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592397","UTAHDWQ_WQX-WRI211018-4925440-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925440-1026-4-C/results/953592397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11524","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:40:00","MST","2021-11-15 19:40:00",NA,"0.145",145,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592420","UTAHDWQ_WQX-WRI211115-4925440-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925440-1115-4-C/results/953592420/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11525","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:40:00","MST","2021-11-15 19:40:00",NA,"0.209",209,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592423","UTAHDWQ_WQX-WRI211115-4925440-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925440-1115-4-C/results/953592423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11526","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","12:10:00","MST","2021-12-13 19:10:00",NA,"0.34",340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592431","UTAHDWQ_WQX-WRI211213-4925440-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925440-1213-4-C/results/953592431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11527","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","12:10:00","MST","2021-12-13 19:10:00",NA,"0.405",405,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592434","UTAHDWQ_WQX-WRI211213-4925440-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925440-1213-4-C/results/953592434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11528","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","12:30:00","MST","2022-02-07 19:30:00",NA,"0.206",206,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592457","UTAHDWQ_WQX-WRI220207-4925440-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925440-0207-4-C/results/953592457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11529","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","12:30:00","MST","2022-02-07 19:30:00",NA,"0.428",428,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592460","UTAHDWQ_WQX-WRI220207-4925440-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925440-0207-4-C/results/953592460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11530","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","11:40:00","MST","2022-03-07 18:40:00",NA,"0.313",313,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592483","UTAHDWQ_WQX-WRI220307-4925440-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925440-0307-4-C/results/953592483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11531","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","11:40:00","MST","2022-03-07 18:40:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592486","UTAHDWQ_WQX-WRI220307-4925440-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925440-0307-4-C/results/953592486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11532","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","13:20:00","MST","2021-10-19 20:20:00",NA,"0.683",683,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592494","UTAHDWQ_WQX-WRI211018-4925517-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925517-1019-4-C/results/953592494/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11533","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","13:20:00","MST","2021-10-19 20:20:00",NA,"0.769",769,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592497","UTAHDWQ_WQX-WRI211018-4925517-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925517-1019-4-C/results/953592497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11534","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","13:10:00","MST","2021-11-16 20:10:00",NA,"0.151",151,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592520","UTAHDWQ_WQX-WRI211115-4925517-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925517-1116-4-C/results/953592520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11535","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","13:10:00","MST","2021-11-16 20:10:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592523","UTAHDWQ_WQX-WRI211115-4925517-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925517-1116-4-C/results/953592523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11536","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","12:30:00","MST","2021-12-14 19:30:00",NA,"0.133",133,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592530","UTAHDWQ_WQX-WRI211213-4925517-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925517-1214-4-C/results/953592530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11537","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","12:30:00","MST","2021-12-14 19:30:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592533","UTAHDWQ_WQX-WRI211213-4925517-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925517-1214-4-C/results/953592533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11538","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","11:40:00","MST","2022-01-11 18:40:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592556","UTAHDWQ_WQX-WRI220110-4925517-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925517-0111-4-C/results/953592556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11539","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","11:40:00","MST","2022-01-11 18:40:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592559","UTAHDWQ_WQX-WRI220110-4925517-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925517-0111-4-C/results/953592559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11540","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","12:35:00","MST","2022-03-08 19:35:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592566","UTAHDWQ_WQX-WRI220307-4925517-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925517-0308-4-C/results/953592566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11541","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","12:35:00","MST","2022-03-08 19:35:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592569","UTAHDWQ_WQX-WRI220307-4925517-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925517-0308-4-C/results/953592569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11542","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","13:40:00","MST","2021-10-19 20:40:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592577","UTAHDWQ_WQX-WRI211018-4925520-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925520-1019-4-C/results/953592577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11543","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","13:40:00","MST","2021-10-19 20:40:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592580","UTAHDWQ_WQX-WRI211018-4925520-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925520-1019-4-C/results/953592580/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11544","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","13:30:00","MST","2021-11-16 20:30:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592603","UTAHDWQ_WQX-WRI211115-4925520-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925520-1116-4-C/results/953592603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11545","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","13:30:00","MST","2021-11-16 20:30:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592606","UTAHDWQ_WQX-WRI211115-4925520-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925520-1116-4-C/results/953592606/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11546","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","12:45:00","MST","2021-12-14 19:45:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592614","UTAHDWQ_WQX-WRI211213-4925520-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925520-1214-4-C/results/953592614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11547","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","12:45:00","MST","2021-12-14 19:45:00",NA,"1.73",1730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592617","UTAHDWQ_WQX-WRI211213-4925520-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925520-1214-4-C/results/953592617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11548","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","11:50:00","MST","2022-01-11 18:50:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592640","UTAHDWQ_WQX-WRI220110-4925520-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925520-0111-4-C/results/953592640/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11549","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","11:50:00","MST","2022-01-11 18:50:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592643","UTAHDWQ_WQX-WRI220110-4925520-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925520-0111-4-C/results/953592643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11550","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","12:40:00","MST","2022-02-08 19:40:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592651","UTAHDWQ_WQX-WRI220207-4925520-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925520-0208-4-C/results/953592651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11551","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","12:40:00","MST","2022-02-08 19:40:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592654","UTAHDWQ_WQX-WRI220207-4925520-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925520-0208-4-C/results/953592654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11552","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","12:50:00","MST","2022-03-08 19:50:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592677","UTAHDWQ_WQX-WRI220307-4925520-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925520-0308-4-C/results/953592677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11553","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","12:50:00","MST","2022-03-08 19:50:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592680","UTAHDWQ_WQX-WRI220307-4925520-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925520-0308-4-C/results/953592680/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11554","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","14:00:00","MST","2021-10-19 21:00:00",NA,"17.9",17900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592688","UTAHDWQ_WQX-WRI211018-4925530-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925530-1019-4-C/results/953592688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11555","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","14:00:00","MST","2021-10-19 21:00:00",NA,"16.6",16600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592691","UTAHDWQ_WQX-WRI211018-4925530-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925530-1019-4-C/results/953592691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11556","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","13:45:00","MST","2021-11-16 20:45:00",NA,"22.4",22400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592715","UTAHDWQ_WQX-WRI211115-4925530-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925530-1116-4-C/results/953592715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11557","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","13:45:00","MST","2021-11-16 20:45:00",NA,"21.6",21600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592718","UTAHDWQ_WQX-WRI211115-4925530-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925530-1116-4-C/results/953592718/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11558","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:05:00","MST","2021-12-14 20:05:00",NA,"26.8",26800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592726","UTAHDWQ_WQX-WRI211213-4925530-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925530-1214-4-C/results/953592726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11559","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:05:00","MST","2021-12-14 20:05:00",NA,"24.2",24200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592729","UTAHDWQ_WQX-WRI211213-4925530-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925530-1214-4-C/results/953592729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11560","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","12:15:00","MST","2022-01-11 19:15:00",NA,"30.6",30600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592753","UTAHDWQ_WQX-WRI220110-4925530-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925530-0111-4-C/results/953592753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11561","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","12:15:00","MST","2022-01-11 19:15:00",NA,"29.6",29600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592756","UTAHDWQ_WQX-WRI220110-4925530-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925530-0111-4-C/results/953592756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11562","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","13:00:00","MST","2022-02-08 20:00:00",NA,"37.8",37800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592764","UTAHDWQ_WQX-WRI220207-4925530-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925530-0208-4-C/results/953592764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11563","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","13:00:00","MST","2022-02-08 20:00:00",NA,"33.7",33700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592767","UTAHDWQ_WQX-WRI220207-4925530-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925530-0208-4-C/results/953592767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11564","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","08:50:00","MST","2021-10-20 15:50:00",NA,"0.316",316,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592790","UTAHDWQ_WQX-WRI211018-4925532-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925532-1020-4-C/results/953592790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11565","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","08:50:00","MST","2021-10-20 15:50:00",NA,"0.675",675,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592793","UTAHDWQ_WQX-WRI211018-4925532-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925532-1020-4-C/results/953592793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11566","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","10:00:00","MST","2021-11-17 17:00:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592816","UTAHDWQ_WQX-WRI211115-4925532-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925532-1117-4-C/results/953592816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11567","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","10:00:00","MST","2021-11-17 17:00:00",NA,"0.711",711,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592819","UTAHDWQ_WQX-WRI211115-4925532-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925532-1117-4-C/results/953592819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11568","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","14:05:00","MST","2021-12-14 21:05:00",NA,"0.12",120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592826","UTAHDWQ_WQX-WRI211213-4925532-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925532-1214-4-C/results/953592826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11569","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","14:05:00","MST","2021-12-14 21:05:00",NA,"0.191",191,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592829","UTAHDWQ_WQX-WRI211213-4925532-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925532-1214-4-C/results/953592829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11570","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","12:55:00","MST","2022-01-11 19:55:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592852","UTAHDWQ_WQX-WRI220110-4925532-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925532-0111-4-C/results/953592852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11571","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","12:55:00","MST","2022-01-11 19:55:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592855","UTAHDWQ_WQX-WRI220110-4925532-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925532-0111-4-C/results/953592855/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11572","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","09:30:00","MST","2022-02-09 16:30:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592862","UTAHDWQ_WQX-WRI220207-4925532-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925532-0209-4-C/results/953592862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11573","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","09:30:00","MST","2022-02-09 16:30:00",NA,"0.239",239,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592865","UTAHDWQ_WQX-WRI220207-4925532-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925532-0209-4-C/results/953592865/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11574","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","09:20:00","MST","2022-03-09 16:20:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592888","UTAHDWQ_WQX-WRI220307-4925532-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925532-0309-4-C/results/953592888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11575","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","09:20:00","MST","2022-03-09 16:20:00",NA,"0.277",277,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592891","UTAHDWQ_WQX-WRI220307-4925532-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925532-0309-4-C/results/953592891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11576","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","14:20:00","MST","2021-10-19 21:20:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592899","UTAHDWQ_WQX-WRI211018-4925540-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925540-1019-4-C/results/953592899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11577","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","14:20:00","MST","2021-10-19 21:20:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592902","UTAHDWQ_WQX-WRI211018-4925540-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925540-1019-4-C/results/953592902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11578","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","14:00:00","MST","2021-11-16 21:00:00",NA,"0.433",433,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592926","UTAHDWQ_WQX-WRI211115-4925540-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925540-1116-4-C/results/953592926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11579","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","14:00:00","MST","2021-11-16 21:00:00",NA,"0.604",604,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592929","UTAHDWQ_WQX-WRI211115-4925540-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925540-1116-4-C/results/953592929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11580","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:30:00","MST","2021-12-14 20:30:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592937","UTAHDWQ_WQX-WRI211213-4925540-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925540-1214-4-C/results/953592937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11581","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:30:00","MST","2021-12-14 20:30:00",NA,"0.487",487,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592940","UTAHDWQ_WQX-WRI211213-4925540-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925540-1214-4-C/results/953592940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11582","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","12:35:00","MST","2022-01-11 19:35:00",NA,"0.808",808,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592964","UTAHDWQ_WQX-WRI220110-4925540-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925540-0111-4-C/results/953592964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11583","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","12:35:00","MST","2022-01-11 19:35:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592967","UTAHDWQ_WQX-WRI220110-4925540-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925540-0111-4-C/results/953592967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11584","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","13:40:00","MST","2022-02-08 20:40:00",NA,"0.754",754,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592975","UTAHDWQ_WQX-WRI220207-4925540-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925540-0208-4-C/results/953592975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11585","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","13:40:00","MST","2022-02-08 20:40:00",NA,"0.819",819,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953592978","UTAHDWQ_WQX-WRI220207-4925540-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:51:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925540-0208-4-C/results/953592978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11586","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","09:40:00","MST","2022-03-09 16:40:00",NA,"0.417",417,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593002","UTAHDWQ_WQX-WRI220307-4925540-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925540-0309-4-C/results/953593002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11587","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","09:40:00","MST","2022-03-09 16:40:00",NA,"0.403",403,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593005","UTAHDWQ_WQX-WRI220307-4925540-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925540-0309-4-C/results/953593005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11588","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","10:25:00","MST","2021-10-26 17:25:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593012","UTAHDWQ_WQX-WRI211018-4925610-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925610-1026-4-C/results/953593012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11589","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","10:25:00","MST","2021-10-26 17:25:00",NA,"0.905",905,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593015","UTAHDWQ_WQX-WRI211018-4925610-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925610-1026-4-C/results/953593015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11590","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","10:30:00","MST","2021-11-15 17:30:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593038","UTAHDWQ_WQX-WRI211115-4925610-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925610-1115-4-C/results/953593038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11591","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","10:30:00","MST","2021-11-15 17:30:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593041","UTAHDWQ_WQX-WRI211115-4925610-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925610-1115-4-C/results/953593041/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11592","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:35:00","MST","2021-12-13 17:35:00",NA,"0.874",874,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593048","UTAHDWQ_WQX-WRI211213-4925610-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925610-1213-4-C/results/953593048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11593","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","10:35:00","MST","2021-12-13 17:35:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593051","UTAHDWQ_WQX-WRI211213-4925610-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925610-1213-4-C/results/953593051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11594","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","10:40:00","MST","2022-02-07 17:40:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593074","UTAHDWQ_WQX-WRI220207-4925610-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925610-0207-4-C/results/953593074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11595","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","10:40:00","MST","2022-02-07 17:40:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593077","UTAHDWQ_WQX-WRI220207-4925610-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925610-0207-4-C/results/953593077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11596","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","10:00:00","MST","2022-03-07 17:00:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593100","UTAHDWQ_WQX-WRI220307-4925610-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925610-0307-4-C/results/953593100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11597","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","10:00:00","MST","2022-03-07 17:00:00",NA,"0.879",879,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593103","UTAHDWQ_WQX-WRI220307-4925610-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925610-0307-4-C/results/953593103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11598","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","12:15:00","MST","2021-10-26 19:15:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593110","UTAHDWQ_WQX-WRI211018-4925630-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925630-1026-4-C/results/953593110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11599","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","12:15:00","MST","2021-10-26 19:15:00",NA,"0.385",385,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593113","UTAHDWQ_WQX-WRI211018-4925630-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925630-1026-4-C/results/953593113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11600","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:00:00","MST","2021-11-15 19:00:00",NA,"0.165",165,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593136","UTAHDWQ_WQX-WRI211115-4925630-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925630-1115-4-C/results/953593136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11601","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:00:00","MST","2021-11-15 19:00:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593139","UTAHDWQ_WQX-WRI211115-4925630-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925630-1115-4-C/results/953593139/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11602","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","11:10:00","MST","2022-03-07 18:10:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593146","UTAHDWQ_WQX-WRI220307-4925630-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925630-0307-4-C/results/953593146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11603","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","11:10:00","MST","2022-03-07 18:10:00",NA,"0.841",841,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593149","UTAHDWQ_WQX-WRI220307-4925630-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925630-0307-4-C/results/953593149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11604","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","12:35:00","MST","2021-10-26 19:35:00",NA,"0.585",585,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593156","UTAHDWQ_WQX-WRI211018-4925650-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925650-1026-4-C/results/953593156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11605","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","12:35:00","MST","2021-10-26 19:35:00",NA,"0.597",597,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593159","UTAHDWQ_WQX-WRI211018-4925650-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925650-1026-4-C/results/953593159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11606","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:15:00","MST","2021-11-15 19:15:00",NA,"0.722",722,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593182","UTAHDWQ_WQX-WRI211115-4925650-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925650-1115-4-C/results/953593182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11607","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:15:00","MST","2021-11-15 19:15:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593185","UTAHDWQ_WQX-WRI211115-4925650-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925650-1115-4-C/results/953593185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11608","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","11:45:00","MST","2021-12-13 18:45:00",NA,"0.658",658,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593192","UTAHDWQ_WQX-WRI211213-4925650-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925650-1213-4-C/results/953593192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11609","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","11:45:00","MST","2021-12-13 18:45:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593195","UTAHDWQ_WQX-WRI211213-4925650-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925650-1213-4-C/results/953593195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11610","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","11:45:00","MST","2022-01-10 18:45:00",NA,"0.791",791,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593218","UTAHDWQ_WQX-WRI220110-4925650-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925650-0110-4-C/results/953593218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11611","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","11:45:00","MST","2022-01-10 18:45:00",NA,"0.911",911,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593221","UTAHDWQ_WQX-WRI220110-4925650-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925650-0110-4-C/results/953593221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11612","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","12:10:00","MST","2022-02-07 19:10:00",NA,"0.742",742,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593228","UTAHDWQ_WQX-WRI220207-4925650-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925650-0207-4-C/results/953593228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11613","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","12:10:00","MST","2022-02-07 19:10:00",NA,"0.747",747,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593231","UTAHDWQ_WQX-WRI220207-4925650-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925650-0207-4-C/results/953593231/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11614","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","11:20:00","MST","2022-03-07 18:20:00",NA,"0.765",765,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593254","UTAHDWQ_WQX-WRI220307-4925650-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925650-0307-4-C/results/953593254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11615","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","11:20:00","MST","2022-03-07 18:20:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593257","UTAHDWQ_WQX-WRI220307-4925650-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925650-0307-4-C/results/953593257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11616","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","12:50:00","MST","2021-10-26 19:50:00",NA,"0.633",633,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593264","UTAHDWQ_WQX-WRI211018-4925660-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925660-1026-4-C/results/953593264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11617","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","12:50:00","MST","2021-10-26 19:50:00",NA,"0.625",625,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593267","UTAHDWQ_WQX-WRI211018-4925660-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925660-1026-4-C/results/953593267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11618","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","12:25:00","MST","2021-11-15 19:25:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593290","UTAHDWQ_WQX-WRI211115-4925660-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925660-1115-4-C/results/953593290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11619","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","12:25:00","MST","2021-11-15 19:25:00",NA,"0.86",860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593293","UTAHDWQ_WQX-WRI211115-4925660-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925660-1115-4-C/results/953593293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11620","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","12:00:00","MST","2021-10-20 19:00:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593300","UTAHDWQ_WQX-WRI211018-4925760-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925760-1020-4-C/results/953593300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11621","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","12:00:00","MST","2021-10-20 19:00:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593303","UTAHDWQ_WQX-WRI211018-4925760-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925760-1020-4-C/results/953593303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11622","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","13:00:00","MST","2021-11-17 20:00:00",NA,"0.304",304,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593326","UTAHDWQ_WQX-WRI211115-4925760-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925760-1117-4-C/results/953593326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11623","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","13:00:00","MST","2021-11-17 20:00:00",NA,"0.305",305,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593329","UTAHDWQ_WQX-WRI211115-4925760-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925760-1117-4-C/results/953593329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11624","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","11:20:00","MST","2021-12-21 18:20:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593336","UTAHDWQ_WQX-WRI211213-4925760-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925760-1221-4-C/results/953593336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11625","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","11:20:00","MST","2021-12-21 18:20:00",NA,"0.461",461,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593339","UTAHDWQ_WQX-WRI211213-4925760-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925760-1221-4-C/results/953593339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11626","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-12","09:30:00","MST","2022-01-12 16:30:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593362","UTAHDWQ_WQX-WRI220110-4925760-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925760-0112-4-C/results/953593362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11627","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-12","09:30:00","MST","2022-01-12 16:30:00",NA,"0.493",493,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593365","UTAHDWQ_WQX-WRI220110-4925760-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925760-0112-4-C/results/953593365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11628","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","11:30:00","MST","2022-02-09 18:30:00",NA,"0.498",498,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593372","UTAHDWQ_WQX-WRI220207-4925760-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925760-0209-4-C/results/953593372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11629","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","11:30:00","MST","2022-02-09 18:30:00",NA,"0.433",433,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593375","UTAHDWQ_WQX-WRI220207-4925760-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925760-0209-4-C/results/953593375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11630","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","11:50:00","MST","2022-03-09 18:50:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593398","UTAHDWQ_WQX-WRI220307-4925760-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925760-0309-4-C/results/953593398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11631","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","11:50:00","MST","2022-03-09 18:50:00",NA,"0.206",206,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593401","UTAHDWQ_WQX-WRI220307-4925760-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925760-0309-4-C/results/953593401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11632","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","12:20:00","MST","2021-10-20 19:20:00",NA,"0.534",534,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593408","UTAHDWQ_WQX-WRI211018-4925900-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925900-1020-4-C/results/953593408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11633","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","12:20:00","MST","2021-10-20 19:20:00",NA,"0.482",482,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593411","UTAHDWQ_WQX-WRI211018-4925900-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925900-1020-4-C/results/953593411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11634","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","13:20:00","MST","2021-11-17 20:20:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593434","UTAHDWQ_WQX-WRI211115-4925900-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925900-1117-4-C/results/953593434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11635","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","13:20:00","MST","2021-11-17 20:20:00",NA,"0.298",298,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593437","UTAHDWQ_WQX-WRI211115-4925900-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925900-1117-4-C/results/953593437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11636","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","11:50:00","MST","2021-12-21 18:50:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593444","UTAHDWQ_WQX-WRI211213-4925900-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925900-1221-4-C/results/953593444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11637","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","11:50:00","MST","2021-12-21 18:50:00",NA,"0.432",432,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593447","UTAHDWQ_WQX-WRI211213-4925900-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925900-1221-4-C/results/953593447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11638","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","12:00:00","MST","2022-02-09 19:00:00",NA,"0.474",474,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593470","UTAHDWQ_WQX-WRI220207-4925900-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925900-0209-4-C/results/953593470/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11639","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","12:00:00","MST","2022-02-09 19:00:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593473","UTAHDWQ_WQX-WRI220207-4925900-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925900-0209-4-C/results/953593473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11640","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","12:40:00","MST","2021-10-20 19:40:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593496","UTAHDWQ_WQX-WRI211018-4925930-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925930-1020-4-C/results/953593496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11641","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","12:40:00","MST","2021-10-20 19:40:00",NA,"0.434",434,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593499","UTAHDWQ_WQX-WRI211018-4925930-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925930-1020-4-C/results/953593499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11642","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","13:30:00","MST","2021-11-17 20:30:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593522","UTAHDWQ_WQX-WRI211115-4925930-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925930-1117-4-C/results/953593522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11643","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","13:30:00","MST","2021-11-17 20:30:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593525","UTAHDWQ_WQX-WRI211115-4925930-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925930-1117-4-C/results/953593525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11644","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","11:45:00","MST","2021-10-20 18:45:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593532","UTAHDWQ_WQX-WRI211018-4925960-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925960-1020-4-C/results/953593532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11645","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:45:00","MST","2021-10-20 18:45:00",NA,"0.438",438,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593535","UTAHDWQ_WQX-WRI211018-4925960-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925960-1020-4-C/results/953593535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11646","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","12:45:00","MST","2021-11-17 19:45:00",NA,"0.353",353,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593558","UTAHDWQ_WQX-WRI211115-4925960-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925960-1117-4-C/results/953593558/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11647","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","12:45:00","MST","2021-11-17 19:45:00",NA,"0.36",360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593561","UTAHDWQ_WQX-WRI211115-4925960-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925960-1117-4-C/results/953593561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11648","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","11:00:00","MST","2021-12-21 18:00:00",NA,"0.751",751,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593568","UTAHDWQ_WQX-WRI211213-4925960-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925960-1221-4-C/results/953593568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11649","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","11:00:00","MST","2021-12-21 18:00:00",NA,"0.977",977,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593571","UTAHDWQ_WQX-WRI211213-4925960-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925960-1221-4-C/results/953593571/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11650","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","11:10:00","MST","2022-02-09 18:10:00",NA,"0.93",930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593594","UTAHDWQ_WQX-WRI220207-4925960-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925960-0209-4-C/results/953593594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11651","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","11:10:00","MST","2022-02-09 18:10:00",NA,"0.878",878,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593597","UTAHDWQ_WQX-WRI220207-4925960-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925960-0209-4-C/results/953593597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11652","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","11:35:00","MST","2022-03-09 18:35:00",NA,"0.586",586,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593620","UTAHDWQ_WQX-WRI220307-4925960-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925960-0309-4-C/results/953593620/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11653","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","11:35:00","MST","2022-03-09 18:35:00",NA,"0.549",549,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593623","UTAHDWQ_WQX-WRI220307-4925960-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925960-0309-4-C/results/953593623/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11654","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","11:50:00","MST","2021-10-20 18:50:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593630","UTAHDWQ_WQX-WRI211018-4925962-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925962-1020-4-C/results/953593630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11655","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:50:00","MST","2021-10-20 18:50:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593633","UTAHDWQ_WQX-WRI211018-4925962-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925962-1020-4-C/results/953593633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11656","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","12:50:00","MST","2021-11-17 19:50:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593656","UTAHDWQ_WQX-WRI211115-4925962-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925962-1117-4-C/results/953593656/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11657","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","12:50:00","MST","2021-11-17 19:50:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593659","UTAHDWQ_WQX-WRI211115-4925962-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925962-1117-4-C/results/953593659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11658","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","11:10:00","MST","2021-12-21 18:10:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593666","UTAHDWQ_WQX-WRI211213-4925962-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925962-1221-4-C/results/953593666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11659","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","11:10:00","MST","2021-12-21 18:10:00",NA,"0.882",882,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593669","UTAHDWQ_WQX-WRI211213-4925962-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925962-1221-4-C/results/953593669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11660","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","11:15:00","MST","2022-02-09 18:15:00",NA,"0.967",967,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593692","UTAHDWQ_WQX-WRI220207-4925962-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925962-0209-4-C/results/953593692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11661","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","11:15:00","MST","2022-02-09 18:15:00",NA,"0.963",963,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593695","UTAHDWQ_WQX-WRI220207-4925962-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925962-0209-4-C/results/953593695/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11662","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","11:45:00","MST","2022-03-09 18:45:00",NA,"0.581",581,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593718","UTAHDWQ_WQX-WRI220307-4925962-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925962-0309-4-C/results/953593718/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11663","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","11:45:00","MST","2022-03-09 18:45:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593721","UTAHDWQ_WQX-WRI220307-4925962-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925962-0309-4-C/results/953593721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11664","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","11:30:00","MST","2021-10-20 18:30:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593729","UTAHDWQ_WQX-WRI211018-4925997-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925997-1020-4-C/results/953593729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11665","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:30:00","MST","2021-10-20 18:30:00",NA,"0.399",399,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593732","UTAHDWQ_WQX-WRI211018-4925997-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925997-1020-4-C/results/953593732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11666","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","12:30:00","MST","2021-11-17 19:30:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593756","UTAHDWQ_WQX-WRI211115-4925997-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925997-1117-4-C/results/953593756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11667","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","12:30:00","MST","2021-11-17 19:30:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593759","UTAHDWQ_WQX-WRI211115-4925997-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925997-1117-4-C/results/953593759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11668","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","10:45:00","MST","2021-12-21 17:45:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593767","UTAHDWQ_WQX-WRI211213-4925997-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925997-1221-4-C/results/953593767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11669","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","10:45:00","MST","2021-12-21 17:45:00",NA,"0.852",852,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593770","UTAHDWQ_WQX-WRI211213-4925997-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925997-1221-4-C/results/953593770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11670","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","11:00:00","MST","2022-02-09 18:00:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593794","UTAHDWQ_WQX-WRI220207-4925997-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925997-0209-4-C/results/953593794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11671","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","11:00:00","MST","2022-02-09 18:00:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593797","UTAHDWQ_WQX-WRI220207-4925997-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925997-0209-4-C/results/953593797/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11672","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","11:03:00","MST","2022-03-09 18:03:00",NA,"0.549",549,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593821","UTAHDWQ_WQX-WRI220307-4925997-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925997-0309-4-C/results/953593821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11673","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","11:03:00","MST","2022-03-09 18:03:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593824","UTAHDWQ_WQX-WRI220307-4925997-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925997-0309-4-C/results/953593824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11674","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","11:00:00","MST","2021-10-20 18:00:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593832","UTAHDWQ_WQX-WRI211018-4926000-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926000-1020-4-C/results/953593832/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11675","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","11:00:00","MST","2021-10-20 18:00:00",NA,"0.417",417,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593835","UTAHDWQ_WQX-WRI211018-4926000-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926000-1020-4-C/results/953593835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11676","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","12:10:00","MST","2021-11-17 19:10:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593859","UTAHDWQ_WQX-WRI211115-4926000-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926000-1117-4-C/results/953593859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11677","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","12:10:00","MST","2021-11-17 19:10:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593862","UTAHDWQ_WQX-WRI211115-4926000-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926000-1117-4-C/results/953593862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11678","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","11:20:00","MST","2022-03-09 18:20:00",NA,"0.486",486,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593870","UTAHDWQ_WQX-WRI220307-4926000-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926000-0309-4-C/results/953593870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11679","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","11:20:00","MST","2022-03-09 18:20:00",NA,"0.541",541,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593873","UTAHDWQ_WQX-WRI220307-4926000-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926000-0309-4-C/results/953593873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11680","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","10:30:00","MST","2021-12-21 17:30:00",NA,"2.11",2110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593881","UTAHDWQ_WQX-WRI211213-4926010-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HENEFER LAGOONS OUTFALL","Facility Other",NA,"41.0302600000",41.03026,"-111.5059200000",-111.50592,"OK","16020101","UTAHDWQ_WQX-4926010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0302600000","-111.5059200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926010-1221-4-C/results/953593881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11681","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","10:30:00","MST","2021-12-21 17:30:00",NA,"2.13",2130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593884","UTAHDWQ_WQX-WRI211213-4926010-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HENEFER LAGOONS OUTFALL","Facility Other",NA,"41.0302600000",41.03026,"-111.5059200000",-111.50592,"OK","16020101","UTAHDWQ_WQX-4926010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0302600000","-111.5059200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926010-1221-4-C/results/953593884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11682","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","13:30:00","MST","2021-10-27 20:30:00",NA,"0.123",123,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593907","UTAHDWQ_WQX-WRI211018-4926040-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926040-1027-4-C/results/953593907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11683","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","13:30:00","MST","2021-10-27 20:30:00",NA,"0.124",124,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593910","UTAHDWQ_WQX-WRI211018-4926040-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926040-1027-4-C/results/953593910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11684","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","12:00:00","MST","2021-11-17 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593933","UTAHDWQ_WQX-WRI211115-4926040-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926040-1117-4-C/results/953593933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11685","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","12:00:00","MST","2021-11-17 19:00:00",NA,"0.414",414,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593936","UTAHDWQ_WQX-WRI211115-4926040-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926040-1117-4-C/results/953593936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11686","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","09:45:00","MST","2021-12-21 16:45:00",NA,"0.141",141,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593943","UTAHDWQ_WQX-WRI211213-4926040-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926040-1221-4-C/results/953593943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11687","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","09:45:00","MST","2021-12-21 16:45:00",NA,"0.155",155,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593946","UTAHDWQ_WQX-WRI211213-4926040-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926040-1221-4-C/results/953593946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11688","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-12","11:15:00","MST","2022-01-12 18:15:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593969","UTAHDWQ_WQX-WRI220110-4926040-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926040-0112-4-C/results/953593969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11689","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-12","11:15:00","MST","2022-01-12 18:15:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593972","UTAHDWQ_WQX-WRI220110-4926040-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926040-0112-4-C/results/953593972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11690","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","09:55:00","MST","2022-02-09 16:55:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593979","UTAHDWQ_WQX-WRI220207-4926040-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926040-0209-4-C/results/953593979/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11691","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","09:55:00","MST","2022-02-09 16:55:00",NA,"0.262",262,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953593982","UTAHDWQ_WQX-WRI220207-4926040-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926040-0209-4-C/results/953593982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11692","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","10:30:00","MST","2022-03-09 17:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594005","UTAHDWQ_WQX-WRI220307-4926040-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926040-0309-4-C/results/953594005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11693","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","10:30:00","MST","2022-03-09 17:30:00",NA,"0.696",696,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594008","UTAHDWQ_WQX-WRI220307-4926040-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926040-0309-4-C/results/953594008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11694","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","13:00:00","MST","2021-10-27 20:00:00",NA,"0.493",493,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594015","UTAHDWQ_WQX-WRI211018-4926070-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926070-1027-4-C/results/953594015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11695","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","13:00:00","MST","2021-10-27 20:00:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594018","UTAHDWQ_WQX-WRI211018-4926070-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926070-1027-4-C/results/953594018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11696","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","11:50:00","MST","2021-11-17 18:50:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594041","UTAHDWQ_WQX-WRI211115-4926070-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926070-1117-4-C/results/953594041/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11697","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","11:50:00","MST","2021-11-17 18:50:00",NA,"0.83",830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594044","UTAHDWQ_WQX-WRI211115-4926070-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926070-1117-4-C/results/953594044/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11698","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","15:15:00","MST","2021-12-14 22:15:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594051","UTAHDWQ_WQX-WRI211213-4926070-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926070-1214-4-C/results/953594051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11699","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","15:15:00","MST","2021-12-14 22:15:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594054","UTAHDWQ_WQX-WRI211213-4926070-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926070-1214-4-C/results/953594054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11700","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","13:45:00","MST","2021-10-27 20:45:00",NA,"0.469",469,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594078","UTAHDWQ_WQX-WRI211018-4926080-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926080-1027-4-C/results/953594078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11701","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","13:45:00","MST","2021-10-27 20:45:00",NA,"0.457",457,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594081","UTAHDWQ_WQX-WRI211018-4926080-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926080-1027-4-C/results/953594081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11702","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","12:15:00","MST","2021-11-17 19:15:00",NA,"0.456",456,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594104","UTAHDWQ_WQX-WRI211115-4926080-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926080-1117-4-C/results/953594104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11703","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","12:15:00","MST","2021-11-17 19:15:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594107","UTAHDWQ_WQX-WRI211115-4926080-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926080-1117-4-C/results/953594107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11704","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-21","10:00:00","MST","2021-12-21 17:00:00",NA,"0.589",589,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594114","UTAHDWQ_WQX-WRI211213-4926080-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926080-1221-4-C/results/953594114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11705","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-21","10:00:00","MST","2021-12-21 17:00:00",NA,"0.452",452,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594117","UTAHDWQ_WQX-WRI211213-4926080-1221-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926080-1221-4-C/results/953594117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11706","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-12","11:30:00","MST","2022-01-12 18:30:00",NA,"0.596",596,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594140","UTAHDWQ_WQX-WRI220110-4926080-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926080-0112-4-C/results/953594140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11707","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-12","11:30:00","MST","2022-01-12 18:30:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594143","UTAHDWQ_WQX-WRI220110-4926080-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926080-0112-4-C/results/953594143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11708","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","10:15:00","MST","2022-02-09 17:15:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594150","UTAHDWQ_WQX-WRI220207-4926080-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926080-0209-4-C/results/953594150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11709","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","10:15:00","MST","2022-02-09 17:15:00",NA,"0.592",592,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594153","UTAHDWQ_WQX-WRI220207-4926080-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:52:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926080-0209-4-C/results/953594153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11710","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","10:45:00","MST","2022-03-09 17:45:00",NA,"0.563",563,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594176","UTAHDWQ_WQX-WRI220307-4926080-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926080-0309-4-C/results/953594176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11711","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","10:45:00","MST","2022-03-09 17:45:00",NA,"0.896",896,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594179","UTAHDWQ_WQX-WRI220307-4926080-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926080-0309-4-C/results/953594179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11712","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","12:50:00","MST","2021-10-27 19:50:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594186","UTAHDWQ_WQX-WRI211018-4926100-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926100-1027-4-C/results/953594186/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11713","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","12:50:00","MST","2021-10-27 19:50:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594189","UTAHDWQ_WQX-WRI211018-4926100-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926100-1027-4-C/results/953594189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11714","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","11:30:00","MST","2021-11-17 18:30:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594212","UTAHDWQ_WQX-WRI211115-4926100-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926100-1117-4-C/results/953594212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11715","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","11:30:00","MST","2021-11-17 18:30:00",NA,"0.359",359,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594215","UTAHDWQ_WQX-WRI211115-4926100-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926100-1117-4-C/results/953594215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11716","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","14:40:00","MST","2021-12-14 21:40:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594222","UTAHDWQ_WQX-WRI211213-4926100-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926100-1214-4-C/results/953594222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11717","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","14:40:00","MST","2021-12-14 21:40:00",NA,"0.565",565,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594225","UTAHDWQ_WQX-WRI211213-4926100-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926100-1214-4-C/results/953594225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11718","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","12:55:00","MST","2021-10-27 19:55:00",NA,"0.39",390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594248","UTAHDWQ_WQX-WRI211018-4926101-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926101-1027-4-C/results/953594248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11719","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","12:55:00","MST","2021-10-27 19:55:00",NA,"0.52",520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594251","UTAHDWQ_WQX-WRI211018-4926101-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926101-1027-4-C/results/953594251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11720","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","11:40:00","MST","2021-11-17 18:40:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594274","UTAHDWQ_WQX-WRI211115-4926101-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926101-1117-4-C/results/953594274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11721","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","11:40:00","MST","2021-11-17 18:40:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594277","UTAHDWQ_WQX-WRI211115-4926101-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926101-1117-4-C/results/953594277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11722","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","14:45:00","MST","2021-12-14 21:45:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594284","UTAHDWQ_WQX-WRI211213-4926101-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926101-1214-4-C/results/953594284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11723","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","14:45:00","MST","2021-12-14 21:45:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594287","UTAHDWQ_WQX-WRI211213-4926101-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926101-1214-4-C/results/953594287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11724","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","11:40:00","MST","2021-10-27 18:40:00",NA,"0.511",511,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594310","UTAHDWQ_WQX-WRI211018-4926170-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926170-1027-4-C/results/953594310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11725","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","11:40:00","MST","2021-10-27 18:40:00",NA,"0.516",516,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594313","UTAHDWQ_WQX-WRI211018-4926170-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926170-1027-4-C/results/953594313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11726","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","10:35:00","MST","2021-11-17 17:35:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594336","UTAHDWQ_WQX-WRI211115-4926170-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926170-1117-4-C/results/953594336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11727","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","10:35:00","MST","2021-11-17 17:35:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594339","UTAHDWQ_WQX-WRI211115-4926170-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926170-1117-4-C/results/953594339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11728","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:15:00","MST","2021-12-14 20:15:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594346","UTAHDWQ_WQX-WRI211213-4926170-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926170-1214-4-C/results/953594346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11729","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:15:00","MST","2021-12-14 20:15:00",NA,"0.603",603,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594349","UTAHDWQ_WQX-WRI211213-4926170-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926170-1214-4-C/results/953594349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11730","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","09:35:00","MST","2022-03-09 16:35:00",NA,"0.949",949,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594372","UTAHDWQ_WQX-WRI220307-4926170-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926170-0309-4-C/results/953594372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11731","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","09:35:00","MST","2022-03-09 16:35:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594375","UTAHDWQ_WQX-WRI220307-4926170-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926170-0309-4-C/results/953594375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11732","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","12:00:00","MST","2021-10-27 19:00:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594383","UTAHDWQ_WQX-WRI211018-4926323-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926323-1027-4-C/results/953594383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11733","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","12:00:00","MST","2021-10-27 19:00:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594386","UTAHDWQ_WQX-WRI211018-4926323-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926323-1027-4-C/results/953594386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11734","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","10:45:00","MST","2021-11-17 17:45:00",NA,"2.52",2520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594410","UTAHDWQ_WQX-WRI211115-4926323-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926323-1117-4-C/results/953594410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11735","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","10:45:00","MST","2021-11-17 17:45:00",NA,"3.2",3200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594413","UTAHDWQ_WQX-WRI211115-4926323-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926323-1117-4-C/results/953594413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11736","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:30:00","MST","2021-12-14 20:30:00",NA,"2.83",2830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594421","UTAHDWQ_WQX-WRI211213-4926323-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926323-1214-4-C/results/953594421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11737","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:30:00","MST","2021-12-14 20:30:00",NA,"3.19",3190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594424","UTAHDWQ_WQX-WRI211213-4926323-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926323-1214-4-C/results/953594424/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11738","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","09:40:00","MST","2022-03-09 16:40:00",NA,"2.8",2800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594449","UTAHDWQ_WQX-WRI220307-4926323-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926323-0309-4-C/results/953594449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11739","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","09:40:00","MST","2022-03-09 16:40:00",NA,"3.15",3150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594452","UTAHDWQ_WQX-WRI220307-4926323-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926323-0309-4-C/results/953594452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11740","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","12:30:00","MST","2021-10-27 19:30:00",NA,"4.89",4890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594460","UTAHDWQ_WQX-WRI211018-4926325-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926325-1027-4-C/results/953594460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11741","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","12:30:00","MST","2021-10-27 19:30:00",NA,"4.78",4780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594463","UTAHDWQ_WQX-WRI211018-4926325-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926325-1027-4-C/results/953594463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11742","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","11:05:00","MST","2021-11-17 18:05:00",NA,"4.27",4270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594487","UTAHDWQ_WQX-WRI211115-4926325-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926325-1117-4-C/results/953594487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11743","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","11:05:00","MST","2021-11-17 18:05:00",NA,"4.71",4710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594490","UTAHDWQ_WQX-WRI211115-4926325-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926325-1117-4-C/results/953594490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11744","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","14:20:00","MST","2021-12-14 21:20:00",NA,"4.3",4300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594498","UTAHDWQ_WQX-WRI211213-4926325-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926325-1214-4-C/results/953594498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11745","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","14:20:00","MST","2021-12-14 21:20:00",NA,"4.7",4700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594501","UTAHDWQ_WQX-WRI211213-4926325-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926325-1214-4-C/results/953594501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11746","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-12","10:50:00","MST","2022-01-12 17:50:00",NA,"4.67",4670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594525","UTAHDWQ_WQX-WRI220110-4926325-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926325-0112-4-C/results/953594525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11747","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-12","10:50:00","MST","2022-01-12 17:50:00",NA,"4.96",4960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594528","UTAHDWQ_WQX-WRI220110-4926325-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926325-0112-4-C/results/953594528/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11748","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","09:30:00","MST","2022-02-09 16:30:00",NA,"7.35",7350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594536","UTAHDWQ_WQX-WRI220207-4926325-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926325-0209-4-C/results/953594536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11749","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","09:30:00","MST","2022-02-09 16:30:00",NA,"7.19",7190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594539","UTAHDWQ_WQX-WRI220207-4926325-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926325-0209-4-C/results/953594539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11750","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","10:00:00","MST","2022-03-09 17:00:00",NA,"5.69",5690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594563","UTAHDWQ_WQX-WRI220307-4926325-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926325-0309-4-C/results/953594563/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11751","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","10:00:00","MST","2022-03-09 17:00:00",NA,"5.86",5860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594566","UTAHDWQ_WQX-WRI220307-4926325-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926325-0309-4-C/results/953594566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11752","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","11:30:00","MST","2021-10-27 18:30:00",NA,"0.549",549,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594573","UTAHDWQ_WQX-WRI211018-4926400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926400-1027-4-C/results/953594573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11753","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","11:30:00","MST","2021-10-27 18:30:00",NA,"0.486",486,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594576","UTAHDWQ_WQX-WRI211018-4926400-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926400-1027-4-C/results/953594576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11754","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","10:25:00","MST","2021-11-17 17:25:00",NA,"0.505",505,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594599","UTAHDWQ_WQX-WRI211115-4926400-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926400-1117-4-C/results/953594599/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11755","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","10:25:00","MST","2021-11-17 17:25:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594602","UTAHDWQ_WQX-WRI211115-4926400-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926400-1117-4-C/results/953594602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11756","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","14:00:00","MST","2021-12-14 21:00:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594609","UTAHDWQ_WQX-WRI211213-4926400-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926400-1214-4-C/results/953594609/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11757","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","14:00:00","MST","2021-12-14 21:00:00",NA,"0.761",761,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594612","UTAHDWQ_WQX-WRI211213-4926400-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926400-1214-4-C/results/953594612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11758","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-09","09:10:00","MST","2022-02-09 16:10:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594635","UTAHDWQ_WQX-WRI220207-4926400-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926400-0209-4-C/results/953594635/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11759","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-09","09:10:00","MST","2022-02-09 16:10:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594638","UTAHDWQ_WQX-WRI220207-4926400-0209-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926400-0209-4-C/results/953594638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11760","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","09:30:00","MST","2022-03-09 16:30:00",NA,"0.678",678,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594661","UTAHDWQ_WQX-WRI220307-4926400-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926400-0309-4-C/results/953594661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11761","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","09:30:00","MST","2022-03-09 16:30:00",NA,"0.775",775,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594664","UTAHDWQ_WQX-WRI220307-4926400-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926400-0309-4-C/results/953594664/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11762","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","11:05:00","MST","2021-10-27 18:05:00",NA,"0.192",192,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594671","UTAHDWQ_WQX-WRI211018-4926700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926700-1027-4-C/results/953594671/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11763","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","11:05:00","MST","2021-10-27 18:05:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594674","UTAHDWQ_WQX-WRI211018-4926700-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926700-1027-4-C/results/953594674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11764","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","10:00:00","MST","2021-11-17 17:00:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594697","UTAHDWQ_WQX-WRI211115-4926700-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926700-1117-4-C/results/953594697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11765","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","10:00:00","MST","2021-11-17 17:00:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594700","UTAHDWQ_WQX-WRI211115-4926700-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926700-1117-4-C/results/953594700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11766","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:40:00","MST","2021-12-14 20:40:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594707","UTAHDWQ_WQX-WRI211213-4926700-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926700-1214-4-C/results/953594707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11767","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:40:00","MST","2021-12-14 20:40:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594710","UTAHDWQ_WQX-WRI211213-4926700-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926700-1214-4-C/results/953594710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11768","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","13:15:00","MST","2022-02-08 20:15:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594733","UTAHDWQ_WQX-WRI220207-4926700-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926700-0208-4-C/results/953594733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11769","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","13:15:00","MST","2022-02-08 20:15:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594736","UTAHDWQ_WQX-WRI220207-4926700-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926700-0208-4-C/results/953594736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11770","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","13:40:00","MST","2022-03-08 20:40:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594759","UTAHDWQ_WQX-WRI220307-4926700-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926700-0308-4-C/results/953594759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11771","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","13:40:00","MST","2022-03-08 20:40:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594762","UTAHDWQ_WQX-WRI220307-4926700-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926700-0308-4-C/results/953594762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11772","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","14:45:00","MST","2021-10-26 21:45:00",NA,"0.749",749,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594770","UTAHDWQ_WQX-WRI211018-4926740-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926740-1026-4-C/results/953594770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11773","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","14:45:00","MST","2021-10-26 21:45:00",NA,"0.84",840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594773","UTAHDWQ_WQX-WRI211018-4926740-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926740-1026-4-C/results/953594773/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11774","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","14:15:00","MST","2021-11-15 21:15:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594813","UTAHDWQ_WQX-WRI211115-4926740-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926740-1115-4-C/results/953594813/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11775","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","14:15:00","MST","2021-11-15 21:15:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594816","UTAHDWQ_WQX-WRI211115-4926740-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926740-1115-4-C/results/953594816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11776","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","13:30:00","MST","2021-12-13 20:30:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594856","UTAHDWQ_WQX-WRI211213-4926740-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926740-1213-4-C/results/953594856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11777","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","13:30:00","MST","2021-12-13 20:30:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594859","UTAHDWQ_WQX-WRI211213-4926740-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926740-1213-4-C/results/953594859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11778","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","13:10:00","MST","2022-01-10 20:10:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594899","UTAHDWQ_WQX-WRI220110-4926740-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926740-0110-4-C/results/953594899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11779","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","13:10:00","MST","2022-01-10 20:10:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594902","UTAHDWQ_WQX-WRI220110-4926740-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926740-0110-4-C/results/953594902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11780","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","13:10:00","MST","2022-02-07 20:10:00",NA,"4.9",4900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594942","UTAHDWQ_WQX-WRI220207-4926740-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926740-0207-4-C/results/953594942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11781","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","13:10:00","MST","2022-02-07 20:10:00",NA,"5.05",5050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594945","UTAHDWQ_WQX-WRI220207-4926740-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926740-0207-4-C/results/953594945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11782","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","13:20:00","MST","2022-03-07 20:20:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594985","UTAHDWQ_WQX-WRI220307-4926740-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926740-0307-4-C/results/953594985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11783","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","13:20:00","MST","2022-03-07 20:20:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953594988","UTAHDWQ_WQX-WRI220307-4926740-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926740-0307-4-C/results/953594988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11784","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","10:50:00","MST","2021-10-27 17:50:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595027","UTAHDWQ_WQX-WRI211018-4926750-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926750-1027-4-C/results/953595027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11785","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","10:50:00","MST","2021-10-27 17:50:00",NA,"0.687",687,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595030","UTAHDWQ_WQX-WRI211018-4926750-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926750-1027-4-C/results/953595030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11786","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","09:45:00","MST","2021-11-17 16:45:00",NA,"0.947",947,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595069","UTAHDWQ_WQX-WRI211115-4926750-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926750-1117-4-C/results/953595069/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11787","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","09:45:00","MST","2021-11-17 16:45:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595072","UTAHDWQ_WQX-WRI211115-4926750-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926750-1117-4-C/results/953595072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11788","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:30:00","MST","2021-12-14 20:30:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595112","UTAHDWQ_WQX-WRI211213-4926750-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926750-1214-4-C/results/953595112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11789","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:30:00","MST","2021-12-14 20:30:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595115","UTAHDWQ_WQX-WRI211213-4926750-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926750-1214-4-C/results/953595115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11790","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-12","10:10:00","MST","2022-01-12 17:10:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595154","UTAHDWQ_WQX-WRI220110-4926750-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926750-0112-4-C/results/953595154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11791","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-12","10:10:00","MST","2022-01-12 17:10:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595157","UTAHDWQ_WQX-WRI220110-4926750-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926750-0112-4-C/results/953595157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11792","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","13:00:00","MST","2022-02-08 20:00:00",NA,"2.92",2920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595196","UTAHDWQ_WQX-WRI220207-4926750-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926750-0208-4-C/results/953595196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11793","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","13:00:00","MST","2022-02-08 20:00:00",NA,"2.85",2850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595199","UTAHDWQ_WQX-WRI220207-4926750-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926750-0208-4-C/results/953595199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11794","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","13:30:00","MST","2022-03-08 20:30:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595238","UTAHDWQ_WQX-WRI220307-4926750-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926750-0308-4-C/results/953595238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11795","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","13:30:00","MST","2022-03-08 20:30:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595241","UTAHDWQ_WQX-WRI220307-4926750-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926750-0308-4-C/results/953595241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11796","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","15:05:00","MST","2021-10-26 22:05:00",NA,"2.98",2980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595281","UTAHDWQ_WQX-WRI211018-4926790-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926790-1026-4-C/results/953595281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11797","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","15:05:00","MST","2021-10-26 22:05:00",NA,"3.01",3010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595284","UTAHDWQ_WQX-WRI211018-4926790-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926790-1026-4-C/results/953595284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11798","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","14:00:00","MST","2021-11-15 21:00:00",NA,"4.97",4970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595324","UTAHDWQ_WQX-WRI211115-4926790-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926790-1115-4-C/results/953595324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11799","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","14:00:00","MST","2021-11-15 21:00:00",NA,"4.73",4730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595327","UTAHDWQ_WQX-WRI211115-4926790-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926790-1115-4-C/results/953595327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11800","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","13:15:00","MST","2021-12-13 20:15:00",NA,"3.25",3250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595367","UTAHDWQ_WQX-WRI211213-4926790-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926790-1213-4-C/results/953595367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11801","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","13:15:00","MST","2021-12-13 20:15:00",NA,"3.36",3360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595370","UTAHDWQ_WQX-WRI211213-4926790-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:53:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926790-1213-4-C/results/953595370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11802","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","12:45:00","MST","2022-01-10 19:45:00",NA,"5.51",5510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595410","UTAHDWQ_WQX-WRI220110-4926790-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926790-0110-4-C/results/953595410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11803","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","12:45:00","MST","2022-01-10 19:45:00",NA,"5.52",5520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595413","UTAHDWQ_WQX-WRI220110-4926790-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926790-0110-4-C/results/953595413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11804","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","13:00:00","MST","2022-02-07 20:00:00",NA,"9.72",9720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595453","UTAHDWQ_WQX-WRI220207-4926790-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926790-0207-4-C/results/953595453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11805","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","13:00:00","MST","2022-02-07 20:00:00",NA,"9.57",9570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595456","UTAHDWQ_WQX-WRI220207-4926790-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926790-0207-4-C/results/953595456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11806","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","13:00:00","MST","2022-03-07 20:00:00",NA,"2.92",2920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595496","UTAHDWQ_WQX-WRI220307-4926790-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926790-0307-4-C/results/953595496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11807","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","13:00:00","MST","2022-03-07 20:00:00",NA,"2.88",2880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595499","UTAHDWQ_WQX-WRI220307-4926790-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926790-0307-4-C/results/953595499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11808","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","14:20:00","MST","2021-10-26 21:20:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595539","UTAHDWQ_WQX-WRI211018-4926800-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926800-1026-4-C/results/953595539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11809","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","14:20:00","MST","2021-10-26 21:20:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595542","UTAHDWQ_WQX-WRI211018-4926800-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926800-1026-4-C/results/953595542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11810","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:45:00","MST","2021-11-15 20:45:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595582","UTAHDWQ_WQX-WRI211115-4926800-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926800-1115-4-C/results/953595582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11811","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:45:00","MST","2021-11-15 20:45:00",NA,"0.153",153,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595585","UTAHDWQ_WQX-WRI211115-4926800-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926800-1115-4-C/results/953595585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11812","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","13:00:00","MST","2021-12-13 20:00:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595625","UTAHDWQ_WQX-WRI211213-4926800-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926800-1213-4-C/results/953595625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11813","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","13:00:00","MST","2021-12-13 20:00:00",NA,"0.512",512,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595628","UTAHDWQ_WQX-WRI211213-4926800-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926800-1213-4-C/results/953595628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11814","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","12:40:00","MST","2022-03-07 19:40:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595668","UTAHDWQ_WQX-WRI220307-4926800-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926800-0307-4-C/results/953595668/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11815","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","12:40:00","MST","2022-03-07 19:40:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595671","UTAHDWQ_WQX-WRI220307-4926800-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926800-0307-4-C/results/953595671/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11816","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","14:00:00","MST","2021-10-26 21:00:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595710","UTAHDWQ_WQX-WRI211018-4926850-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926850-1026-4-C/results/953595710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11817","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","14:00:00","MST","2021-10-26 21:00:00",NA,"0.395",395,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595713","UTAHDWQ_WQX-WRI211018-4926850-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926850-1026-4-C/results/953595713/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11818","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:20:00","MST","2021-11-15 20:20:00",NA,"0.494",494,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595751","UTAHDWQ_WQX-WRI211115-4926850-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926850-1115-4-C/results/953595751/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11819","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:20:00","MST","2021-11-15 20:20:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595754","UTAHDWQ_WQX-WRI211115-4926850-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926850-1115-4-C/results/953595754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11820","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","12:40:00","MST","2021-12-13 19:40:00",NA,"0.534",534,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595793","UTAHDWQ_WQX-WRI211213-4926850-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926850-1213-4-C/results/953595793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11821","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","12:40:00","MST","2021-12-13 19:40:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595796","UTAHDWQ_WQX-WRI211213-4926850-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926850-1213-4-C/results/953595796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11822","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","12:50:00","MST","2022-02-07 19:50:00",NA,"0.738",738,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595835","UTAHDWQ_WQX-WRI220207-4926850-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926850-0207-4-C/results/953595835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11823","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","12:50:00","MST","2022-02-07 19:50:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595838","UTAHDWQ_WQX-WRI220207-4926850-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926850-0207-4-C/results/953595838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11824","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","12:30:00","MST","2022-03-07 19:30:00",NA,"0.938",938,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595877","UTAHDWQ_WQX-WRI220307-4926850-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926850-0307-4-C/results/953595877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11825","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","12:30:00","MST","2022-03-07 19:30:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595880","UTAHDWQ_WQX-WRI220307-4926850-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926850-0307-4-C/results/953595880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11826","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","13:25:00","MST","2021-10-26 20:25:00",NA,"0.348",348,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595919","UTAHDWQ_WQX-WRI211018-4926948-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926948-1026-4-C/results/953595919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11827","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","13:25:00","MST","2021-10-26 20:25:00",NA,"0.414",414,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595922","UTAHDWQ_WQX-WRI211018-4926948-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926948-1026-4-C/results/953595922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11828","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:10:00","MST","2021-11-15 20:10:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595961","UTAHDWQ_WQX-WRI211115-4926948-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926948-1115-4-C/results/953595961/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11829","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:10:00","MST","2021-11-15 20:10:00",NA,"0.132",132,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953595964","UTAHDWQ_WQX-WRI211115-4926948-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926948-1115-4-C/results/953595964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11830","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","12:25:00","MST","2021-12-13 19:25:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596004","UTAHDWQ_WQX-WRI211213-4926948-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926948-1213-4-C/results/953596004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11831","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","12:25:00","MST","2021-12-13 19:25:00",NA,"0.62",620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596007","UTAHDWQ_WQX-WRI211213-4926948-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926948-1213-4-C/results/953596007/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11832","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","12:15:00","MST","2022-01-10 19:15:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596046","UTAHDWQ_WQX-WRI220110-4926948-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926948-0110-4-C/results/953596046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11833","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","12:15:00","MST","2022-01-10 19:15:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596049","UTAHDWQ_WQX-WRI220110-4926948-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926948-0110-4-C/results/953596049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11834","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","12:45:00","MST","2022-02-07 19:45:00",NA,"2.57",2570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596088","UTAHDWQ_WQX-WRI220207-4926948-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926948-0207-4-C/results/953596088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11835","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","12:45:00","MST","2022-02-07 19:45:00",NA,"2.65",2650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596091","UTAHDWQ_WQX-WRI220207-4926948-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926948-0207-4-C/results/953596091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11836","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","12:10:00","MST","2022-03-07 19:10:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596114","UTAHDWQ_WQX-WRI220307-4926948-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926948-0307-4-C/results/953596114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11837","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","12:10:00","MST","2022-03-07 19:10:00",NA,"0.35",350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596117","UTAHDWQ_WQX-WRI220307-4926948-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926948-0307-4-C/results/953596117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11838","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","13:20:00","MST","2021-10-26 20:20:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596156","UTAHDWQ_WQX-WRI211018-4926950-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926950-1026-4-C/results/953596156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11839","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","13:20:00","MST","2021-10-26 20:20:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596159","UTAHDWQ_WQX-WRI211018-4926950-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926950-1026-4-C/results/953596159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11840","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","13:00:00","MST","2021-11-15 20:00:00",NA,"0.133",133,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596198","UTAHDWQ_WQX-WRI211115-4926950-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926950-1115-4-C/results/953596198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11841","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","13:00:00","MST","2021-11-15 20:00:00",NA,"0.915",915,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596201","UTAHDWQ_WQX-WRI211115-4926950-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926950-1115-4-C/results/953596201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11842","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","12:20:00","MST","2021-12-13 19:20:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596240","UTAHDWQ_WQX-WRI211213-4926950-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926950-1213-4-C/results/953596240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11843","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","12:20:00","MST","2021-12-13 19:20:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596243","UTAHDWQ_WQX-WRI211213-4926950-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926950-1213-4-C/results/953596243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11844","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","12:10:00","MST","2022-01-10 19:10:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596282","UTAHDWQ_WQX-WRI220110-4926950-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926950-0110-4-C/results/953596282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11845","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-10","12:10:00","MST","2022-01-10 19:10:00",NA,"0.295",295,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596285","UTAHDWQ_WQX-WRI220110-4926950-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926950-0110-4-C/results/953596285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11846","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-07","12:35:00","MST","2022-02-07 19:35:00",NA,"2.81",2810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596324","UTAHDWQ_WQX-WRI220207-4926950-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926950-0207-4-C/results/953596324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11847","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-07","12:35:00","MST","2022-02-07 19:35:00",NA,"2.87",2870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596327","UTAHDWQ_WQX-WRI220207-4926950-0207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926950-0207-4-C/results/953596327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11848","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-07","12:00:00","MST","2022-03-07 19:00:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596350","UTAHDWQ_WQX-WRI220307-4926950-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926950-0307-4-C/results/953596350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11849","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-07","12:00:00","MST","2022-03-07 19:00:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596353","UTAHDWQ_WQX-WRI220307-4926950-0307-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926950-0307-4-C/results/953596353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11850","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","10:30:00","MST","2021-10-27 17:30:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596392","UTAHDWQ_WQX-WRI211018-4927010-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927010-1027-4-C/results/953596392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11851","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","10:30:00","MST","2021-10-27 17:30:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596395","UTAHDWQ_WQX-WRI211018-4927010-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927010-1027-4-C/results/953596395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11852","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","09:30:00","MST","2021-11-17 16:30:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596418","UTAHDWQ_WQX-WRI211115-4927010-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927010-1117-4-C/results/953596418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11853","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","09:30:00","MST","2021-11-17 16:30:00",NA,"0.795",795,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596421","UTAHDWQ_WQX-WRI211115-4927010-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927010-1117-4-C/results/953596421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11854","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:15:00","MST","2021-12-14 20:15:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596428","UTAHDWQ_WQX-WRI211213-4927010-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927010-1214-4-C/results/953596428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11855","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:15:00","MST","2021-12-14 20:15:00",NA,"0.596",596,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596431","UTAHDWQ_WQX-WRI211213-4927010-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927010-1214-4-C/results/953596431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11856","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-12","09:50:00","MST","2022-01-12 16:50:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596454","UTAHDWQ_WQX-WRI220110-4927010-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927010-0112-4-C/results/953596454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11857","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-12","09:50:00","MST","2022-01-12 16:50:00",NA,"0.712",712,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596457","UTAHDWQ_WQX-WRI220110-4927010-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927010-0112-4-C/results/953596457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11858","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","12:30:00","MST","2022-02-08 19:30:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596464","UTAHDWQ_WQX-WRI220207-4927010-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927010-0208-4-C/results/953596464/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11859","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","12:30:00","MST","2022-02-08 19:30:00",NA,"0.42",420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596467","UTAHDWQ_WQX-WRI220207-4927010-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927010-0208-4-C/results/953596467/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11860","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","13:15:00","MST","2022-03-08 20:15:00",NA,"0.497",497,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596490","UTAHDWQ_WQX-WRI220307-4927010-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927010-0308-4-C/results/953596490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11861","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","13:15:00","MST","2022-03-08 20:15:00",NA,"0.552",552,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596493","UTAHDWQ_WQX-WRI220307-4927010-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927010-0308-4-C/results/953596493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11862","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","09:45:00","MST","2021-10-27 16:45:00",NA,"0.304",304,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596500","UTAHDWQ_WQX-WRI211018-4927245-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Crandall Canyon AB Rockport Reservoir at U-302 xing","River/Stream",NA,"40.7660400000",40.76604,"-111.3811600000",-111.38116,"OK","16020101","UTAHDWQ_WQX-4927245",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7660400000","-111.3811600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927245-1027-4-C/results/953596500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11863","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","09:45:00","MST","2021-10-27 16:45:00",NA,"0.313",313,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596503","UTAHDWQ_WQX-WRI211018-4927245-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Crandall Canyon AB Rockport Reservoir at U-302 xing","River/Stream",NA,"40.7660400000",40.76604,"-111.3811600000",-111.38116,"OK","16020101","UTAHDWQ_WQX-4927245",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7660400000","-111.3811600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927245-1027-4-C/results/953596503/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11864","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","09:30:00","MST","2021-10-27 16:30:00",NA,"0.631",631,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596526","UTAHDWQ_WQX-WRI211018-4927247-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927247-1027-4-C/results/953596526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11865","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","09:30:00","MST","2021-10-27 16:30:00",NA,"0.659",659,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596529","UTAHDWQ_WQX-WRI211018-4927247-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927247-1027-4-C/results/953596529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11866","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","08:50:00","MST","2021-11-17 15:50:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596552","UTAHDWQ_WQX-WRI211115-4927247-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927247-1117-4-C/results/953596552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11867","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","08:50:00","MST","2021-11-17 15:50:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596555","UTAHDWQ_WQX-WRI211115-4927247-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927247-1117-4-C/results/953596555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11868","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:00:00","MST","2021-12-14 20:00:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596562","UTAHDWQ_WQX-WRI211213-4927247-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927247-1214-4-C/results/953596562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11869","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:00:00","MST","2021-12-14 20:00:00",NA,"0.495",495,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596565","UTAHDWQ_WQX-WRI211213-4927247-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927247-1214-4-C/results/953596565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11870","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-12","09:10:00","MST","2022-01-12 16:10:00",NA,"0.546",546,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596588","UTAHDWQ_WQX-WRI220110-4927247-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927247-0112-4-C/results/953596588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11871","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-12","09:10:00","MST","2022-01-12 16:10:00",NA,"0.656",656,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596591","UTAHDWQ_WQX-WRI220110-4927247-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927247-0112-4-C/results/953596591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11872","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","12:15:00","MST","2022-02-08 19:15:00",NA,"0.454",454,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596598","UTAHDWQ_WQX-WRI220207-4927247-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927247-0208-4-C/results/953596598/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11873","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","12:15:00","MST","2022-02-08 19:15:00",NA,"0.494",494,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596601","UTAHDWQ_WQX-WRI220207-4927247-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927247-0208-4-C/results/953596601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11874","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","12:35:00","MST","2022-03-08 19:35:00",NA,"0.64",640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596624","UTAHDWQ_WQX-WRI220307-4927247-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927247-0308-4-C/results/953596624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11875","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","12:35:00","MST","2022-03-08 19:35:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596627","UTAHDWQ_WQX-WRI220307-4927247-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927247-0308-4-C/results/953596627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11876","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","09:25:00","MST","2021-10-27 16:25:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596634","UTAHDWQ_WQX-WRI211018-4927250-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927250-1027-4-C/results/953596634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11877","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","09:25:00","MST","2021-10-27 16:25:00",NA,"0.665",665,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596637","UTAHDWQ_WQX-WRI211018-4927250-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927250-1027-4-C/results/953596637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8598","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","08:45:00","MST","2021-11-17 15:45:00",NA,"0.456",456,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596660","UTAHDWQ_WQX-WRI211115-4927250-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927250-1117-4-C/results/953596660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11879","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","08:45:00","MST","2021-11-17 15:45:00",NA,"0.933",933,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596663","UTAHDWQ_WQX-WRI211115-4927250-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927250-1117-4-C/results/953596663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8600","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","12:50:00","MST","2021-12-14 19:50:00",NA,"0.661",661,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596670","UTAHDWQ_WQX-WRI211213-4927250-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927250-1214-4-C/results/953596670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8601","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","12:50:00","MST","2021-12-14 19:50:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596673","UTAHDWQ_WQX-WRI211213-4927250-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:54:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927250-1214-4-C/results/953596673/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11882","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-12","09:00:00","MST","2022-01-12 16:00:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596696","UTAHDWQ_WQX-WRI220110-4927250-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927250-0112-4-C/results/953596696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8603","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-12","09:00:00","MST","2022-01-12 16:00:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596699","UTAHDWQ_WQX-WRI220110-4927250-0112-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927250-0112-4-C/results/953596699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8604","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","12:05:00","MST","2022-02-08 19:05:00",NA,"0.432",432,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596706","UTAHDWQ_WQX-WRI220207-4927250-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927250-0208-4-C/results/953596706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8605","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","12:05:00","MST","2022-02-08 19:05:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596709","UTAHDWQ_WQX-WRI220207-4927250-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927250-0208-4-C/results/953596709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8606","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","12:30:00","MST","2022-03-08 19:30:00",NA,"0.662",662,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596732","UTAHDWQ_WQX-WRI220307-4927250-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927250-0308-4-C/results/953596732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8607","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","12:30:00","MST","2022-03-08 19:30:00",NA,"0.706",706,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596735","UTAHDWQ_WQX-WRI220307-4927250-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927250-0308-4-C/results/953596735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8608","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","16:50:00","MST","2021-10-25 23:50:00",NA,"0.834",834,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596742","UTAHDWQ_WQX-WRI211018-4927500-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927500-1025-4-C/results/953596742/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8609","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","16:50:00","MST","2021-10-25 23:50:00",NA,"0.887",887,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596745","UTAHDWQ_WQX-WRI211018-4927500-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927500-1025-4-C/results/953596745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8610","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","15:30:00","MST","2021-11-16 22:30:00",NA,"0.81",810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596768","UTAHDWQ_WQX-WRI211115-4927500-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927500-1116-4-C/results/953596768/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8611","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","15:30:00","MST","2021-11-16 22:30:00",NA,"0.818",818,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596771","UTAHDWQ_WQX-WRI211115-4927500-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927500-1116-4-C/results/953596771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8612","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","12:30:00","MST","2021-12-14 19:30:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596778","UTAHDWQ_WQX-WRI211213-4927500-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927500-1214-4-C/results/953596778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8613","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","12:30:00","MST","2021-12-14 19:30:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596781","UTAHDWQ_WQX-WRI211213-4927500-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927500-1214-4-C/results/953596781/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8614","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","12:45:00","MST","2022-01-11 19:45:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596804","UTAHDWQ_WQX-WRI220110-4927500-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927500-0111-4-C/results/953596804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8615","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","12:45:00","MST","2022-01-11 19:45:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596807","UTAHDWQ_WQX-WRI220110-4927500-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927500-0111-4-C/results/953596807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8616","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","11:40:00","MST","2022-02-08 18:40:00",NA,"0.892",892,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596814","UTAHDWQ_WQX-WRI220207-4927500-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927500-0208-4-C/results/953596814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8617","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","11:40:00","MST","2022-02-08 18:40:00",NA,"0.917",917,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596817","UTAHDWQ_WQX-WRI220207-4927500-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927500-0208-4-C/results/953596817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8618","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","12:15:00","MST","2022-03-08 19:15:00",NA,"0.909",909,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596840","UTAHDWQ_WQX-WRI220307-4927500-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927500-0308-4-C/results/953596840/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8619","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","12:15:00","MST","2022-03-08 19:15:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596843","UTAHDWQ_WQX-WRI220307-4927500-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927500-0308-4-C/results/953596843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8620","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","12:55:00","MST","2021-10-25 19:55:00",NA,"0.084",84,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596851","UTAHDWQ_WQX-WRI211018-4928005-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928005-1025-4-C/results/953596851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8621","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","12:55:00","MST","2021-10-25 19:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596854","UTAHDWQ_WQX-WRI211018-4928005-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928005-1025-4-C/results/953596854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8622","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","11:50:00","MST","2021-11-16 18:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596878","UTAHDWQ_WQX-WRI211115-4928005-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928005-1116-4-C/results/953596878/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8623","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","11:50:00","MST","2021-11-16 18:50:00",NA,"0.464",464,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596881","UTAHDWQ_WQX-WRI211115-4928005-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928005-1116-4-C/results/953596881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8624","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","10:30:00","MST","2021-12-14 17:30:00",NA,"0.142",142,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596889","UTAHDWQ_WQX-WRI211213-4928005-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928005-1214-4-C/results/953596889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11905","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","10:30:00","MST","2021-12-14 17:30:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596892","UTAHDWQ_WQX-WRI211213-4928005-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928005-1214-4-C/results/953596892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8626","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","10:40:00","MST","2022-03-08 17:40:00",NA,"0.184",184,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596916","UTAHDWQ_WQX-WRI220307-4928005-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928005-0308-4-C/results/953596916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8627","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","10:40:00","MST","2022-03-08 17:40:00",NA,"0.339",339,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596919","UTAHDWQ_WQX-WRI220307-4928005-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928005-0308-4-C/results/953596919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11908","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","12:50:00","MST","2021-10-25 19:50:00",NA,"17.5",17500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596927","UTAHDWQ_WQX-WRI211018-4928010-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928010-1025-4-C/results/953596927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8629","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","12:50:00","MST","2021-10-25 19:50:00",NA,"17.7",17700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596930","UTAHDWQ_WQX-WRI211018-4928010-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928010-1025-4-C/results/953596930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8630","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","11:00:00","MST","2022-01-11 18:00:00",NA,"21.3",21300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596954","UTAHDWQ_WQX-WRI220110-4928010-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928010-0111-4-C/results/953596954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8631","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","11:00:00","MST","2022-01-11 18:00:00",NA,"21.5",21500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596957","UTAHDWQ_WQX-WRI220110-4928010-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928010-0111-4-C/results/953596957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8632","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","10:15:00","MST","2022-02-08 17:15:00",NA,"25.6",25600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596965","UTAHDWQ_WQX-WRI220207-4928010-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928010-0208-4-C/results/953596965/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8633","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","10:15:00","MST","2022-02-08 17:15:00",NA,"25.5",25500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596968","UTAHDWQ_WQX-WRI220207-4928010-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928010-0208-4-C/results/953596968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8634","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","10:50:00","MST","2022-03-08 17:50:00",NA,"21.8",21800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596992","UTAHDWQ_WQX-WRI220307-4928010-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928010-0308-4-C/results/953596992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8635","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","10:50:00","MST","2022-03-08 17:50:00",NA,"22.3",22300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953596995","UTAHDWQ_WQX-WRI220307-4928010-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928010-0308-4-C/results/953596995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8636","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","12:00:00","MST","2021-10-25 19:00:00",NA,"0.517",517,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597002","UTAHDWQ_WQX-WRI211018-4928300-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928300-1025-4-C/results/953597002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8637","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","12:00:00","MST","2021-10-25 19:00:00",NA,"0.976",976,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597005","UTAHDWQ_WQX-WRI211018-4928300-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928300-1025-4-C/results/953597005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8638","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","11:30:00","MST","2021-11-16 18:30:00",NA,"0.572",572,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597028","UTAHDWQ_WQX-WRI211115-4928300-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928300-1116-4-C/results/953597028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8639","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","11:30:00","MST","2021-11-16 18:30:00",NA,"0.67",670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597031","UTAHDWQ_WQX-WRI211115-4928300-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928300-1116-4-C/results/953597031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8640","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","10:20:00","MST","2021-12-14 17:20:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597039","UTAHDWQ_WQX-WRI211213-4928300-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928300-1214-4-C/results/953597039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8641","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","10:20:00","MST","2021-12-14 17:20:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597042","UTAHDWQ_WQX-WRI211213-4928300-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928300-1214-4-C/results/953597042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8642","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","10:40:00","MST","2022-01-11 17:40:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597065","UTAHDWQ_WQX-WRI220110-4928300-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928300-0111-4-C/results/953597065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8643","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","10:40:00","MST","2022-01-11 17:40:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597068","UTAHDWQ_WQX-WRI220110-4928300-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928300-0111-4-C/results/953597068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8644","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","10:00:00","MST","2022-02-08 17:00:00",NA,"0.812",812,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597076","UTAHDWQ_WQX-WRI220207-4928300-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928300-0208-4-C/results/953597076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8645","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","10:00:00","MST","2022-02-08 17:00:00",NA,"0.756",756,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597079","UTAHDWQ_WQX-WRI220207-4928300-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928300-0208-4-C/results/953597079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8646","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","10:20:00","MST","2022-03-08 17:20:00",NA,"0.868",868,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597102","UTAHDWQ_WQX-WRI220307-4928300-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928300-0308-4-C/results/953597102/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8647","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","10:20:00","MST","2022-03-08 17:20:00",NA,"0.833",833,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597105","UTAHDWQ_WQX-WRI220307-4928300-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928300-0308-4-C/results/953597105/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8648","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","11:40:00","MST","2021-10-25 18:40:00",NA,"2.37",2370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597113","UTAHDWQ_WQX-WRI211018-4928500-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","KAMAS LAGOONS","Facility Other",NA,"40.6538700000",40.65387,"-111.2915600000",-111.29156,"OK","16020101","UTAHDWQ_WQX-4928500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6538700000","-111.2915600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928500-1025-4-C/results/953597113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8649","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","11:40:00","MST","2021-10-25 18:40:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597116","UTAHDWQ_WQX-WRI211018-4928500-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","KAMAS LAGOONS","Facility Other",NA,"40.6538700000",40.65387,"-111.2915600000",-111.29156,"OK","16020101","UTAHDWQ_WQX-4928500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6538700000","-111.2915600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928500-1025-4-C/results/953597116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8650","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","09:50:00","MST","2021-12-14 16:50:00",NA,"5.2",5200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597140","UTAHDWQ_WQX-WRI211213-4928500-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","KAMAS LAGOONS","Facility Other",NA,"40.6538700000",40.65387,"-111.2915600000",-111.29156,"OK","16020101","UTAHDWQ_WQX-4928500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6538700000","-111.2915600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928500-1214-4-C/results/953597140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8651","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","09:50:00","MST","2021-12-14 16:50:00",NA,"5.82",5820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597143","UTAHDWQ_WQX-WRI211213-4928500-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","KAMAS LAGOONS","Facility Other",NA,"40.6538700000",40.65387,"-111.2915600000",-111.29156,"OK","16020101","UTAHDWQ_WQX-4928500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6538700000","-111.2915600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928500-1214-4-C/results/953597143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8652","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","09:30:00","MST","2021-10-25 16:30:00",NA,"0.244",244,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597167","UTAHDWQ_WQX-WRI211018-4928530-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928530-1025-4-C/results/953597167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8653","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","09:30:00","MST","2021-10-25 16:30:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597170","UTAHDWQ_WQX-WRI211018-4928530-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928530-1025-4-C/results/953597170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8654","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","09:30:00","MST","2021-11-16 16:30:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597193","UTAHDWQ_WQX-WRI211115-4928530-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928530-1116-4-C/results/953597193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8655","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","09:30:00","MST","2021-11-16 16:30:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597196","UTAHDWQ_WQX-WRI211115-4928530-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928530-1116-4-C/results/953597196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8656","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","09:00:00","MST","2021-12-14 16:00:00",NA,"0.609",609,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597204","UTAHDWQ_WQX-WRI211213-4928530-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928530-1214-4-C/results/953597204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8657","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","09:00:00","MST","2021-12-14 16:00:00",NA,"0.951",951,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597207","UTAHDWQ_WQX-WRI211213-4928530-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928530-1214-4-C/results/953597207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8658","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","09:00:00","MST","2022-02-08 16:00:00",NA,"0.571",571,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597231","UTAHDWQ_WQX-WRI220207-4928530-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928530-0208-4-C/results/953597231/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11939","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","09:00:00","MST","2022-02-08 16:00:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597234","UTAHDWQ_WQX-WRI220207-4928530-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928530-0208-4-C/results/953597234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8660","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","09:00:00","MST","2022-03-08 16:00:00",NA,"0.48",480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597257","UTAHDWQ_WQX-WRI220307-4928530-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928530-0308-4-C/results/953597257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8661","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","09:00:00","MST","2022-03-08 16:00:00",NA,"0.72",720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597260","UTAHDWQ_WQX-WRI220307-4928530-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928530-0308-4-C/results/953597260/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8662","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","10:00:00","MST","2021-10-25 17:00:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597267","UTAHDWQ_WQX-WRI211018-4928540-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928540-1025-4-C/results/953597267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8663","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","10:00:00","MST","2021-10-25 17:00:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597270","UTAHDWQ_WQX-WRI211018-4928540-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928540-1025-4-C/results/953597270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8664","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","09:55:00","MST","2021-11-16 16:55:00",NA,"0.319",319,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597293","UTAHDWQ_WQX-WRI211115-4928540-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928540-1116-4-C/results/953597293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8665","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","09:55:00","MST","2021-11-16 16:55:00",NA,"0.728",728,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597296","UTAHDWQ_WQX-WRI211115-4928540-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928540-1116-4-C/results/953597296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8666","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","09:20:00","MST","2021-12-14 16:20:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597303","UTAHDWQ_WQX-WRI211213-4928540-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928540-1214-4-C/results/953597303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8667","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","09:20:00","MST","2021-12-14 16:20:00",NA,"0.899",899,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597306","UTAHDWQ_WQX-WRI211213-4928540-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928540-1214-4-C/results/953597306/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8668","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","09:40:00","MST","2022-01-11 16:40:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597329","UTAHDWQ_WQX-WRI220110-4928540-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928540-0111-4-C/results/953597329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8669","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","09:40:00","MST","2022-01-11 16:40:00",NA,"0.8",800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597332","UTAHDWQ_WQX-WRI220110-4928540-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928540-0111-4-C/results/953597332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8670","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","09:15:00","MST","2022-02-08 16:15:00",NA,"0.608",608,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597339","UTAHDWQ_WQX-WRI220207-4928540-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928540-0208-4-C/results/953597339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8671","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","09:15:00","MST","2022-02-08 16:15:00",NA,"0.655",655,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597342","UTAHDWQ_WQX-WRI220207-4928540-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928540-0208-4-C/results/953597342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8672","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","09:15:00","MST","2022-03-08 16:15:00",NA,"0.629",629,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597365","UTAHDWQ_WQX-WRI220307-4928540-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928540-0308-4-C/results/953597365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8673","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","09:15:00","MST","2022-03-08 16:15:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597368","UTAHDWQ_WQX-WRI220307-4928540-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928540-0308-4-C/results/953597368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8674","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","10:15:00","MST","2021-10-25 17:15:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597375","UTAHDWQ_WQX-WRI211018-4928541-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928541-1025-4-C/results/953597375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8675","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","10:15:00","MST","2021-10-25 17:15:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597378","UTAHDWQ_WQX-WRI211018-4928541-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928541-1025-4-C/results/953597378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8676","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","10:05:00","MST","2021-11-16 17:05:00",NA,"0.304",304,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597401","UTAHDWQ_WQX-WRI211115-4928541-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928541-1116-4-C/results/953597401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8677","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","10:05:00","MST","2021-11-16 17:05:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597404","UTAHDWQ_WQX-WRI211115-4928541-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928541-1116-4-C/results/953597404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8678","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","09:20:00","MST","2021-12-14 16:20:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597411","UTAHDWQ_WQX-WRI211213-4928541-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928541-1214-4-C/results/953597411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8679","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","09:20:00","MST","2021-12-14 16:20:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597414","UTAHDWQ_WQX-WRI211213-4928541-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928541-1214-4-C/results/953597414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8680","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","09:45:00","MST","2022-01-11 16:45:00",NA,"0.504",504,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597437","UTAHDWQ_WQX-WRI220110-4928541-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928541-0111-4-C/results/953597437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8681","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","09:45:00","MST","2022-01-11 16:45:00",NA,"0.492",492,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597440","UTAHDWQ_WQX-WRI220110-4928541-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928541-0111-4-C/results/953597440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8682","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","09:20:00","MST","2022-02-08 16:20:00",NA,"0.68",680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597447","UTAHDWQ_WQX-WRI220207-4928541-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928541-0208-4-C/results/953597447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8683","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","09:20:00","MST","2022-02-08 16:20:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597450","UTAHDWQ_WQX-WRI220207-4928541-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928541-0208-4-C/results/953597450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8684","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","09:20:00","MST","2022-03-08 16:20:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597473","UTAHDWQ_WQX-WRI220307-4928541-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928541-0308-4-C/results/953597473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8685","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","09:20:00","MST","2022-03-08 16:20:00",NA,"0.849",849,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597476","UTAHDWQ_WQX-WRI220307-4928541-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928541-0308-4-C/results/953597476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8686","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","10:40:00","MST","2021-10-25 17:40:00",NA,"0.16",160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597483","UTAHDWQ_WQX-WRI211018-4929010-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929010-1025-4-C/results/953597483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8687","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","10:40:00","MST","2021-10-25 17:40:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597486","UTAHDWQ_WQX-WRI211018-4929010-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929010-1025-4-C/results/953597486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8688","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","10:30:00","MST","2021-11-16 17:30:00",NA,"0.098",98,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597509","UTAHDWQ_WQX-WRI211115-4929010-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929010-1116-4-C/results/953597509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8689","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","10:30:00","MST","2021-11-16 17:30:00",NA,"0.132",132,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597512","UTAHDWQ_WQX-WRI211115-4929010-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929010-1116-4-C/results/953597512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8690","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","09:30:00","MST","2021-12-14 16:30:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597520","UTAHDWQ_WQX-WRI211213-4929010-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929010-1214-4-C/results/953597520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8691","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","09:30:00","MST","2021-12-14 16:30:00",NA,"0.692",692,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597523","UTAHDWQ_WQX-WRI211213-4929010-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929010-1214-4-C/results/953597523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8692","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","09:40:00","MST","2022-03-08 16:40:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597546","UTAHDWQ_WQX-WRI220307-4929010-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929010-0308-4-C/results/953597546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8693","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","09:40:00","MST","2022-03-08 16:40:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597549","UTAHDWQ_WQX-WRI220307-4929010-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929010-0308-4-C/results/953597549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8694","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","11:00:00","MST","2021-10-25 18:00:00",NA,"0.133",133,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597556","UTAHDWQ_WQX-WRI211018-4929100-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929100-1025-4-C/results/953597556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8695","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","11:00:00","MST","2021-10-25 18:00:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597559","UTAHDWQ_WQX-WRI211018-4929100-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929100-1025-4-C/results/953597559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8696","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","10:45:00","MST","2021-11-16 17:45:00",NA,"0.135",135,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597582","UTAHDWQ_WQX-WRI211115-4929100-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929100-1116-4-C/results/953597582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8697","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","10:45:00","MST","2021-11-16 17:45:00",NA,"0.651",651,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597585","UTAHDWQ_WQX-WRI211115-4929100-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929100-1116-4-C/results/953597585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8698","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","09:45:00","MST","2021-12-14 16:45:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597592","UTAHDWQ_WQX-WRI211213-4929100-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929100-1214-4-C/results/953597592/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8699","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","09:45:00","MST","2021-12-14 16:45:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597595","UTAHDWQ_WQX-WRI211213-4929100-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929100-1214-4-C/results/953597595/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8700","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","09:50:00","MST","2022-03-08 16:50:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597618","UTAHDWQ_WQX-WRI220307-4929100-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929100-0308-4-C/results/953597618/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8701","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","09:50:00","MST","2022-03-08 16:50:00",NA,"0.3",300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597621","UTAHDWQ_WQX-WRI220307-4929100-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929100-0308-4-C/results/953597621/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8702","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","13:25:00","MST","2021-10-25 20:25:00",NA,"0.09",90,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597628","UTAHDWQ_WQX-WRI211018-4929200-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929200-1025-4-C/results/953597628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8703","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","13:25:00","MST","2021-10-25 20:25:00",NA,"0.09",90,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597631","UTAHDWQ_WQX-WRI211018-4929200-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929200-1025-4-C/results/953597631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8704","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:15:00","MST","2021-11-16 19:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597654","UTAHDWQ_WQX-WRI211115-4929200-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929200-1116-4-C/results/953597654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8705","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:15:00","MST","2021-11-16 19:15:00",NA,"0.097",97,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597657","UTAHDWQ_WQX-WRI211115-4929200-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929200-1116-4-C/results/953597657/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8706","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","10:40:00","MST","2021-12-14 17:40:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597664","UTAHDWQ_WQX-WRI211213-4929200-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929200-1214-4-C/results/953597664/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8707","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","10:40:00","MST","2021-12-14 17:40:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597667","UTAHDWQ_WQX-WRI211213-4929200-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929200-1214-4-C/results/953597667/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8708","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","11:20:00","MST","2022-01-11 18:20:00",NA,"0.244",244,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597690","UTAHDWQ_WQX-WRI220110-4929200-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929200-0111-4-C/results/953597690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8709","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","11:20:00","MST","2022-01-11 18:20:00",NA,"0.576",576,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597693","UTAHDWQ_WQX-WRI220110-4929200-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929200-0111-4-C/results/953597693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8710","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","10:30:00","MST","2022-02-08 17:30:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597700","UTAHDWQ_WQX-WRI220207-4929200-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929200-0208-4-C/results/953597700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8711","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","10:30:00","MST","2022-02-08 17:30:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597703","UTAHDWQ_WQX-WRI220207-4929200-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929200-0208-4-C/results/953597703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8712","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","11:10:00","MST","2022-03-08 18:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597726","UTAHDWQ_WQX-WRI220307-4929200-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929200-0308-4-C/results/953597726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8713","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","11:10:00","MST","2022-03-08 18:10:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597729","UTAHDWQ_WQX-WRI220307-4929200-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929200-0308-4-C/results/953597729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11994","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","13:30:00","MST","2021-10-25 20:30:00",NA,"0.144",144,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597736","UTAHDWQ_WQX-WRI211018-4929201-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929201-1025-4-C/results/953597736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8715","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","13:30:00","MST","2021-10-25 20:30:00",NA,"0.094",94,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597739","UTAHDWQ_WQX-WRI211018-4929201-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929201-1025-4-C/results/953597739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8716","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:25:00","MST","2021-11-16 19:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597762","UTAHDWQ_WQX-WRI211115-4929201-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929201-1116-4-C/results/953597762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11997","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:25:00","MST","2021-11-16 19:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597765","UTAHDWQ_WQX-WRI211115-4929201-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929201-1116-4-C/results/953597765/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8718","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","10:45:00","MST","2021-12-14 17:45:00",NA,"0.205",205,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597772","UTAHDWQ_WQX-WRI211213-4929201-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929201-1214-4-C/results/953597772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8719","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","10:45:00","MST","2021-12-14 17:45:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597775","UTAHDWQ_WQX-WRI211213-4929201-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929201-1214-4-C/results/953597775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8720","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","11:30:00","MST","2022-01-11 18:30:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597798","UTAHDWQ_WQX-WRI220110-4929201-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929201-0111-4-C/results/953597798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8721","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","11:30:00","MST","2022-01-11 18:30:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597801","UTAHDWQ_WQX-WRI220110-4929201-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929201-0111-4-C/results/953597801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8722","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","10:40:00","MST","2022-02-08 17:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597808","UTAHDWQ_WQX-WRI220207-4929201-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929201-0208-4-C/results/953597808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8723","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","10:40:00","MST","2022-02-08 17:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597811","UTAHDWQ_WQX-WRI220207-4929201-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929201-0208-4-C/results/953597811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12004","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","11:15:00","MST","2022-03-08 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597834","UTAHDWQ_WQX-WRI220307-4929201-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929201-0308-4-C/results/953597834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8725","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","11:15:00","MST","2022-03-08 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597837","UTAHDWQ_WQX-WRI220307-4929201-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929201-0308-4-C/results/953597837/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8726","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","15:25:00","MST","2021-10-25 22:25:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597844","UTAHDWQ_WQX-WRI211018-4929397-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929397-1025-4-C/results/953597844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12007","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","15:25:00","MST","2021-10-25 22:25:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597847","UTAHDWQ_WQX-WRI211018-4929397-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929397-1025-4-C/results/953597847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8728","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","14:25:00","MST","2021-11-16 21:25:00",NA,"0.124",124,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597870","UTAHDWQ_WQX-WRI211115-4929397-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929397-1116-4-C/results/953597870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8729","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","14:25:00","MST","2021-11-16 21:25:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597873","UTAHDWQ_WQX-WRI211115-4929397-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929397-1116-4-C/results/953597873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12010","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","15:45:00","MST","2021-10-25 22:45:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597881","UTAHDWQ_WQX-WRI211018-4929403-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929403-1025-4-C/results/953597881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8731","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","15:45:00","MST","2021-10-25 22:45:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597884","UTAHDWQ_WQX-WRI211018-4929403-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929403-1025-4-C/results/953597884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8732","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","14:45:00","MST","2021-11-16 21:45:00",NA,"0.132",132,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597907","UTAHDWQ_WQX-WRI211115-4929403-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929403-1116-4-C/results/953597907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8733","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","14:45:00","MST","2021-11-16 21:45:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597910","UTAHDWQ_WQX-WRI211115-4929403-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929403-1116-4-C/results/953597910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8734","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","16:20:00","MST","2021-10-25 23:20:00",NA,"0.108",108,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597918","UTAHDWQ_WQX-WRI211018-4929490-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929490-1025-4-C/results/953597918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8735","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","16:20:00","MST","2021-10-25 23:20:00",NA,"0.141",141,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597921","UTAHDWQ_WQX-WRI211018-4929490-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929490-1025-4-C/results/953597921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8736","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:55:00","MST","2021-11-16 19:55:00",NA,"0.089",89,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597944","UTAHDWQ_WQX-WRI211115-4929490-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929490-1116-4-C/results/953597944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8737","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:55:00","MST","2021-11-16 19:55:00",NA,"0.133",133,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597947","UTAHDWQ_WQX-WRI211115-4929490-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929490-1116-4-C/results/953597947/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8738","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","11:10:00","MST","2021-12-14 18:10:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597955","UTAHDWQ_WQX-WRI211213-4929490-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929490-1214-4-C/results/953597955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8739","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","11:10:00","MST","2021-12-14 18:10:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597958","UTAHDWQ_WQX-WRI211213-4929490-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929490-1214-4-C/results/953597958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8740","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","12:00:00","MST","2022-01-11 19:00:00",NA,"0.287",287,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597981","UTAHDWQ_WQX-WRI220110-4929490-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929490-0111-4-C/results/953597981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12021","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","12:00:00","MST","2022-01-11 19:00:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597984","UTAHDWQ_WQX-WRI220110-4929490-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929490-0111-4-C/results/953597984/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8742","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","14:10:00","MST","2021-10-25 21:10:00",NA,"0.123",123,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597992","UTAHDWQ_WQX-WRI211018-4929590-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929590-1025-4-C/results/953597992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8743","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","14:10:00","MST","2021-10-25 21:10:00",NA,"0.137",137,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953597995","UTAHDWQ_WQX-WRI211018-4929590-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929590-1025-4-C/results/953597995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8744","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","13:10:00","MST","2021-11-16 20:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598018","UTAHDWQ_WQX-WRI211115-4929590-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929590-1116-4-C/results/953598018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8745","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","13:10:00","MST","2021-11-16 20:10:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598021","UTAHDWQ_WQX-WRI211115-4929590-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929590-1116-4-C/results/953598021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8746","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","11:20:00","MST","2021-12-14 18:20:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598027","UTAHDWQ_WQX-WRI211213-4929590-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929590-1214-4-C/results/953598027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8747","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-11","12:15:00","MST","2022-01-11 19:15:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598050","UTAHDWQ_WQX-WRI220110-4929590-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929590-0111-4-C/results/953598050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8748","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-11","12:15:00","MST","2022-01-11 19:15:00",NA,"0.36",360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598053","UTAHDWQ_WQX-WRI220110-4929590-0111-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929590-0111-4-C/results/953598053/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8749","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-08","11:00:00","MST","2022-02-08 18:00:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598060","UTAHDWQ_WQX-WRI220207-4929590-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929590-0208-4-C/results/953598060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8750","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-08","11:00:00","MST","2022-02-08 18:00:00",NA,"0.167",167,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598063","UTAHDWQ_WQX-WRI220207-4929590-0208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:55:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929590-0208-4-C/results/953598063/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8751","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","11:45:00","MST","2022-03-08 18:45:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598086","UTAHDWQ_WQX-WRI220307-4929590-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929590-0308-4-C/results/953598086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8752","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","11:45:00","MST","2022-03-08 18:45:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598089","UTAHDWQ_WQX-WRI220307-4929590-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929590-0308-4-C/results/953598089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8753","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-07","08:30:00","MST","2021-10-07 15:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598099","UTAHDWQ_WQX-LAKES211004-4930007-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4930007-1007-4-C/results/953598099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8754","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-07","08:30:00","MST","2021-10-07 15:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598103","UTAHDWQ_WQX-LAKES211004-4930007-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4930007-1007-4-C/results/953598103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8755","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-07","08:35:00","MST","2021-10-07 15:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598130","UTAHDWQ_WQX-LAKES211004-4930009-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4930009-1007-4-C/results/953598130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8756","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-07","08:35:00","MST","2021-10-07 15:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598134","UTAHDWQ_WQX-LAKES211004-4930009-1007-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4930009-1007-4-C/results/953598134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8757","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","14:30:00","MST","2021-10-20 21:30:00",NA,"0.569",569,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598144","UTAHDWQ_WQX-NPSCAN211020-4930010-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:03",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4930010-1020-4-C/results/953598144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8758","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","14:30:00","MST","2021-10-20 21:30:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598147","UTAHDWQ_WQX-NPSCAN211020-4930010-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:04",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4930010-1020-4-C/results/953598147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8759","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","12:50:00","MST","2022-03-22 19:50:00",NA,"0.528",528,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598177","UTAHDWQ_WQX-NPSCAN220311-4930010-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:04",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4930010-0322-4-C/results/953598177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8760","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","12:50:00","MST","2022-03-22 19:50:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598180","UTAHDWQ_WQX-NPSCAN220311-4930010-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:05",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4930010-0322-4-C/results/953598180/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8761","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-18","11:30:00","MST","2021-11-18 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598206","UTAHDWQ_WQX-NFSASHLEY211117-4930017-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-NFS Ashley","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930017",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:05",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4930017-1118-4-C/results/953598206/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8762","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-18","11:30:00","MST","2021-11-18 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598209","UTAHDWQ_WQX-NFSASHLEY211117-4930017-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-NFS Ashley","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930017",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:05",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4930017-1118-4-C/results/953598209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8763","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-22","13:46:00","MST","2021-10-22 20:46:00",NA,"0.489",489,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598235","UTAHDWQ_WQX-NPSCAN211020-4930150-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:06",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4930150-1022-4-C/results/953598235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8764","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-22","13:46:00","MST","2021-10-22 20:46:00",NA,"0.463",463,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598238","UTAHDWQ_WQX-NPSCAN211020-4930150-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:06",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4930150-1022-4-C/results/953598238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8765","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-21","14:05:00","MST","2022-03-21 21:05:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598268","UTAHDWQ_WQX-NPSCAN220311-4930150-0321-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:07",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4930150-0321-4-C/results/953598268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8766","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-21","14:05:00","MST","2022-03-21 21:05:00",NA,"0.863",863,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598271","UTAHDWQ_WQX-NPSCAN220311-4930150-0321-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:07",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4930150-0321-4-C/results/953598271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8767","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-04","12:15:00","MST","2021-10-04 19:15:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598299","UTAHDWQ_WQX-UCASE2021-4933102-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","047","Paradise Creek 0.5km above USFS road 492 crossing near Whiterocks CG","River/Stream",NA,"40.6193100000",40.61931,"-109.9344800000",-109.93448,"OK","14060003","UTAHDWQ_WQX-4933102",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6193100000","-109.9344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933102-1004-4-C/results/953598299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8768","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-04","12:15:00","MST","2021-10-04 19:15:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598302","UTAHDWQ_WQX-UCASE2021-4933102-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","047","Paradise Creek 0.5km above USFS road 492 crossing near Whiterocks CG","River/Stream",NA,"40.6193100000",40.61931,"-109.9344800000",-109.93448,"OK","14060003","UTAHDWQ_WQX-4933102",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6193100000","-109.9344800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933102-1004-4-C/results/953598302/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8769","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-05","09:00:00","MST","2021-10-05 16:00:00",NA,"0.116",116,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598328","UTAHDWQ_WQX-UCASE2021-4933402-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","047","Unamed tributary to Little Brush Creek 550 meters bl FS Road 022 bl Brush Park","River/Stream",NA,"40.7719200000",40.77192,"-109.5532200000",-109.55322,"OK","14060002","UTAHDWQ_WQX-4933402",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7719200000","-109.5532200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933402-1005-4-C/results/953598328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8770","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-05","09:00:00","MST","2021-10-05 16:00:00",NA,"0.119",119,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598331","UTAHDWQ_WQX-UCASE2021-4933402-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","047","Unamed tributary to Little Brush Creek 550 meters bl FS Road 022 bl Brush Park","River/Stream",NA,"40.7719200000",40.77192,"-109.5532200000",-109.55322,"OK","14060002","UTAHDWQ_WQX-4933402",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7719200000","-109.5532200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933402-1005-4-C/results/953598331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8771","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-06","11:37:00","MST","2021-10-06 18:37:00",NA,"0.177",177,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598357","UTAHDWQ_WQX-UCASE2021-4933452-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Steel Creek 0.9 mile ab FS road 073 xing and 1.1 mile ab West Fork Smiths Fork","River/Stream",NA,"40.9510300000",40.95103,"-110.4962200000",-110.49622,"OK","14040107","UTAHDWQ_WQX-4933452",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9510300000","-110.4962200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933452-1006-4-C/results/953598357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12052","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-06","11:37:00","MST","2021-10-06 18:37:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598360","UTAHDWQ_WQX-UCASE2021-4933452-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Steel Creek 0.9 mile ab FS road 073 xing and 1.1 mile ab West Fork Smiths Fork","River/Stream",NA,"40.9510300000",40.95103,"-110.4962200000",-110.49622,"OK","14040107","UTAHDWQ_WQX-4933452",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9510300000","-110.4962200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933452-1006-4-C/results/953598360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8773","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-18","12:27:00","MST","2021-10-18 19:27:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598382","UTAHDWQ_WQX-UCASE2021-4933512-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","007","Corner Canyon 0.1 mile ab Haley Canyon Rd and bl First Water Canyon confluence","River/Stream",NA,"39.5834400000",39.58344,"-111.0512200000",-111.05122,"OK","14060007","UTAHDWQ_WQX-4933512",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5834400000","-111.0512200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933512-1018-4-C/results/953598382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8774","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-18","12:27:00","MST","2021-10-18 19:27:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598385","UTAHDWQ_WQX-UCASE2021-4933512-1018-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","007","Corner Canyon 0.1 mile ab Haley Canyon Rd and bl First Water Canyon confluence","River/Stream",NA,"39.5834400000",39.58344,"-111.0512200000",-111.05122,"OK","14060007","UTAHDWQ_WQX-4933512",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5834400000","-111.0512200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933512-1018-4-C/results/953598385/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8775","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","16:20:00","MST","2021-11-17 23:20:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598408","UTAHDWQ_WQX-NFSASHLEY211117-4935450-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","ROCK CREEK @ USFS BNDRY","River/Stream",NA,"40.5040300000",40.50403,"-110.5811100000",-110.58111,"OK","14060003","UTAHDWQ_WQX-4935450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5040300000","-110.5811100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935450-1117-4-C/results/953598408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8776","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","15:00:00","MST","2021-11-17 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598430","UTAHDWQ_WQX-NFSASHLEY211117-4935860-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch","River/Stream",NA,"40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935860-1117-4-C/results/953598430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8777","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","15:00:00","MST","2021-11-17 22:00:00",NA,"0.084",84,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598433","UTAHDWQ_WQX-NFSASHLEY211117-4935860-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch","River/Stream",NA,"40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935860-1117-4-C/results/953598433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8778","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","15:10:00","MST","2021-11-17 22:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598455","UTAHDWQ_WQX-NFSASHLEY211117-4935861-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch Replicate of 4935860","River/Stream","Replicate of 4935860","40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935861",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:13",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935861-1117-4-C/results/953598455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8779","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","15:10:00","MST","2021-11-17 22:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598458","UTAHDWQ_WQX-NFSASHLEY211117-4935861-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch Replicate of 4935860","River/Stream","Replicate of 4935860","40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935861",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:13",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935861-1117-4-C/results/953598458/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8780","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","12:20:00","MST","2021-11-17 19:20:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598480","UTAHDWQ_WQX-NFSASHLEY211117-4935970-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","LAKE FK R AB MOON LAKE","River/Stream",NA,"40.6032800000",40.60328,"-110.5201600000",-110.52016,"OK","14060003","UTAHDWQ_WQX-4935970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:15",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.6032800000","-110.5201600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935970-1117-4-C/results/953598480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8781","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","12:20:00","MST","2021-11-17 19:20:00",NA,"0.295",295,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598483","UTAHDWQ_WQX-NFSASHLEY211117-4935970-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","LAKE FK R AB MOON LAKE","River/Stream",NA,"40.6032800000",40.60328,"-110.5201600000",-110.52016,"OK","14060003","UTAHDWQ_WQX-4935970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:15",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.6032800000","-110.5201600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935970-1117-4-C/results/953598483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8782","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-14","10:15:00","MST","2021-10-14 17:15:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598509","UTAHDWQ_WQX-LAKES211012-4937010-1014-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal at Ouray-Randlett Rd Xing","Canal Irrigation",NA,"40.2250500000",40.22505,"-109.7029600000",-109.70296,"OK","14060001","UTAHDWQ_WQX-4937010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2250500000","-109.7029600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937010-1014-4-C/results/953598509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8783","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-14","10:15:00","MST","2021-10-14 17:15:00",NA,"0.572",572,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598513","UTAHDWQ_WQX-LAKES211012-4937010-1014-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal at Ouray-Randlett Rd Xing","Canal Irrigation",NA,"40.2250500000",40.22505,"-109.7029600000",-109.70296,"OK","14060001","UTAHDWQ_WQX-4937010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2250500000","-109.7029600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937010-1014-4-C/results/953598513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8784","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-14","10:20:00","MST","2021-10-14 17:20:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598540","UTAHDWQ_WQX-LAKES211012-4937120-1014-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal ab Pelican Lake at 7000 S Xing","Canal Irrigation",NA,"40.2032900000",40.20329,"-109.7029200000",-109.70292,"OK","14060001","UTAHDWQ_WQX-4937120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2032900000","-109.7029200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937120-1014-4-C/results/953598540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8785","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-14","10:20:00","MST","2021-10-14 17:20:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598544","UTAHDWQ_WQX-LAKES211012-4937120-1014-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal ab Pelican Lake at 7000 S Xing","Canal Irrigation",NA,"40.2032900000",40.20329,"-109.7029200000",-109.70292,"OK","14060001","UTAHDWQ_WQX-4937120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2032900000","-109.7029200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937120-1014-4-C/results/953598544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8786","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-14","10:25:00","MST","2021-10-14 17:25:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598571","UTAHDWQ_WQX-LAKES211012-4937121-1014-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal ab Pelican Lake at 7000 S Xing Replicate of 4937120","Canal Irrigation","Replicate of 4937120","40.2032900000",40.20329,"-109.7029200000",-109.70292,"OK","14060001","UTAHDWQ_WQX-4937121",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2032900000","-109.7029200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937121-1014-4-C/results/953598571/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12067","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-14","10:25:00","MST","2021-10-14 17:25:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598575","UTAHDWQ_WQX-LAKES211012-4937121-1014-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal ab Pelican Lake at 7000 S Xing Replicate of 4937120","Canal Irrigation","Replicate of 4937120","40.2032900000",40.20329,"-109.7029200000",-109.70292,"OK","14060001","UTAHDWQ_WQX-4937121",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2032900000","-109.7029200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937121-1014-4-C/results/953598575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8788","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-14","10:40:00","MST","2021-10-14 17:40:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598602","UTAHDWQ_WQX-LAKES211012-4937125-1014-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal at Mouth ab Pelican Lake","Canal Irrigation",NA,"40.1958800000",40.19588,"-109.6969900000",-109.69699,"OK","14060001","UTAHDWQ_WQX-4937125",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1958800000","-109.6969900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937125-1014-4-C/results/953598602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8789","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-14","10:40:00","MST","2021-10-14 17:40:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598606","UTAHDWQ_WQX-LAKES211012-4937125-1014-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal at Mouth ab Pelican Lake","Canal Irrigation",NA,"40.1958800000",40.19588,"-109.6969900000",-109.69699,"OK","14060001","UTAHDWQ_WQX-4937125",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1958800000","-109.6969900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937125-1014-4-C/results/953598606/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12070","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-14","11:30:00","MST","2021-10-14 18:30:00",NA,"0.778",778,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598633","UTAHDWQ_WQX-LAKES211012-4937130-1014-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937130-1014-2-C/results/953598633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8791","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-14","11:30:00","MST","2021-10-14 18:30:00",NA,"0.788",788,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598637","UTAHDWQ_WQX-LAKES211012-4937130-1014-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937130-1014-2-C/results/953598637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8792","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-14","11:55:00","MST","2021-10-14 18:55:00",NA,"0.742",742,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598664","UTAHDWQ_WQX-LAKES211012-4937140-1014-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937140-1014-2-C/results/953598664/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8793","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-14","11:55:00","MST","2021-10-14 18:55:00",NA,"0.834",834,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598668","UTAHDWQ_WQX-LAKES211012-4937140-1014-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937140-1014-2-C/results/953598668/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8794","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-14","11:35:00","MST","2021-10-14 18:35:00",NA,"0.757",757,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598678","UTAHDWQ_WQX-LAKES211012-4937180-1014-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937180-1014-2-C/results/953598678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8795","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-14","11:35:00","MST","2021-10-14 18:35:00",NA,"0.825",825,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598682","UTAHDWQ_WQX-LAKES211012-4937180-1014-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937180-1014-2-C/results/953598682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8796","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","15:30:00","MST","2021-10-19 22:30:00",NA,"0.086",86,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598690","UTAHDWQ_WQX-BORFG211018-4938513-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Flaming Gorge QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4938513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938513-1019-4-C/results/953598690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8797","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","15:30:00","MST","2021-10-19 22:30:00",NA,"0.141",141,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598694","UTAHDWQ_WQX-BORFG211018-4938513-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Flaming Gorge QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4938513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938513-1019-4-C/results/953598694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8798","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","15:00:00","MST","2021-10-19 22:00:00",NA,"0.298",298,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598721","UTAHDWQ_WQX-BORFG211018-4938550-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"40.9171800000",40.91718,"-109.4470900000",-109.44709,"OK","14040106","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9171800000","-109.4470900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938550-1019-2-C/results/953598721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8799","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","15:00:00","MST","2021-10-19 22:00:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598725","UTAHDWQ_WQX-BORFG211018-4938550-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"40.9171800000",40.91718,"-109.4470900000",-109.44709,"OK","14040106","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9171800000","-109.4470900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938550-1019-2-C/results/953598725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8800","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","13:00:00","MST","2021-10-19 20:00:00",NA,"0.303",303,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598733","UTAHDWQ_WQX-BORFG211018-4938570-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES NR HIDEOUT CMPGRD","Lake",NA,"40.9488500000",40.94885,"-109.6409700000",-109.64097,"OK","14040106","UTAHDWQ_WQX-4938570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9488500000","-109.6409700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938570-1019-2-C/results/953598733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8801","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","13:00:00","MST","2021-10-19 20:00:00",NA,"0.277",277,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598737","UTAHDWQ_WQX-BORFG211018-4938570-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES NR HIDEOUT CMPGRD","Lake",NA,"40.9488500000",40.94885,"-109.6409700000",-109.64097,"OK","14040106","UTAHDWQ_WQX-4938570",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9488500000","-109.6409700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938570-1019-2-C/results/953598737/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8802","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","13:30:00","MST","2021-10-19 20:30:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598745","UTAHDWQ_WQX-BORFG211018-4938573-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES SHEEP CK BAY","Lake",NA,"40.9249600000",40.92496,"-109.6757000000",-109.6757,"OK","14040106","UTAHDWQ_WQX-4938573",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9249600000","-109.6757000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938573-1019-2-C/results/953598745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8803","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","13:30:00","MST","2021-10-19 20:30:00",NA,"0.236",236,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598749","UTAHDWQ_WQX-BORFG211018-4938573-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES SHEEP CK BAY","Lake",NA,"40.9249600000",40.92496,"-109.6757000000",-109.6757,"OK","14040106","UTAHDWQ_WQX-4938573",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9249600000","-109.6757000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938573-1019-2-C/results/953598749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8804","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","09:30:00","MST","2021-10-19 16:30:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598757","UTAHDWQ_WQX-BORFG211018-4938600-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES ANTELOPE FLAT","Lake",NA,"40.9894000000",40.9894,"-109.5745900000",-109.57459,"OK","14040106","UTAHDWQ_WQX-4938600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9894000000","-109.5745900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938600-1019-2-C/results/953598757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8805","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","09:30:00","MST","2021-10-19 16:30:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598761","UTAHDWQ_WQX-BORFG211018-4938600-1019-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","FLAMING GORGE RES ANTELOPE FLAT","Lake",NA,"40.9894000000",40.9894,"-109.5745900000",-109.57459,"OK","14040106","UTAHDWQ_WQX-4938600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9894000000","-109.5745900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938600-1019-2-C/results/953598761/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8806","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","14:00:00","MST","2021-10-19 21:00:00",NA,"0.298",298,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598891","UTAHDWQ_WQX-BORFG211018-4938847-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","Sheep Creek at inlet to Flaming Gorge Reservoir","River/Stream",NA,"40.9207500000",40.92075,"-109.6893100000",-109.68931,"OK","14040106","UTAHDWQ_WQX-4938847",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9207500000","-109.6893100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938847-1019-4-C/results/953598891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8807","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","14:00:00","MST","2021-10-19 21:00:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598895","UTAHDWQ_WQX-BORFG211018-4938847-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","009","Sheep Creek at inlet to Flaming Gorge Reservoir","River/Stream",NA,"40.9207500000",40.92075,"-109.6893100000",-109.68931,"OK","14040106","UTAHDWQ_WQX-4938847",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.9207500000","-109.6893100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938847-1019-4-C/results/953598895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8808","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-05","11:15:00","MST","2021-10-05 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598924","UTAHDWQ_WQX-NPSETAL211001-4950800-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4950800-1005-4-C/results/953598924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8809","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-05","11:15:00","MST","2021-10-05 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598927","UTAHDWQ_WQX-NPSETAL211001-4950800-1005-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4950800-1005-4-C/results/953598927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8810","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-18","11:00:00","MST","2021-11-18 18:00:00",NA,"0.105",105,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598956","UTAHDWQ_WQX-NPSETAL211101-4950800-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4950800-1118-4-C/results/953598956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8811","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-18","11:00:00","MST","2021-11-18 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598959","UTAHDWQ_WQX-NPSETAL211101-4950800-1118-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4950800-1118-4-C/results/953598959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8812","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-16","13:05:00","MST","2022-03-16 20:05:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598973","UTAHDWQ_WQX-NPSETAL220312-4950800-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4950800-0316-4-C/results/953598973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8813","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-16","13:05:00","MST","2022-03-16 20:05:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598976","UTAHDWQ_WQX-NPSETAL220312-4950800-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4950800-0316-4-C/results/953598976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8814","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-06","10:10:00","MST","2021-10-06 17:10:00",NA,"0.689",689,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598990","UTAHDWQ_WQX-NPSETAL211001-4950920-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4950920-1006-4-C/results/953598990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8815","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-06","10:10:00","MST","2021-10-06 17:10:00",NA,"0.67",670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953598993","UTAHDWQ_WQX-NPSETAL211001-4950920-1006-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4950920-1006-4-C/results/953598993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8816","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","15:30:00","MST","2021-11-17 22:30:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599023","UTAHDWQ_WQX-NPSETAL211101-4950920-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4950920-1117-4-C/results/953599023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8817","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","15:30:00","MST","2021-11-17 22:30:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599026","UTAHDWQ_WQX-NPSETAL211101-4950920-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4950920-1117-4-C/results/953599026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8818","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-17","10:55:00","MST","2022-03-17 17:55:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599040","UTAHDWQ_WQX-NPSETAL220312-4950920-0317-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4950920-0317-4-C/results/953599040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8819","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-17","10:55:00","MST","2022-03-17 17:55:00",NA,"0.469",469,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599043","UTAHDWQ_WQX-NPSETAL220312-4950920-0317-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4950920-0317-4-C/results/953599043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8820","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-04","14:00:00","MST","2021-10-04 21:00:00",NA,"0.149",149,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599057","UTAHDWQ_WQX-NPSETAL211001-4951265-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951265-1004-4-C/results/953599057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8821","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-04","14:00:00","MST","2021-10-04 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599060","UTAHDWQ_WQX-NPSETAL211001-4951265-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951265-1004-4-C/results/953599060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8822","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","13:30:00","MST","2021-11-16 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599090","UTAHDWQ_WQX-NPSETAL211101-4951265-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951265-1116-4-C/results/953599090/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8823","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","13:30:00","MST","2021-11-16 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599093","UTAHDWQ_WQX-NPSETAL211101-4951265-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951265-1116-4-C/results/953599093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8824","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-04","14:05:00","MST","2021-10-04 21:05:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599107","UTAHDWQ_WQX-NPSETAL211001-4951266-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951266-1004-4-C/results/953599107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12105","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-04","14:05:00","MST","2021-10-04 21:05:00",NA,"0.093",93,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599110","UTAHDWQ_WQX-NPSETAL211001-4951266-1004-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951266-1004-4-C/results/953599110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8826","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-11","11:30:00","MST","2021-10-11 18:30:00",NA,"0.165",165,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599136","UTAHDWQ_WQX-BLMGSE211010-4951766-1011-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4951766-1011-4-C/results/953599136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8827","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-11","11:30:00","MST","2021-10-11 18:30:00",NA,"0.145",145,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599139","UTAHDWQ_WQX-BLMGSE211010-4951766-1011-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4951766-1011-4-C/results/953599139/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12108","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-10","12:43:00","MST","2021-10-10 19:43:00",NA,"1.45",1450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met. Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599162","UTAHDWQ_WQX-BLMGSE211010-4951850-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT US89 XING","River/Stream",NA,"37.1074900000",37.10749,"-111.9068500000",-111.90685,"OK","14070007","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1074900000","-111.9068500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4951850-1010-4-C/results/953599162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8829","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-02","14:30:00","MST","2021-10-02 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599172","UTAHDWQ_WQX-NPSETAL211001-4951855-1002-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951855-1002-4-C/results/953599172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8830","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-02","14:30:00","MST","2021-10-02 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599175","UTAHDWQ_WQX-NPSETAL211001-4951855-1002-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951855-1002-4-C/results/953599175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8831","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","14:15:00","MST","2021-11-02 21:15:00",NA,"0.11",110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599204","UTAHDWQ_WQX-NPSETAL211101-4951855-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951855-1102-4-C/results/953599204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8832","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","14:15:00","MST","2021-11-02 21:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599207","UTAHDWQ_WQX-NPSETAL211101-4951855-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951855-1102-4-C/results/953599207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8833","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","12:45:00","MST","2022-03-15 19:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599221","UTAHDWQ_WQX-NPSETAL220312-4951855-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4951855-0315-4-C/results/953599221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8834","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","12:45:00","MST","2022-03-15 19:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599224","UTAHDWQ_WQX-NPSETAL220312-4951855-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4951855-0315-4-C/results/953599224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8835","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-02","11:45:00","MST","2021-10-02 18:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599238","UTAHDWQ_WQX-NPSETAL211001-4951857-1002-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951857-1002-4-C/results/953599238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8836","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-02","11:45:00","MST","2021-10-02 18:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599241","UTAHDWQ_WQX-NPSETAL211001-4951857-1002-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951857-1002-4-C/results/953599241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8837","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","11:30:00","MST","2021-11-02 18:30:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599270","UTAHDWQ_WQX-NPSETAL211101-4951857-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951857-1102-4-C/results/953599270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8838","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","11:30:00","MST","2021-11-02 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599273","UTAHDWQ_WQX-NPSETAL211101-4951857-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951857-1102-4-C/results/953599273/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8839","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","15:30:00","MST","2021-10-20 22:30:00",NA,"0.782",782,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599291","UTAHDWQ_WQX-NPSCAN211020-4952380-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4952380-1020-4-C/results/953599291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8840","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","15:30:00","MST","2021-10-20 22:30:00",NA,"0.764",764,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599294","UTAHDWQ_WQX-NPSCAN211020-4952380-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4952380-1020-4-C/results/953599294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12121","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","12:10:00","MST","2022-03-22 19:10:00",NA,"0.569",569,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599324","UTAHDWQ_WQX-NPSCAN220311-4952380-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4952380-0322-4-C/results/953599324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8842","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","12:10:00","MST","2022-03-22 19:10:00",NA,"0.666",666,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599327","UTAHDWQ_WQX-NPSCAN220311-4952380-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:56:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4952380-0322-4-C/results/953599327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8843","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","16:40:00","MST","2021-10-20 23:40:00",NA,"0.958",958,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599357","UTAHDWQ_WQX-NPSCAN211020-4952400-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:00",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4952400-1020-4-C/results/953599357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12124","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","16:40:00","MST","2021-10-20 23:40:00",NA,"0.869",869,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599360","UTAHDWQ_WQX-NPSCAN211020-4952400-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:00",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4952400-1020-4-C/results/953599360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8845","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","13:05:00","MST","2022-03-22 20:05:00",NA,"0.575",575,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599390","UTAHDWQ_WQX-NPSCAN220311-4952400-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:02",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4952400-0322-4-C/results/953599390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8846","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","13:05:00","MST","2022-03-22 20:05:00",NA,"0.88",880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599393","UTAHDWQ_WQX-NPSCAN220311-4952400-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:02",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4952400-0322-4-C/results/953599393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8847","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-22","11:00:00","MST","2021-10-22 18:00:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599422","UTAHDWQ_WQX-BLMMOAB211022-4953060-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953060-1022-4-C/results/953599422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8848","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-22","11:00:00","MST","2021-10-22 18:00:00",NA,"0.173",173,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599425","UTAHDWQ_WQX-BLMMOAB211022-4953060-1022-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953060-1022-4-C/results/953599425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8849","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","14:00:00","MST","2021-11-30 21:00:00",NA,"0.111",111,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599454","UTAHDWQ_WQX-BLMMOAB211117-4953060-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953060-1130-4-C/results/953599454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8850","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","14:00:00","MST","2021-11-30 21:00:00",NA,"0.5",500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599457","UTAHDWQ_WQX-BLMMOAB211117-4953060-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953060-1130-4-C/results/953599457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8851","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-07","11:30:00","MST","2022-01-07 18:30:00",NA,"0.809",809,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599486","UTAHDWQ_WQX-BLMMOAB220107-4953060-0107-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953060-0107-4-C/results/953599486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8852","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-07","11:30:00","MST","2022-01-07 18:30:00",NA,"0.869",869,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599489","UTAHDWQ_WQX-BLMMOAB220107-4953060-0107-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953060-0107-4-C/results/953599489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8853","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-16","11:30:00","MST","2022-03-16 18:30:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599518","UTAHDWQ_WQX-BLMMOAB220301-4953060-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953060-0316-4-C/results/953599518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8854","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-16","11:30:00","MST","2022-03-16 18:30:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599521","UTAHDWQ_WQX-BLMMOAB220301-4953060-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953060-0316-4-C/results/953599521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8855","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-03","13:30:00","MST","2021-12-03 20:30:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599550","UTAHDWQ_WQX-BLMMOAB211203-4953173-1203-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","FISH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.3887500000",37.38875,"-109.6896300000",-109.68963,"OK","14080201","UTAHDWQ_WQX-4953173",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3887500000","-109.6896300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953173-1203-4-C/results/953599550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8856","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-03","13:30:00","MST","2021-12-03 20:30:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599553","UTAHDWQ_WQX-BLMMOAB211203-4953173-1203-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","FISH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.3887500000",37.38875,"-109.6896300000",-109.68963,"OK","14080201","UTAHDWQ_WQX-4953173",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3887500000","-109.6896300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953173-1203-4-C/results/953599553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8857","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-16","13:00:00","MST","2022-03-16 20:00:00",NA,"0.3",300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599582","UTAHDWQ_WQX-BLMMOAB220301-4953173-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","FISH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.3887500000",37.38875,"-109.6896300000",-109.68963,"OK","14080201","UTAHDWQ_WQX-4953173",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3887500000","-109.6896300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953173-0316-4-C/results/953599582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8858","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-16","13:00:00","MST","2022-03-16 20:00:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599585","UTAHDWQ_WQX-BLMMOAB220301-4953173-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","FISH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.3887500000",37.38875,"-109.6896300000",-109.68963,"OK","14080201","UTAHDWQ_WQX-4953173",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3887500000","-109.6896300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953173-0316-4-C/results/953599585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8859","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-29","11:00:00","MST","2021-10-29 18:00:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599614","UTAHDWQ_WQX-BLMMOAB211022-4953193-1029-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953193-1029-4-C/results/953599614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8860","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-29","11:00:00","MST","2021-10-29 18:00:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599617","UTAHDWQ_WQX-BLMMOAB211022-4953193-1029-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953193-1029-4-C/results/953599617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8861","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","16:00:00","MST","2021-11-17 23:00:00",NA,"0.101",101,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599646","UTAHDWQ_WQX-BLMMOAB211117-4953193-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953193-1117-4-C/results/953599646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8862","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","16:00:00","MST","2021-11-17 23:00:00",NA,"0.112",112,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599649","UTAHDWQ_WQX-BLMMOAB211117-4953193-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953193-1117-4-C/results/953599649/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12143","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-03","10:30:00","MST","2021-12-03 17:30:00",NA,"0.106",106,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599658","UTAHDWQ_WQX-BLMMOAB211203-4953193-1203-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953193-1203-4-C/results/953599658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8864","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-03","10:30:00","MST","2021-12-03 17:30:00",NA,"0.216",216,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599661","UTAHDWQ_WQX-BLMMOAB211203-4953193-1203-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953193-1203-4-C/results/953599661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8865","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-20","11:30:00","MST","2022-01-20 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599690","UTAHDWQ_WQX-BLMMOAB220107-4953193-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953193-0120-4-C/results/953599690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12146","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-20","11:30:00","MST","2022-01-20 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599693","UTAHDWQ_WQX-BLMMOAB220107-4953193-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953193-0120-4-C/results/953599693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8867","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","11:00:00","MST","2022-03-02 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599722","UTAHDWQ_WQX-BLMMOAB220301-4953193-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953193-0302-4-C/results/953599722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8868","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","11:00:00","MST","2022-03-02 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599725","UTAHDWQ_WQX-BLMMOAB220301-4953193-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953193-0302-4-C/results/953599725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8869","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-29","11:45:00","MST","2021-10-29 18:45:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599754","UTAHDWQ_WQX-BLMMOAB211022-4953205-1029-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953205-1029-4-C/results/953599754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8870","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-29","11:45:00","MST","2021-10-29 18:45:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599757","UTAHDWQ_WQX-BLMMOAB211022-4953205-1029-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953205-1029-4-C/results/953599757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8871","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","15:00:00","MST","2021-11-17 22:00:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599786","UTAHDWQ_WQX-BLMMOAB211117-4953205-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953205-1117-4-C/results/953599786/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8872","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","15:00:00","MST","2021-11-17 22:00:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599789","UTAHDWQ_WQX-BLMMOAB211117-4953205-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953205-1117-4-C/results/953599789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8873","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-03","11:00:00","MST","2021-12-03 18:00:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599798","UTAHDWQ_WQX-BLMMOAB211203-4953205-1203-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953205-1203-4-C/results/953599798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8874","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-03","11:00:00","MST","2021-12-03 18:00:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599801","UTAHDWQ_WQX-BLMMOAB211203-4953205-1203-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953205-1203-4-C/results/953599801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8875","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-20","12:15:00","MST","2022-01-20 19:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599830","UTAHDWQ_WQX-BLMMOAB220107-4953205-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953205-0120-4-C/results/953599830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8876","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-20","12:15:00","MST","2022-01-20 19:15:00",NA,"0.164",164,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599833","UTAHDWQ_WQX-BLMMOAB220107-4953205-0120-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953205-0120-4-C/results/953599833/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8877","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","14:00:00","MST","2022-03-02 21:00:00",NA,"0.16",160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599862","UTAHDWQ_WQX-BLMMOAB220301-4953205-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953205-0302-4-C/results/953599862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8878","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","14:00:00","MST","2022-03-02 21:00:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599865","UTAHDWQ_WQX-BLMMOAB220301-4953205-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953205-0302-4-C/results/953599865/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12159","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-16","14:00:00","MST","2022-03-16 21:00:00",NA,"0.617",617,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599894","UTAHDWQ_WQX-BLMMOAB220301-4953210-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COMB WASH BL FISH CK","River/Stream",NA,"37.3841600000",37.38416,"-109.6684600000",-109.66846,"OK","14080201","UTAHDWQ_WQX-4953210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3841600000","-109.6684600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953210-0316-4-C/results/953599894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8880","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-16","14:00:00","MST","2022-03-16 21:00:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599897","UTAHDWQ_WQX-BLMMOAB220301-4953210-0316-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COMB WASH BL FISH CK","River/Stream",NA,"37.3841600000",37.38416,"-109.6684600000",-109.66846,"OK","14080201","UTAHDWQ_WQX-4953210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3841600000","-109.6684600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953210-0316-4-C/results/953599897/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8881","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-10","17:40:00","MST","2021-10-11 00:40:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599923","UTAHDWQ_WQX-BLMGSE211010-4953980-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4953980-1010-4-C/results/953599923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12162","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-10","17:40:00","MST","2021-10-11 00:40:00",NA,"0.314",314,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599926","UTAHDWQ_WQX-BLMGSE211010-4953980-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4953980-1010-4-C/results/953599926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8883","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-10","17:57:00","MST","2021-10-11 00:57:00",NA,"0.264",264,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599949","UTAHDWQ_WQX-BLMGSE211010-4953981-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4953981-1010-4-C/results/953599949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8884","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-10","17:57:00","MST","2021-10-11 00:57:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599952","UTAHDWQ_WQX-BLMGSE211010-4953981-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4953981-1010-4-C/results/953599952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8885","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-01","15:00:00","MST","2021-10-01 22:00:00",NA,"0.193",193,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599981","UTAHDWQ_WQX-NPSETAL211001-4954770-1001-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954770-1001-4-C/results/953599981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8886","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-01","15:00:00","MST","2021-10-01 22:00:00",NA,"0.191",191,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953599984","UTAHDWQ_WQX-NPSETAL211001-4954770-1001-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954770-1001-4-C/results/953599984/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8887","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-01","15:30:00","MST","2021-11-01 22:30:00",NA,"0.413",413,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600014","UTAHDWQ_WQX-NPSETAL211101-4954770-1101-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954770-1101-4-C/results/953600014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8888","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-01","15:30:00","MST","2021-11-01 22:30:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600017","UTAHDWQ_WQX-NPSETAL211101-4954770-1101-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954770-1101-4-C/results/953600017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8889","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","12:00:00","MST","2022-02-22 19:00:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600031","UTAHDWQ_WQX-NPSETAL220220-4954770-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954770-0222-4-C/results/953600031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8890","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","12:00:00","MST","2022-02-22 19:00:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600034","UTAHDWQ_WQX-NPSETAL220220-4954770-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954770-0222-4-C/results/953600034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8891","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","12:00:00","MST","2022-03-14 19:00:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600064","UTAHDWQ_WQX-NPSETAL220312-4954770-0314-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954770-0314-4-C/results/953600064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8892","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","12:00:00","MST","2022-03-14 19:00:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600067","UTAHDWQ_WQX-NPSETAL220312-4954770-0314-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954770-0314-4-C/results/953600067/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8893","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-01","11:30:00","MST","2021-10-01 18:30:00",NA,"0.262",262,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600081","UTAHDWQ_WQX-NPSETAL211001-4954775-1001-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954775-1001-4-C/results/953600081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8894","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-01","11:30:00","MST","2021-10-01 18:30:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600084","UTAHDWQ_WQX-NPSETAL211001-4954775-1001-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954775-1001-4-C/results/953600084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8895","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-01","11:30:00","MST","2021-11-01 18:30:00",NA,"0.191",191,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600114","UTAHDWQ_WQX-NPSETAL211101-4954775-1101-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954775-1101-4-C/results/953600114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8896","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-01","11:30:00","MST","2021-11-01 18:30:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600117","UTAHDWQ_WQX-NPSETAL211101-4954775-1101-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954775-1101-4-C/results/953600117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8897","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","14:45:00","MST","2022-02-22 21:45:00",NA,"0.344",344,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600131","UTAHDWQ_WQX-NPSETAL220220-4954775-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954775-0222-4-C/results/953600131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8898","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","14:45:00","MST","2022-02-22 21:45:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600134","UTAHDWQ_WQX-NPSETAL220220-4954775-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954775-0222-4-C/results/953600134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8899","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-14","15:00:00","MST","2022-03-14 22:00:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600164","UTAHDWQ_WQX-NPSETAL220312-4954775-0314-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954775-0314-4-C/results/953600164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8900","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-14","15:00:00","MST","2022-03-14 22:00:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600167","UTAHDWQ_WQX-NPSETAL220312-4954775-0314-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954775-0314-4-C/results/953600167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12181","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-03","11:45:00","MST","2021-10-03 18:45:00",NA,"0.111",111,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600181","UTAHDWQ_WQX-NPSETAL211001-4954780-1003-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954780-1003-4-C/results/953600181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8902","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-03","11:45:00","MST","2021-10-03 18:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600184","UTAHDWQ_WQX-NPSETAL211001-4954780-1003-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954780-1003-4-C/results/953600184/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8903","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-15","14:00:00","MST","2021-11-15 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600214","UTAHDWQ_WQX-NPSETAL211101-4954780-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954780-1115-4-C/results/953600214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12184","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-15","14:00:00","MST","2021-11-15 21:00:00",NA,"0.085",85,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600217","UTAHDWQ_WQX-NPSETAL211101-4954780-1115-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954780-1115-4-C/results/953600217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8905","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-20","15:45:00","MST","2022-02-20 22:45:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600231","UTAHDWQ_WQX-NPSETAL220220-4954780-0220-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954780-0220-4-C/results/953600231/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8906","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-20","15:45:00","MST","2022-02-20 22:45:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600234","UTAHDWQ_WQX-NPSETAL220220-4954780-0220-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954780-0220-4-C/results/953600234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8907","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-13","12:30:00","MST","2022-03-13 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600264","UTAHDWQ_WQX-NPSETAL220312-4954780-0313-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954780-0313-4-C/results/953600264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8908","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-13","12:30:00","MST","2022-03-13 19:30:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600267","UTAHDWQ_WQX-NPSETAL220312-4954780-0313-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954780-0313-4-C/results/953600267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12189","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-10","14:00:00","MST","2021-10-10 21:00:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600281","UTAHDWQ_WQX-NPSETAL211001-4954795-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954795-1010-4-C/results/953600281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8910","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-10","14:00:00","MST","2021-10-10 21:00:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600284","UTAHDWQ_WQX-NPSETAL211001-4954795-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954795-1010-4-C/results/953600284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8911","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-14","13:50:00","MST","2021-11-14 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600314","UTAHDWQ_WQX-NPSETAL211101-4954795-1114-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954795-1114-4-C/results/953600314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12192","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-14","13:50:00","MST","2021-11-14 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600317","UTAHDWQ_WQX-NPSETAL211101-4954795-1114-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954795-1114-4-C/results/953600317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8913","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-20","12:30:00","MST","2022-02-20 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600331","UTAHDWQ_WQX-NPSETAL220220-4954795-0220-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954795-0220-4-C/results/953600331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8914","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-20","12:30:00","MST","2022-02-20 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600334","UTAHDWQ_WQX-NPSETAL220220-4954795-0220-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954795-0220-4-C/results/953600334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8915","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-12","14:30:00","MST","2022-03-12 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600364","UTAHDWQ_WQX-NPSETAL220312-4954795-0312-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954795-0312-4-C/results/953600364/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8916","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-12","14:30:00","MST","2022-03-12 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600367","UTAHDWQ_WQX-NPSETAL220312-4954795-0312-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954795-0312-4-C/results/953600367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8917","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","12:00:00","MST","2021-10-19 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600379","UTAHDWQ_WQX-UCASE2021-4955352-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Cresent Creek 0.8 mile bl Bull Pass and Wickiop Pass Rd","River/Stream",NA,"38.0732800000",38.07328,"-110.7466000000",-110.7466,"OK","14070001","UTAHDWQ_WQX-4955352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.0732800000","-110.7466000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955352-1019-4-C/results/953600379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8918","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","12:00:00","MST","2021-10-19 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600382","UTAHDWQ_WQX-UCASE2021-4955352-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Cresent Creek 0.8 mile bl Bull Pass and Wickiop Pass Rd","River/Stream",NA,"38.0732800000",38.07328,"-110.7466000000",-110.7466,"OK","14070001","UTAHDWQ_WQX-4955352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.0732800000","-110.7466000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955352-1019-4-C/results/953600382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8919","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-20","10:30:00","MST","2021-10-20 17:30:00",NA,"0.314",314,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600408","UTAHDWQ_WQX-UCASE2021-4955402-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","055","Fremont River at milepost 82.6 on SR 24","River/Stream",NA,"38.2844200000",38.28442,"-111.2067300000",-111.20673,"OK","14070003","UTAHDWQ_WQX-4955402",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2844200000","-111.2067300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955402-1020-4-C/results/953600408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8920","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-20","10:30:00","MST","2021-10-20 17:30:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600411","UTAHDWQ_WQX-UCASE2021-4955402-1020-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","055","Fremont River at milepost 82.6 on SR 24","River/Stream",NA,"38.2844200000",38.28442,"-111.2067300000",-111.20673,"OK","14070003","UTAHDWQ_WQX-4955402",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2844200000","-111.2067300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955402-1020-4-C/results/953600411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8921","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","13:30:00","MST","2021-11-17 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600438","UTAHDWQ_WQX-BLMMOAB211117-4955780-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955780-1117-4-C/results/953600438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8922","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","13:30:00","MST","2021-11-17 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600441","UTAHDWQ_WQX-BLMMOAB211117-4955780-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955780-1117-4-C/results/953600441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8923","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","12:00:00","MST","2021-12-13 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600470","UTAHDWQ_WQX-BLMMOAB211203-4955780-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955780-1213-4-C/results/953600470/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8924","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","12:00:00","MST","2021-12-13 19:00:00",NA,"0.088",88,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600473","UTAHDWQ_WQX-BLMMOAB211203-4955780-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955780-1213-4-C/results/953600473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8925","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-28","15:00:00","MST","2022-03-28 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600502","UTAHDWQ_WQX-BLMMOAB220328-4955780-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955780-0328-4-C/results/953600502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8926","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-28","15:00:00","MST","2022-03-28 22:00:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600505","UTAHDWQ_WQX-BLMMOAB220328-4955780-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955780-0328-4-C/results/953600505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8927","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","14:00:00","MST","2021-11-17 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600534","UTAHDWQ_WQX-BLMMOAB211117-4955790-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955790-1117-4-C/results/953600534/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8928","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","14:00:00","MST","2021-11-17 21:00:00",NA,"0.087",87,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600537","UTAHDWQ_WQX-BLMMOAB211117-4955790-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955790-1117-4-C/results/953600537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8929","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","13:30:00","MST","2021-12-13 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600566","UTAHDWQ_WQX-BLMMOAB211203-4955790-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955790-1213-4-C/results/953600566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8930","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","13:30:00","MST","2021-12-13 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600569","UTAHDWQ_WQX-BLMMOAB211203-4955790-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:57:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955790-1213-4-C/results/953600569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8931","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-16","15:00:00","MST","2022-02-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600598","UTAHDWQ_WQX-BLMMOAB220216-4955790-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955790-0216-4-C/results/953600598/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8932","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-16","15:00:00","MST","2022-02-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600601","UTAHDWQ_WQX-BLMMOAB220216-4955790-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955790-0216-4-C/results/953600601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8933","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-01","15:00:00","MST","2022-03-01 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600630","UTAHDWQ_WQX-BLMMOAB220301-4955790-0301-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955790-0301-4-C/results/953600630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8934","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-01","15:00:00","MST","2022-03-01 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600633","UTAHDWQ_WQX-BLMMOAB220301-4955790-0301-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955790-0301-4-C/results/953600633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8935","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-28","15:30:00","MST","2022-03-28 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600662","UTAHDWQ_WQX-BLMMOAB220328-4955790-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955790-0328-4-C/results/953600662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8936","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-28","15:30:00","MST","2022-03-28 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600665","UTAHDWQ_WQX-BLMMOAB220328-4955790-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955790-0328-4-C/results/953600665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8937","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","14:00:00","MST","2021-11-17 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600694","UTAHDWQ_WQX-BLMMOAB211117-4955791-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955791-1117-4-C/results/953600694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8938","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","14:00:00","MST","2021-11-17 21:00:00",NA,"0.088",88,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600697","UTAHDWQ_WQX-BLMMOAB211117-4955791-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955791-1117-4-C/results/953600697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8939","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","13:30:00","MST","2021-12-13 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600726","UTAHDWQ_WQX-BLMMOAB211203-4955791-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955791-1213-4-C/results/953600726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8940","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","13:30:00","MST","2021-12-13 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600729","UTAHDWQ_WQX-BLMMOAB211203-4955791-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955791-1213-4-C/results/953600729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8941","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-16","15:00:00","MST","2022-02-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600758","UTAHDWQ_WQX-BLMMOAB220216-4955791-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955791-0216-4-C/results/953600758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8942","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-16","15:00:00","MST","2022-02-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600761","UTAHDWQ_WQX-BLMMOAB220216-4955791-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955791-0216-4-C/results/953600761/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8943","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-01","15:00:00","MST","2022-03-01 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600790","UTAHDWQ_WQX-BLMMOAB220301-4955791-0301-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955791-0301-4-C/results/953600790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8944","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-01","15:00:00","MST","2022-03-01 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600793","UTAHDWQ_WQX-BLMMOAB220301-4955791-0301-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955791-0301-4-C/results/953600793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8945","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","13:00:00","MST","2021-11-17 20:00:00",NA,"0.1",100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600822","UTAHDWQ_WQX-BLMMOAB211117-4955810-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955810-1117-4-C/results/953600822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8946","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","13:00:00","MST","2021-11-17 20:00:00",NA,"0.117",117,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600825","UTAHDWQ_WQX-BLMMOAB211117-4955810-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955810-1117-4-C/results/953600825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12227","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","13:00:00","MST","2021-12-13 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600854","UTAHDWQ_WQX-BLMMOAB211203-4955810-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955810-1213-4-C/results/953600854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8948","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-13","13:00:00","MST","2021-12-13 20:00:00",NA,"0.119",119,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600857","UTAHDWQ_WQX-BLMMOAB211203-4955810-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955810-1213-4-C/results/953600857/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8949","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-16","14:00:00","MST","2022-02-16 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600886","UTAHDWQ_WQX-BLMMOAB220216-4955810-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955810-0216-4-C/results/953600886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12230","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-16","14:00:00","MST","2022-02-16 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600889","UTAHDWQ_WQX-BLMMOAB220216-4955810-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955810-0216-4-C/results/953600889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8951","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-01","13:00:00","MST","2022-03-01 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600918","UTAHDWQ_WQX-BLMMOAB220301-4955810-0301-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955810-0301-4-C/results/953600918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8952","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-01","13:00:00","MST","2022-03-01 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600921","UTAHDWQ_WQX-BLMMOAB220301-4955810-0301-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955810-0301-4-C/results/953600921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8953","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-28","13:30:00","MST","2022-03-28 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600950","UTAHDWQ_WQX-BLMMOAB220328-4955810-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955810-0328-4-C/results/953600950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8954","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-28","13:30:00","MST","2022-03-28 20:30:00",NA,"0.173",173,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600953","UTAHDWQ_WQX-BLMMOAB220328-4955810-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955810-0328-4-C/results/953600953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8955","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","12:30:00","MST","2021-11-17 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600982","UTAHDWQ_WQX-BLMMOAB211117-4955815-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955815-1117-4-C/results/953600982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8956","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","12:30:00","MST","2021-11-17 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953600985","UTAHDWQ_WQX-BLMMOAB211117-4955815-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955815-1117-4-C/results/953600985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8957","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-16","13:00:00","MST","2022-02-16 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601014","UTAHDWQ_WQX-BLMMOAB220216-4955815-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955815-0216-4-C/results/953601014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8958","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-16","13:00:00","MST","2022-02-16 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601017","UTAHDWQ_WQX-BLMMOAB220216-4955815-0216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955815-0216-4-C/results/953601017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8959","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-28","13:00:00","MST","2022-03-28 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601046","UTAHDWQ_WQX-BLMMOAB220328-4955815-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955815-0328-4-C/results/953601046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8960","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-28","13:00:00","MST","2022-03-28 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601049","UTAHDWQ_WQX-BLMMOAB220328-4955815-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955815-0328-4-C/results/953601049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8961","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-21","13:16:00","MST","2021-10-21 20:16:00",NA,"0.798",798,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601079","UTAHDWQ_WQX-NPSCAN211020-4956290-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4956290-1021-4-C/results/953601079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8962","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","13:16:00","MST","2021-10-21 20:16:00",NA,"0.762",762,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601082","UTAHDWQ_WQX-NPSCAN211020-4956290-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4956290-1021-4-C/results/953601082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8963","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","16:00:00","MST","2022-03-22 23:00:00",NA,"0.688",688,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601112","UTAHDWQ_WQX-NPSCAN220311-4956290-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4956290-0322-4-C/results/953601112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8964","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","16:00:00","MST","2022-03-22 23:00:00",NA,"0.733",733,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601115","UTAHDWQ_WQX-NPSCAN220311-4956290-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4956290-0322-4-C/results/953601115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8965","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-21","13:20:00","MST","2021-10-21 20:20:00",NA,"0.785",785,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601145","UTAHDWQ_WQX-NPSCAN211020-4956291-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4956291-1021-4-C/results/953601145/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8966","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","13:20:00","MST","2021-10-21 20:20:00",NA,"0.791",791,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601148","UTAHDWQ_WQX-NPSCAN211020-4956291-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4956291-1021-4-C/results/953601148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8967","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","16:05:00","MST","2022-03-22 23:05:00",NA,"0.689",689,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601178","UTAHDWQ_WQX-NPSCAN220311-4956291-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4956291-0322-4-C/results/953601178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8968","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","16:05:00","MST","2022-03-22 23:05:00",NA,"0.723",723,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601181","UTAHDWQ_WQX-NPSCAN220311-4956291-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4956291-0322-4-C/results/953601181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8969","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-29","15:00:00","MST","2022-03-29 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601208","UTAHDWQ_WQX-JRBBH220329-4990006-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4990006-0329-4-C/results/953601208/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8970","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","15:00:00","MST","2022-03-29 22:00:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601211","UTAHDWQ_WQX-JRBBH220329-4990006-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4990006-0329-4-C/results/953601211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8971","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","09:00:00","MST","2021-11-30 16:00:00",NA,"3.22",3220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601237","UTAHDWQ_WQX-DC211130-4990110-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990110-1130-4-C/results/953601237/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8972","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","09:00:00","MST","2021-11-30 16:00:00",NA,"3.39",3390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601241","UTAHDWQ_WQX-DC211130-4990110-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990110-1130-4-C/results/953601241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8973","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","09:20:00","MST","2022-01-25 16:20:00",NA,"3.39",3390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601264","UTAHDWQ_WQX-DC220125-4990110-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990110-0125-4-C/results/953601264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8974","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","09:20:00","MST","2022-01-25 16:20:00",NA,"3.27",3270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601268","UTAHDWQ_WQX-DC220125-4990110-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990110-0125-4-C/results/953601268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8975","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","09:30:00","MST","2022-02-22 16:30:00",NA,"2.56",2560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601291","UTAHDWQ_WQX-DC220222-4990110-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990110-0222-4-C/results/953601291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8976","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","09:30:00","MST","2022-02-22 16:30:00",NA,"2.55",2550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601295","UTAHDWQ_WQX-DC220222-4990110-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990110-0222-4-C/results/953601295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8977","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","08:45:00","MST","2022-03-22 15:45:00",NA,"2.92",2920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601318","UTAHDWQ_WQX-DC220322-4990110-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990110-0322-4-C/results/953601318/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8978","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","08:45:00","MST","2022-03-22 15:45:00",NA,"2.89",2890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601322","UTAHDWQ_WQX-DC220322-4990110-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990110-0322-4-C/results/953601322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8979","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","09:05:00","MST","2021-11-30 16:05:00",NA,"3.43",3430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601336","UTAHDWQ_WQX-DC211130-4990112-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990112-1130-4-C/results/953601336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8980","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","09:05:00","MST","2021-11-30 16:05:00",NA,"3.35",3350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601340","UTAHDWQ_WQX-DC211130-4990112-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990112-1130-4-C/results/953601340/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8981","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","09:25:00","MST","2022-01-25 16:25:00",NA,"3.34",3340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601363","UTAHDWQ_WQX-DC220125-4990112-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990112-0125-4-C/results/953601363/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8982","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","09:25:00","MST","2022-01-25 16:25:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601367","UTAHDWQ_WQX-DC220125-4990112-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990112-0125-4-C/results/953601367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8983","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","09:35:00","MST","2022-02-22 16:35:00",NA,"2.56",2560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601390","UTAHDWQ_WQX-DC220222-4990112-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990112-0222-4-C/results/953601390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8984","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","09:35:00","MST","2022-02-22 16:35:00",NA,"2.59",2590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601394","UTAHDWQ_WQX-DC220222-4990112-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990112-0222-4-C/results/953601394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8985","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","08:50:00","MST","2022-03-22 15:50:00",NA,"2.81",2810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601417","UTAHDWQ_WQX-DC220322-4990112-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990112-0322-4-C/results/953601417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8986","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","08:50:00","MST","2022-03-22 15:50:00",NA,"2.92",2920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601421","UTAHDWQ_WQX-DC220322-4990112-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990112-0322-4-C/results/953601421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8987","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","11:30:00","MST","2022-01-25 18:30:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601435","UTAHDWQ_WQX-DC220125-4990135-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Kay's Ck. at Valley View Dr. and 1850 N.","River/Stream",NA,"41.0887100000",41.08871,"-111.9090400000",-111.90904,"OK","16020102","UTAHDWQ_WQX-4990135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0887100000","-111.9090400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990135-0125-4-C/results/953601435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8988","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","11:30:00","MST","2022-01-25 18:30:00",NA,"0.391",391,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601439","UTAHDWQ_WQX-DC220125-4990135-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Kay's Ck. at Valley View Dr. and 1850 N.","River/Stream",NA,"41.0887100000",41.08871,"-111.9090400000",-111.90904,"OK","16020102","UTAHDWQ_WQX-4990135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0887100000","-111.9090400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990135-0125-4-C/results/953601439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8989","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","11:25:00","MST","2022-03-22 18:25:00",NA,"0.407",407,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601462","UTAHDWQ_WQX-DC220322-4990135-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Kay's Ck. at Valley View Dr. and 1850 N.","River/Stream",NA,"41.0887100000",41.08871,"-111.9090400000",-111.90904,"OK","16020102","UTAHDWQ_WQX-4990135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0887100000","-111.9090400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990135-0322-4-C/results/953601462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8990","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","11:25:00","MST","2022-03-22 18:25:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601466","UTAHDWQ_WQX-DC220322-4990135-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Kay's Ck. at Valley View Dr. and 1850 N.","River/Stream",NA,"41.0887100000",41.08871,"-111.9090400000",-111.90904,"OK","16020102","UTAHDWQ_WQX-4990135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0887100000","-111.9090400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990135-0322-4-C/results/953601466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8991","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","11:35:00","MST","2022-03-22 18:35:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601480","UTAHDWQ_WQX-DC220322-4990137-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Middle Fork Kays Creek at Fernwood Dr Xing","River/Stream",NA,"41.0895200000",41.08952,"-111.9062800000",-111.90628,"OK","16020102","UTAHDWQ_WQX-4990137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0895200000","-111.9062800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990137-0322-4-C/results/953601480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8992","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","11:35:00","MST","2022-03-22 18:35:00",NA,"0.413",413,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601484","UTAHDWQ_WQX-DC220322-4990137-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Middle Fork Kays Creek at Fernwood Dr Xing","River/Stream",NA,"41.0895200000",41.08952,"-111.9062800000",-111.90628,"OK","16020102","UTAHDWQ_WQX-4990137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0895200000","-111.9062800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990137-0322-4-C/results/953601484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8993","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","09:30:00","MST","2021-11-30 16:30:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601498","UTAHDWQ_WQX-DC211130-4990190-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990190-1130-4-C/results/953601498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8994","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","09:30:00","MST","2021-11-30 16:30:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601502","UTAHDWQ_WQX-DC211130-4990190-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990190-1130-4-C/results/953601502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8995","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","09:35:00","MST","2022-01-25 16:35:00",NA,"1.68",1680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601525","UTAHDWQ_WQX-DC220125-4990190-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990190-0125-4-C/results/953601525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8996","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","09:35:00","MST","2022-01-25 16:35:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601529","UTAHDWQ_WQX-DC220125-4990190-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990190-0125-4-C/results/953601529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8997","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","09:50:00","MST","2022-02-22 16:50:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601552","UTAHDWQ_WQX-DC220222-4990190-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990190-0222-4-C/results/953601552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8998","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","09:50:00","MST","2022-02-22 16:50:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601556","UTAHDWQ_WQX-DC220222-4990190-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990190-0222-4-C/results/953601556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8999","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","09:00:00","MST","2022-03-22 16:00:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601579","UTAHDWQ_WQX-DC220322-4990190-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990190-0322-4-C/results/953601579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9000","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","09:00:00","MST","2022-03-22 16:00:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601583","UTAHDWQ_WQX-DC220322-4990190-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990190-0322-4-C/results/953601583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9001","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","11:10:00","MST","2021-11-30 18:10:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601597","UTAHDWQ_WQX-DC211130-4990220-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990220-1130-4-C/results/953601597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9002","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","11:10:00","MST","2021-11-30 18:10:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601601","UTAHDWQ_WQX-DC211130-4990220-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990220-1130-4-C/results/953601601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9003","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","11:05:00","MST","2022-01-25 18:05:00",NA,"0.373",373,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601624","UTAHDWQ_WQX-DC220125-4990220-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990220-0125-4-C/results/953601624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9004","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","11:05:00","MST","2022-01-25 18:05:00",NA,"0.371",371,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601628","UTAHDWQ_WQX-DC220125-4990220-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990220-0125-4-C/results/953601628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9005","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","11:15:00","MST","2022-02-22 18:15:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601651","UTAHDWQ_WQX-DC220222-4990220-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990220-0222-4-C/results/953601651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12286","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","11:15:00","MST","2022-02-22 18:15:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601655","UTAHDWQ_WQX-DC220222-4990220-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990220-0222-4-C/results/953601655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9007","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","10:45:00","MST","2022-03-22 17:45:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601678","UTAHDWQ_WQX-DC220322-4990220-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990220-0322-4-C/results/953601678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9008","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","10:45:00","MST","2022-03-22 17:45:00",NA,"0.379",379,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601682","UTAHDWQ_WQX-DC220322-4990220-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990220-0322-4-C/results/953601682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12289","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","11:15:00","MST","2021-11-30 18:15:00",NA,"0.295",295,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601696","UTAHDWQ_WQX-DC211130-4990225-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990225-1130-4-C/results/953601696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9010","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","11:15:00","MST","2021-11-30 18:15:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601700","UTAHDWQ_WQX-DC211130-4990225-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990225-1130-4-C/results/953601700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9011","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","11:15:00","MST","2022-01-25 18:15:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601723","UTAHDWQ_WQX-DC220125-4990225-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990225-0125-4-C/results/953601723/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12292","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","11:15:00","MST","2022-01-25 18:15:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601727","UTAHDWQ_WQX-DC220125-4990225-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990225-0125-4-C/results/953601727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9013","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","11:35:00","MST","2022-02-22 18:35:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601750","UTAHDWQ_WQX-DC220222-4990225-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990225-0222-4-C/results/953601750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9014","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","11:35:00","MST","2022-02-22 18:35:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601754","UTAHDWQ_WQX-DC220222-4990225-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990225-0222-4-C/results/953601754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12295","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","11:00:00","MST","2022-03-22 18:00:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601777","UTAHDWQ_WQX-DC220322-4990225-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990225-0322-4-C/results/953601777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9016","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","11:00:00","MST","2022-03-22 18:00:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601781","UTAHDWQ_WQX-DC220322-4990225-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990225-0322-4-C/results/953601781/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9017","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","11:20:00","MST","2021-11-30 18:20:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601795","UTAHDWQ_WQX-DC211130-4990226-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990226-1130-4-C/results/953601795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9018","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","11:20:00","MST","2021-11-30 18:20:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601799","UTAHDWQ_WQX-DC211130-4990226-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990226-1130-4-C/results/953601799/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9019","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","11:20:00","MST","2022-01-25 18:20:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601822","UTAHDWQ_WQX-DC220125-4990226-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990226-0125-4-C/results/953601822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9020","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","11:20:00","MST","2022-01-25 18:20:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601826","UTAHDWQ_WQX-DC220125-4990226-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990226-0125-4-C/results/953601826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9021","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","11:40:00","MST","2022-02-22 18:40:00",NA,"0.3",300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601849","UTAHDWQ_WQX-DC220222-4990226-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990226-0222-4-C/results/953601849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9022","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","11:40:00","MST","2022-02-22 18:40:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601853","UTAHDWQ_WQX-DC220222-4990226-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990226-0222-4-C/results/953601853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9023","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","11:05:00","MST","2022-03-22 18:05:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601876","UTAHDWQ_WQX-DC220322-4990226-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990226-0322-4-C/results/953601876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9024","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","11:05:00","MST","2022-03-22 18:05:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601880","UTAHDWQ_WQX-DC220322-4990226-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990226-0322-4-C/results/953601880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9025","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","12:10:00","MST","2021-11-30 19:10:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601894","UTAHDWQ_WQX-DC211130-4990228-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990228-1130-4-C/results/953601894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9026","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","12:10:00","MST","2021-11-30 19:10:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601898","UTAHDWQ_WQX-DC211130-4990228-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990228-1130-4-C/results/953601898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9027","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","12:15:00","MST","2022-01-25 19:15:00",NA,"0.387",387,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601921","UTAHDWQ_WQX-DC220125-4990228-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990228-0125-4-C/results/953601921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9028","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","12:15:00","MST","2022-01-25 19:15:00",NA,"0.413",413,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601925","UTAHDWQ_WQX-DC220125-4990228-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:58:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990228-0125-4-C/results/953601925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9029","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","11:25:00","MST","2022-02-22 18:25:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601948","UTAHDWQ_WQX-DC220222-4990228-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990228-0222-4-C/results/953601948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9030","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","11:25:00","MST","2022-02-22 18:25:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601952","UTAHDWQ_WQX-DC220222-4990228-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990228-0222-4-C/results/953601952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9031","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","11:15:00","MST","2022-03-22 18:15:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601975","UTAHDWQ_WQX-DC220322-4990228-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990228-0322-4-C/results/953601975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9032","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","11:15:00","MST","2022-03-22 18:15:00",NA,"0.387",387,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601979","UTAHDWQ_WQX-DC220322-4990228-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990228-0322-4-C/results/953601979/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9033","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","09:40:00","MST","2021-11-30 16:40:00",NA,"1.68",1680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601993","UTAHDWQ_WQX-DC211130-4990280-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990280-1130-4-C/results/953601993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9034","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","09:40:00","MST","2021-11-30 16:40:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953601997","UTAHDWQ_WQX-DC211130-4990280-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990280-1130-4-C/results/953601997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9035","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","09:45:00","MST","2022-01-25 16:45:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602020","UTAHDWQ_WQX-DC220125-4990280-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990280-0125-4-C/results/953602020/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9036","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","09:45:00","MST","2022-01-25 16:45:00",NA,"1.79",1790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602024","UTAHDWQ_WQX-DC220125-4990280-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990280-0125-4-C/results/953602024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9037","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","10:05:00","MST","2022-02-22 17:05:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602047","UTAHDWQ_WQX-DC220222-4990280-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990280-0222-4-C/results/953602047/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9038","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","10:05:00","MST","2022-02-22 17:05:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602051","UTAHDWQ_WQX-DC220222-4990280-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990280-0222-4-C/results/953602051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9039","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","09:20:00","MST","2022-03-22 16:20:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602074","UTAHDWQ_WQX-DC220322-4990280-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990280-0322-4-C/results/953602074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9040","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","09:20:00","MST","2022-03-22 16:20:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602078","UTAHDWQ_WQX-DC220322-4990280-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990280-0322-4-C/results/953602078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9041","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","10:55:00","MST","2021-11-30 17:55:00",NA,"0.56",560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602092","UTAHDWQ_WQX-DC211130-4990296-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990296-1130-4-C/results/953602092/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9042","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","10:55:00","MST","2021-11-30 17:55:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602096","UTAHDWQ_WQX-DC211130-4990296-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990296-1130-4-C/results/953602096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9043","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","10:55:00","MST","2022-01-25 17:55:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602119","UTAHDWQ_WQX-DC220125-4990296-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990296-0125-4-C/results/953602119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9044","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","10:55:00","MST","2022-01-25 17:55:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602123","UTAHDWQ_WQX-DC220125-4990296-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990296-0125-4-C/results/953602123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9045","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","11:05:00","MST","2022-02-22 18:05:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602146","UTAHDWQ_WQX-DC220222-4990296-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990296-0222-4-C/results/953602146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9046","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","11:05:00","MST","2022-02-22 18:05:00",NA,"0.287",287,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602150","UTAHDWQ_WQX-DC220222-4990296-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990296-0222-4-C/results/953602150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9047","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","10:35:00","MST","2022-03-22 17:35:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602173","UTAHDWQ_WQX-DC220322-4990296-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990296-0322-4-C/results/953602173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9048","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","10:35:00","MST","2022-03-22 17:35:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602177","UTAHDWQ_WQX-DC220322-4990296-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990296-0322-4-C/results/953602177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9049","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","09:55:00","MST","2021-11-30 16:55:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602191","UTAHDWQ_WQX-DC211130-4990300-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990300-1130-4-C/results/953602191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9050","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","09:55:00","MST","2021-11-30 16:55:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602195","UTAHDWQ_WQX-DC211130-4990300-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990300-1130-4-C/results/953602195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9051","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","09:55:00","MST","2022-01-25 16:55:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602217","UTAHDWQ_WQX-DC220125-4990300-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990300-0125-4-C/results/953602217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12332","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","09:55:00","MST","2022-01-25 16:55:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602221","UTAHDWQ_WQX-DC220125-4990300-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990300-0125-4-C/results/953602221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9053","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","10:15:00","MST","2022-02-22 17:15:00",NA,"0.976",976,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602244","UTAHDWQ_WQX-DC220222-4990300-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990300-0222-4-C/results/953602244/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9054","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","10:15:00","MST","2022-02-22 17:15:00",NA,"0.984",984,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602248","UTAHDWQ_WQX-DC220222-4990300-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990300-0222-4-C/results/953602248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12335","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","09:25:00","MST","2022-03-22 16:25:00",NA,"0.967",967,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602271","UTAHDWQ_WQX-DC220322-4990300-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990300-0322-4-C/results/953602271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9056","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","09:25:00","MST","2022-03-22 16:25:00",NA,"0.995",995,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602275","UTAHDWQ_WQX-DC220322-4990300-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990300-0322-4-C/results/953602275/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9057","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","10:40:00","MST","2021-11-30 17:40:00",NA,"0.108",108,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602289","UTAHDWQ_WQX-DC211130-4990306-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990306-1130-4-C/results/953602289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9058","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","10:40:00","MST","2021-11-30 17:40:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602293","UTAHDWQ_WQX-DC211130-4990306-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990306-1130-4-C/results/953602293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9059","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","10:40:00","MST","2022-01-25 17:40:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602316","UTAHDWQ_WQX-DC220125-4990306-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990306-0125-4-C/results/953602316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9060","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","10:40:00","MST","2022-01-25 17:40:00",NA,"0.222",222,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602320","UTAHDWQ_WQX-DC220125-4990306-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990306-0125-4-C/results/953602320/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9061","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","10:50:00","MST","2022-02-22 17:50:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602343","UTAHDWQ_WQX-DC220222-4990306-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990306-0222-4-C/results/953602343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9062","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","10:50:00","MST","2022-02-22 17:50:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602347","UTAHDWQ_WQX-DC220222-4990306-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990306-0222-4-C/results/953602347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9063","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","10:20:00","MST","2022-03-22 17:20:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602370","UTAHDWQ_WQX-DC220322-4990306-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990306-0322-4-C/results/953602370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9064","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","10:20:00","MST","2022-03-22 17:20:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602374","UTAHDWQ_WQX-DC220322-4990306-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990306-0322-4-C/results/953602374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9065","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","10:30:00","MST","2021-11-30 17:30:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602388","UTAHDWQ_WQX-DC211130-4990308-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990308-1130-4-C/results/953602388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9066","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","10:30:00","MST","2021-11-30 17:30:00",NA,"0.241",241,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602392","UTAHDWQ_WQX-DC211130-4990308-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990308-1130-4-C/results/953602392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9067","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","10:25:00","MST","2022-01-25 17:25:00",NA,"0.239",239,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602415","UTAHDWQ_WQX-DC220125-4990308-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990308-0125-4-C/results/953602415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9068","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","10:25:00","MST","2022-01-25 17:25:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602419","UTAHDWQ_WQX-DC220125-4990308-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990308-0125-4-C/results/953602419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9069","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","10:40:00","MST","2022-02-22 17:40:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602442","UTAHDWQ_WQX-DC220222-4990308-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990308-0222-4-C/results/953602442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9070","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","10:40:00","MST","2022-02-22 17:40:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602446","UTAHDWQ_WQX-DC220222-4990308-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990308-0222-4-C/results/953602446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9071","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","09:50:00","MST","2022-03-22 16:50:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602469","UTAHDWQ_WQX-DC220322-4990308-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990308-0322-4-C/results/953602469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9072","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","09:50:00","MST","2022-03-22 16:50:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602473","UTAHDWQ_WQX-DC220322-4990308-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990308-0322-4-C/results/953602473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9073","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","08:00:00","MST","2021-11-30 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602487","UTAHDWQ_WQX-DC211130-4990555-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990555-1130-4-C/results/953602487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9074","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","08:00:00","MST","2021-11-30 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602491","UTAHDWQ_WQX-DC211130-4990555-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990555-1130-4-C/results/953602491/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9075","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-25","08:30:00","MST","2022-01-25 15:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602514","UTAHDWQ_WQX-DC220125-4990555-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990555-0125-4-C/results/953602514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9076","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-25","08:30:00","MST","2022-01-25 15:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602518","UTAHDWQ_WQX-DC220125-4990555-0125-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990555-0125-4-C/results/953602518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9077","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-22","09:00:00","MST","2022-02-22 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602541","UTAHDWQ_WQX-DC220222-4990555-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990555-0222-4-C/results/953602541/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9078","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-22","09:00:00","MST","2022-02-22 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602545","UTAHDWQ_WQX-DC220222-4990555-0222-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990555-0222-4-C/results/953602545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9079","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-22","08:00:00","MST","2022-03-22 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602568","UTAHDWQ_WQX-DC220322-4990555-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990555-0322-4-C/results/953602568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12360","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-22","08:00:00","MST","2022-03-22 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602572","UTAHDWQ_WQX-DC220322-4990555-0322-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990555-0322-4-C/results/953602572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9081","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","12:00:00","MST","2021-10-26 19:00:00",NA,"3",3000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602584","UTAHDWQ_WQX-UIP211025-4991297-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at 8000 W North Temple","Canal Drainage",NA,"40.7715500000",40.77155,"-112.0830800000",-112.08308,"OK","16020204","UTAHDWQ_WQX-4991297",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7715500000","-112.0830800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211025-4991297-1026-4-C/results/953602584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9082","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-09","11:30:00","MST","2021-10-09 18:30:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602599","UTAHDWQ_WQX-UIP211004-4991302-1009-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at 6550 W 1100 N","Canal Drainage",NA,"40.7944700000",40.79447,"-112.0488000000",-112.0488,"OK","16020204","UTAHDWQ_WQX-4991302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7944700000","-112.0488000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211004-4991302-1009-4-C/results/953602599/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-09","11:15:00","MST","2021-10-09 18:15:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602613","UTAHDWQ_WQX-UIP211004-4991303-1009-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at 6000 W 700 N","Canal Drainage",NA,"40.7839600000",40.78396,"-112.0440800000",-112.04408,"OK","16020204","UTAHDWQ_WQX-4991303",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7839600000","-112.0440800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211004-4991303-1009-4-C/results/953602613/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9084","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","08:45:00","MST","2021-10-19 15:45:00",NA,"2.12",2120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602627","UTAHDWQ_WQX-UIP211018-4991303-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at 6000 W 700 N","Canal Drainage",NA,"40.7839600000",40.78396,"-112.0440800000",-112.04408,"OK","16020204","UTAHDWQ_WQX-4991303",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7839600000","-112.0440800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211018-4991303-1019-4-C/results/953602627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9085","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","09:30:00","MST","2021-10-26 16:30:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602641","UTAHDWQ_WQX-UIP211025-4991303-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at 6000 W 700 N","Canal Drainage",NA,"40.7839600000",40.78396,"-112.0440800000",-112.04408,"OK","16020204","UTAHDWQ_WQX-4991303",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7839600000","-112.0440800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211025-4991303-1026-4-C/results/953602641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9086","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-09","10:50:00","MST","2021-10-09 17:50:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602656","UTAHDWQ_WQX-UIP211004-4991305-1009-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at end of John Cannon Dr","Canal Drainage",NA,"40.7873200000",40.78732,"-112.0164200000",-112.01642,"OK","16020204","UTAHDWQ_WQX-4991305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7873200000","-112.0164200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211004-4991305-1009-4-C/results/953602656/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9087","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","08:30:00","MST","2021-10-19 15:30:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602670","UTAHDWQ_WQX-UIP211018-4991305-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at end of John Cannon Dr","Canal Drainage",NA,"40.7873200000",40.78732,"-112.0164200000",-112.01642,"OK","16020204","UTAHDWQ_WQX-4991305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7873200000","-112.0164200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211018-4991305-1019-4-C/results/953602670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9088","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","09:15:00","MST","2021-10-26 16:15:00",NA,"0.961",961,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602684","UTAHDWQ_WQX-UIP211025-4991305-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at end of John Cannon Dr","Canal Drainage",NA,"40.7873200000",40.78732,"-112.0164200000",-112.01642,"OK","16020204","UTAHDWQ_WQX-4991305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7873200000","-112.0164200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211025-4991305-1026-4-C/results/953602684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9089","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-10","08:40:00","MST","2021-11-10 15:40:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602698","UTAHDWQ_WQX-UIP211108-4991305-1110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at end of John Cannon Dr","Canal Drainage",NA,"40.7873200000",40.78732,"-112.0164200000",-112.01642,"OK","16020204","UTAHDWQ_WQX-4991305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7873200000","-112.0164200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211108-4991305-1110-4-C/results/953602698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9090","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-09","11:50:00","MST","2021-10-09 18:50:00",NA,"2.07",2070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602712","UTAHDWQ_WQX-UIP211004-4991313-1009-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at 5600 W 150 S","Canal Drainage",NA,"40.7656700000",40.76567,"-112.0254300000",-112.02543,"OK","16020204","UTAHDWQ_WQX-4991313",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7656700000","-112.0254300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211004-4991313-1009-4-C/results/953602712/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9091","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","12:20:00","MST","2021-10-26 19:20:00",NA,"0.574",574,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602726","UTAHDWQ_WQX-UIP211025-4991313-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","035","Storm Drain Channel at 5600 W 150 S","Canal Drainage",NA,"40.7656700000",40.76567,"-112.0254300000",-112.02543,"OK","16020204","UTAHDWQ_WQX-4991313",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7656700000","-112.0254300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211025-4991313-1026-4-C/results/953602726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9092","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-01","10:15:00","MST","2021-11-01 17:15:00",NA,"3.49",3490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602740","UTAHDWQ_WQX-JRBBH211101-4994175-1101-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211101-4994175-1101-4-C/results/953602740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9093","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-01","10:15:00","MST","2021-11-01 17:15:00",NA,"3.48",3480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602743","UTAHDWQ_WQX-JRBBH211101-4994175-1101-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211101-4994175-1101-4-C/results/953602743/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9094","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-29","12:00:00","MST","2021-11-29 19:00:00",NA,"3.78",3780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602770","UTAHDWQ_WQX-JRBBH211129-4994175-1129-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211129-4994175-1129-4-C/results/953602770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9095","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-29","12:00:00","MST","2021-11-29 19:00:00",NA,"3.84",3840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602773","UTAHDWQ_WQX-JRBBH211129-4994175-1129-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211129-4994175-1129-4-C/results/953602773/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9096","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-29","13:15:00","MST","2022-03-29 20:15:00",NA,"3.52",3520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"No Corresponding field measurements available",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602800","UTAHDWQ_WQX-JRBBH220329-4994175-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994175-0329-4-C/results/953602800/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9097","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","13:15:00","MST","2022-03-29 20:15:00",NA,"3.57",3570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"No Corresponding field measurements available",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602803","UTAHDWQ_WQX-JRBBH220329-4994175-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994175-0329-4-C/results/953602803/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9098","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-01","09:45:00","MST","2021-11-01 16:45:00",NA,"3.51",3510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602827","UTAHDWQ_WQX-JRBBH211101-4994270-1101-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211101-4994270-1101-4-C/results/953602827/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9099","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-01","09:45:00","MST","2021-11-01 16:45:00",NA,"3.61",3610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602830","UTAHDWQ_WQX-JRBBH211101-4994270-1101-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211101-4994270-1101-4-C/results/953602830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9100","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-29","11:20:00","MST","2021-11-29 18:20:00",NA,"3.62",3620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602857","UTAHDWQ_WQX-JRBBH211129-4994270-1129-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211129-4994270-1129-4-C/results/953602857/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9101","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-29","11:20:00","MST","2021-11-29 18:20:00",NA,"3.41",3410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602860","UTAHDWQ_WQX-JRBBH211129-4994270-1129-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211129-4994270-1129-4-C/results/953602860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9102","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-29","12:30:00","MST","2022-03-29 19:30:00",NA,"3.7",3700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"No Corresponding field measurements available",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602887","UTAHDWQ_WQX-JRBBH220329-4994270-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994270-0329-4-C/results/953602887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9103","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","12:30:00","MST","2022-03-29 19:30:00",NA,"3.79",3790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)","No Corresponding field measurements available",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602890","UTAHDWQ_WQX-JRBBH220329-4994270-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994270-0329-4-C/results/953602890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9104","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-29","12:35:00","MST","2022-03-29 19:35:00",NA,"3.51",3510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"No Corresponding field measurements available",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602914","UTAHDWQ_WQX-JRBBH220329-4994271-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994271-0329-4-C/results/953602914/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9105","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-29","12:35:00","MST","2022-03-29 19:35:00",NA,"3.63",3630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"No Corresponding field measurements available",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602917","UTAHDWQ_WQX-JRBBH220329-4994271-0329-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994271-0329-4-C/results/953602917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9106","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","13:35:00","MST","2021-10-28 20:35:00",NA,"1.62",1620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602948","UTAHDWQ_WQX-UTLK211025-4994790-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4994790-1028-4-C/results/953602948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9107","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","13:35:00","MST","2021-10-28 20:35:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602953","UTAHDWQ_WQX-UTLK211025-4994790-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4994790-1028-4-C/results/953602953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9108","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","11:45:00","MST","2021-10-26 18:45:00",NA,"2.92",2920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602958","UTAHDWQ_WQX-ULSTORM211025-4994946-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","Spring Creek Park parking lot manhole 1m south of south curb","Storm Sewer",NA,"40.3625600000",40.36256,"-111.8380400000",-111.83804,"OK","16020201","UTAHDWQ_WQX-4994946",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3625600000","-111.8380400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4994946-1026-4-C/results/953602958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9109","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","11:45:00","MST","2021-10-26 18:45:00",NA,"2.93",2930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602967","UTAHDWQ_WQX-ULSTORM211025-4994946-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","Spring Creek Park parking lot manhole 1m south of south curb","Storm Sewer",NA,"40.3625600000",40.36256,"-111.8380400000",-111.83804,"OK","16020201","UTAHDWQ_WQX-4994946",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3625600000","-111.8380400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4994946-1026-4-C/results/953602967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9110","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","13:15:00","MST","2021-10-28 20:15:00",NA,"2.22",2220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602985","UTAHDWQ_WQX-UTLK211025-4994950-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4994950-1028-4-C/results/953602985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9111","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","13:15:00","MST","2021-10-28 20:15:00",NA,"2.28",2280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953602990","UTAHDWQ_WQX-UTLK211025-4994950-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4994950-1028-4-C/results/953602990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9112","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","14:40:00","MST","2021-11-16 21:40:00",NA,"2.14",2140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603004","UTAHDWQ_WQX-UTLK211115-4994950-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4994950-1116-4-C/results/953603004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9113","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","14:40:00","MST","2021-11-16 21:40:00",NA,"2.12",2120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603009","UTAHDWQ_WQX-UTLK211115-4994950-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4994950-1116-4-C/results/953603009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9114","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","15:00:00","MST","2022-01-24 22:00:00",NA,"2.71",2710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603022","UTAHDWQ_WQX-UTLK220124-4994950-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4994950-0124-4-C/results/953603022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9115","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","15:00:00","MST","2022-01-24 22:00:00",NA,"2.66",2660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603027","UTAHDWQ_WQX-UTLK220124-4994950-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4994950-0124-4-C/results/953603027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9116","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","14:30:00","MST","2022-02-15 21:30:00",NA,"2.82",2820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603040","UTAHDWQ_WQX-UTLK220215-4994950-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4994950-0215-4-C/results/953603040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9117","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","14:30:00","MST","2022-02-15 21:30:00",NA,"2.8",2800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603045","UTAHDWQ_WQX-UTLK220215-4994950-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4994950-0215-4-C/results/953603045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12398","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","15:55:00","MST","2022-03-15 22:55:00",NA,"2.1",2100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603059","UTAHDWQ_WQX-UTLK220314-4994950-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4994950-0315-4-C/results/953603059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9119","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","15:55:00","MST","2022-03-15 22:55:00",NA,"2.23",2230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603064","UTAHDWQ_WQX-UTLK220314-4994950-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4994950-0315-4-C/results/953603064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9120","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-27","13:00:00","MST","2021-10-27 20:00:00",NA,"1.85",1850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603074","UTAHDWQ_WQX-NPSETAL211001-4994970-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4994970-1027-4-C/results/953603074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12401","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-27","13:00:00","MST","2021-10-27 20:00:00",NA,"1.82",1820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603077","UTAHDWQ_WQX-NPSETAL211001-4994970-1027-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4994970-1027-4-C/results/953603077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9122","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","11:15:00","MST","2021-11-17 18:15:00",NA,"1.62",1620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603106","UTAHDWQ_WQX-NPSETAL211101-4994970-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4994970-1117-4-C/results/953603106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9123","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","11:15:00","MST","2021-11-17 18:15:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603109","UTAHDWQ_WQX-NPSETAL211101-4994970-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4994970-1117-4-C/results/953603109/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12404","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","12:50:00","MST","2021-10-28 19:50:00",NA,"10.8",10800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603129","UTAHDWQ_WQX-UTLK211025-4995038-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995038-1028-4-C/results/953603129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9125","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","12:50:00","MST","2021-10-28 19:50:00",NA,"10.8",10800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603134","UTAHDWQ_WQX-UTLK211025-4995038-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995038-1028-4-C/results/953603134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9126","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","14:20:00","MST","2021-11-16 21:20:00",NA,"8.01",8010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603150","UTAHDWQ_WQX-UTLK211115-4995038-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995038-1116-4-C/results/953603150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9127","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","14:20:00","MST","2021-11-16 21:20:00",NA,"7.81",7810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603155","UTAHDWQ_WQX-UTLK211115-4995038-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995038-1116-4-C/results/953603155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9128","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","14:40:00","MST","2021-12-08 21:40:00",NA,"7.72",7720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603171","UTAHDWQ_WQX-UTLK211202-4995038-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995038-1208-4-C/results/953603171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9129","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","14:40:00","MST","2021-12-08 21:40:00",NA,"8.32",8320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603176","UTAHDWQ_WQX-UTLK211202-4995038-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995038-1208-4-C/results/953603176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9130","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","14:30:00","MST","2022-01-24 21:30:00",NA,"9.37",9370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603191","UTAHDWQ_WQX-UTLK220124-4995038-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995038-0124-4-C/results/953603191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9131","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","14:30:00","MST","2022-01-24 21:30:00",NA,"8.98",8980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603196","UTAHDWQ_WQX-UTLK220124-4995038-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995038-0124-4-C/results/953603196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9132","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","14:10:00","MST","2022-02-15 21:10:00",NA,"8.07",8070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603210","UTAHDWQ_WQX-UTLK220215-4995038-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995038-0215-4-C/results/953603210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12413","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","14:10:00","MST","2022-02-15 21:10:00",NA,"7.92",7920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603215","UTAHDWQ_WQX-UTLK220215-4995038-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995038-0215-4-C/results/953603215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9134","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","15:30:00","MST","2022-03-15 22:30:00",NA,"6.94",6940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603230","UTAHDWQ_WQX-UTLK220314-4995038-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995038-0315-4-C/results/953603230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9135","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","15:30:00","MST","2022-03-15 22:30:00",NA,"6.92",6920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603235","UTAHDWQ_WQX-UTLK220314-4995038-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995038-0315-4-C/results/953603235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12416","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","12:55:00","MST","2021-10-28 19:55:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603251","UTAHDWQ_WQX-UTLK211025-4995041-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995041-1028-4-C/results/953603251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9137","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","12:55:00","MST","2021-10-28 19:55:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603256","UTAHDWQ_WQX-UTLK211025-4995041-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995041-1028-4-C/results/953603256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9138","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","14:15:00","MST","2021-11-16 21:15:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603272","UTAHDWQ_WQX-UTLK211115-4995041-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995041-1116-4-C/results/953603272/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9139","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","14:15:00","MST","2021-11-16 21:15:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603277","UTAHDWQ_WQX-UTLK211115-4995041-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995041-1116-4-C/results/953603277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9140","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","14:20:00","MST","2022-01-24 21:20:00",NA,"4.9",4900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603292","UTAHDWQ_WQX-UTLK220124-4995041-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995041-0124-4-C/results/953603292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12421","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","14:20:00","MST","2022-01-24 21:20:00",NA,"4.72",4720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603297","UTAHDWQ_WQX-UTLK220124-4995041-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995041-0124-4-C/results/953603297/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9142","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","14:00:00","MST","2022-02-15 21:00:00",NA,"3.37",3370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603311","UTAHDWQ_WQX-UTLK220215-4995041-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995041-0215-4-C/results/953603311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9143","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","14:00:00","MST","2022-02-15 21:00:00",NA,"3.21",3210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603316","UTAHDWQ_WQX-UTLK220215-4995041-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995041-0215-4-C/results/953603316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12424","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","12:25:00","MST","2021-10-28 19:25:00",NA,"3.49",3490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603330","UTAHDWQ_WQX-UTLK211025-4995120-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995120-1028-4-C/results/953603330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9145","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","12:25:00","MST","2021-10-28 19:25:00",NA,"3.64",3640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603335","UTAHDWQ_WQX-UTLK211025-4995120-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995120-1028-4-C/results/953603335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9146","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","13:55:00","MST","2021-11-16 20:55:00",NA,"3.32",3320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603349","UTAHDWQ_WQX-UTLK211115-4995120-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995120-1116-4-C/results/953603349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12427","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","13:55:00","MST","2021-11-16 20:55:00",NA,"3.34",3340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603354","UTAHDWQ_WQX-UTLK211115-4995120-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995120-1116-4-C/results/953603354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9148","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","14:20:00","MST","2021-12-08 21:20:00",NA,"2.99",2990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603368","UTAHDWQ_WQX-UTLK211202-4995120-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995120-1208-4-C/results/953603368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9149","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","14:20:00","MST","2021-12-08 21:20:00",NA,"3.04",3040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603373","UTAHDWQ_WQX-UTLK211202-4995120-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T03:59:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995120-1208-4-C/results/953603373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9150","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","14:10:00","MST","2022-01-24 21:10:00",NA,"3.67",3670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603386","UTAHDWQ_WQX-UTLK220124-4995120-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995120-0124-4-C/results/953603386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9151","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","14:10:00","MST","2022-01-24 21:10:00",NA,"3.65",3650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603391","UTAHDWQ_WQX-UTLK220124-4995120-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995120-0124-4-C/results/953603391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9152","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","13:45:00","MST","2022-02-15 20:45:00",NA,"3.41",3410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603404","UTAHDWQ_WQX-UTLK220215-4995120-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995120-0215-4-C/results/953603404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9153","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","13:45:00","MST","2022-02-15 20:45:00",NA,"3.35",3350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603409","UTAHDWQ_WQX-UTLK220215-4995120-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995120-0215-4-C/results/953603409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9154","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","15:05:00","MST","2022-03-15 22:05:00",NA,"3.02",3020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603423","UTAHDWQ_WQX-UTLK220314-4995120-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995120-0315-4-C/results/953603423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9155","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","15:05:00","MST","2022-03-15 22:05:00",NA,"3.09",3090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603428","UTAHDWQ_WQX-UTLK220314-4995120-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995120-0315-4-C/results/953603428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9156","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","12:00:00","MST","2021-10-28 19:00:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603436","UTAHDWQ_WQX-ULSTORM211025-4995244-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","Stormwater 10m west of west curb at 1890 West Business Park Dr.","Storm Sewer",NA,"40.2742100000",40.27421,"-111.7394000000",-111.7394,"OK","16020201","UTAHDWQ_WQX-4995244",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2742100000","-111.7394000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4995244-1028-4-C/results/953603436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9157","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","12:00:00","MST","2021-10-28 19:00:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603441","UTAHDWQ_WQX-ULSTORM211025-4995244-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","Stormwater 10m west of west curb at 1890 West Business Park Dr.","Storm Sewer",NA,"40.2742100000",40.27421,"-111.7394000000",-111.7394,"OK","16020201","UTAHDWQ_WQX-4995244",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2742100000","-111.7394000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4995244-1028-4-C/results/953603441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9158","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-21","12:40:00","MST","2021-10-21 19:40:00",NA,"17.4",17400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603460","UTAHDWQ_WQX-UTLK211025-4995210-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995210-1021-4-C/results/953603460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9159","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","12:40:00","MST","2021-10-21 19:40:00",NA,"17.4",17400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603465","UTAHDWQ_WQX-UTLK211025-4995210-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"40.2653900000",40.26539,"-111.7423200000",-111.74232,"OK","16020201","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2653900000","-111.7423200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995210-1021-4-C/results/953603465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9160","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","13:40:00","MST","2021-11-17 20:40:00",NA,"19.3",19300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603481","UTAHDWQ_WQX-UTLK211115-4995250-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995250-1117-4-C/results/953603481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9161","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","13:40:00","MST","2021-11-17 20:40:00",NA,"19.8",19800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603486","UTAHDWQ_WQX-UTLK211115-4995250-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995250-1117-4-C/results/953603486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9162","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","13:40:00","MST","2021-12-08 20:40:00",NA,"23.9",23900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603502","UTAHDWQ_WQX-UTLK211202-4995250-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995250-1208-4-C/results/953603502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9163","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","13:40:00","MST","2021-12-08 20:40:00",NA,"23.5",23500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603507","UTAHDWQ_WQX-UTLK211202-4995250-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995250-1208-4-C/results/953603507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9164","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","13:50:00","MST","2022-01-24 20:50:00",NA,"20.3",20300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603522","UTAHDWQ_WQX-UTLK220124-4995250-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995250-0124-4-C/results/953603522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9165","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","13:50:00","MST","2022-01-24 20:50:00",NA,"19.9",19900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603527","UTAHDWQ_WQX-UTLK220124-4995250-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995250-0124-4-C/results/953603527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9166","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","13:15:00","MST","2022-02-15 20:15:00",NA,"20.8",20800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603541","UTAHDWQ_WQX-UTLK220215-4995251-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Orem WRF GW OUTFALL-WLA","River/Stream",NA,"40.2768800000",40.27688,"-111.7440100000",-111.74401,"OK","16020201","UTAHDWQ_WQX-4995251",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2768800000","-111.7440100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995251-0215-4-C/results/953603541/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9167","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","13:15:00","MST","2022-02-15 20:15:00",NA,"20.7",20700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603546","UTAHDWQ_WQX-UTLK220215-4995251-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Orem WRF GW OUTFALL-WLA","River/Stream",NA,"40.2768800000",40.27688,"-111.7440100000",-111.74401,"OK","16020201","UTAHDWQ_WQX-4995251",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2768800000","-111.7440100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995251-0215-4-C/results/953603546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9168","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","14:20:00","MST","2022-03-15 21:20:00",NA,"21.8",21800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603561","UTAHDWQ_WQX-UTLK220314-4995250-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995250-0315-4-C/results/953603561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9169","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","14:20:00","MST","2022-03-15 21:20:00",NA,"21.6",21600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603566","UTAHDWQ_WQX-UTLK220314-4995250-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995250-0315-4-C/results/953603566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9170","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","13:50:00","MST","2021-12-08 20:50:00",NA,"0.546",546,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603582","UTAHDWQ_WQX-UTLK211202-4995252-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995252-1208-4-C/results/953603582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9171","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","13:50:00","MST","2021-12-08 20:50:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603587","UTAHDWQ_WQX-UTLK211202-4995252-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995252-1208-4-C/results/953603587/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9172","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","13:40:00","MST","2022-01-24 20:40:00",NA,"0.776",776,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603602","UTAHDWQ_WQX-UTLK220124-4995252-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995252-0124-4-C/results/953603602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9173","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","13:40:00","MST","2022-01-24 20:40:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603607","UTAHDWQ_WQX-UTLK220124-4995252-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995252-0124-4-C/results/953603607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9174","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","13:25:00","MST","2022-02-15 20:25:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603621","UTAHDWQ_WQX-UTLK220215-4995252-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995252-0215-4-C/results/953603621/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9175","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","13:25:00","MST","2022-02-15 20:25:00",NA,"0.415",415,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603626","UTAHDWQ_WQX-UTLK220215-4995252-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995252-0215-4-C/results/953603626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9176","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","14:30:00","MST","2022-03-15 21:30:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603641","UTAHDWQ_WQX-UTLK220314-4995252-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995252-0315-4-C/results/953603641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9177","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","14:30:00","MST","2022-03-15 21:30:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603646","UTAHDWQ_WQX-UTLK220314-4995252-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995252-0315-4-C/results/953603646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9178","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","09:25:00","MST","2021-10-28 16:25:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603660","UTAHDWQ_WQX-UTLK211025-4995310-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995310-1028-4-C/results/953603660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9179","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","09:25:00","MST","2021-10-28 16:25:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603665","UTAHDWQ_WQX-UTLK211025-4995310-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995310-1028-4-C/results/953603665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9180","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","10:00:00","MST","2021-11-16 17:00:00",NA,"0.769",769,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603679","UTAHDWQ_WQX-UTLK211115-4995310-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995310-1116-4-C/results/953603679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9181","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","10:00:00","MST","2021-11-16 17:00:00",NA,"0.932",932,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603684","UTAHDWQ_WQX-UTLK211115-4995310-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995310-1116-4-C/results/953603684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9182","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","10:20:00","MST","2021-12-08 17:20:00",NA,"0.586",586,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603698","UTAHDWQ_WQX-UTLK211202-4995310-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995310-1208-4-C/results/953603698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9183","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","10:20:00","MST","2021-12-08 17:20:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603703","UTAHDWQ_WQX-UTLK211202-4995310-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995310-1208-4-C/results/953603703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9184","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","09:30:00","MST","2022-01-24 16:30:00",NA,"0.665",665,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603716","UTAHDWQ_WQX-UTLK220124-4995310-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995310-0124-4-C/results/953603716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9185","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","09:30:00","MST","2022-01-24 16:30:00",NA,"0.755",755,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603721","UTAHDWQ_WQX-UTLK220124-4995310-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995310-0124-4-C/results/953603721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12466","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","09:45:00","MST","2022-02-15 16:45:00",NA,"0.805",805,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603734","UTAHDWQ_WQX-UTLK220215-4995310-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995310-0215-4-C/results/953603734/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9187","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","09:45:00","MST","2022-02-15 16:45:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603739","UTAHDWQ_WQX-UTLK220215-4995310-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995310-0215-4-C/results/953603739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9188","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","09:55:00","MST","2022-03-15 16:55:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603753","UTAHDWQ_WQX-UTLK220314-4995310-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995310-0315-4-C/results/953603753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5916","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","09:55:00","MST","2022-03-15 16:55:00",NA,"0.34",340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603758","UTAHDWQ_WQX-UTLK220314-4995310-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995310-0315-4-C/results/953603758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9190","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","10:55:00","MST","2021-11-16 17:55:00",NA,"4.53",4530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603774","UTAHDWQ_WQX-UTLK211115-4995465-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995465-1116-4-C/results/953603774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5918","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","10:55:00","MST","2021-11-16 17:55:00",NA,"4.5",4500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603779","UTAHDWQ_WQX-UTLK211115-4995465-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995465-1116-4-C/results/953603779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9192","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","11:00:00","MST","2021-12-08 18:00:00",NA,"5.56",5560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603795","UTAHDWQ_WQX-UTLK211202-4995465-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995465-1208-4-C/results/953603795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9193","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","11:00:00","MST","2021-12-08 18:00:00",NA,"5.17",5170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603800","UTAHDWQ_WQX-UTLK211202-4995465-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995465-1208-4-C/results/953603800/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9194","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","10:40:00","MST","2022-01-24 17:40:00",NA,"4.49",4490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603815","UTAHDWQ_WQX-UTLK220124-4995465-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995465-0124-4-C/results/953603815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9195","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","10:40:00","MST","2022-01-24 17:40:00",NA,"4.32",4320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603820","UTAHDWQ_WQX-UTLK220124-4995465-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995465-0124-4-C/results/953603820/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9196","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","10:45:00","MST","2022-02-15 17:45:00",NA,"5.45",5450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603834","UTAHDWQ_WQX-UTLK220215-4995465-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995465-0215-4-C/results/953603834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9197","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","10:45:00","MST","2022-02-15 17:45:00",NA,"5.15",5150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603839","UTAHDWQ_WQX-UTLK220215-4995465-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995465-0215-4-C/results/953603839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9198","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","10:55:00","MST","2022-03-15 17:55:00",NA,"3.75",3750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603854","UTAHDWQ_WQX-UTLK220314-4995465-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995465-0315-4-C/results/953603854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9199","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","10:55:00","MST","2022-03-15 17:55:00",NA,"3.49",3490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603859","UTAHDWQ_WQX-UTLK220314-4995465-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995465-0315-4-C/results/953603859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9200","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","10:43:00","MST","2021-10-28 17:43:00",NA,"0.708",708,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603873","UTAHDWQ_WQX-UTLK211025-4995578-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995578-1028-4-C/results/953603873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9201","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","10:43:00","MST","2021-10-28 17:43:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603878","UTAHDWQ_WQX-UTLK211025-4995578-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995578-1028-4-C/results/953603878/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9202","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","11:25:00","MST","2021-11-16 18:25:00",NA,"0.429",429,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603892","UTAHDWQ_WQX-UTLK211115-4995578-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995578-1116-4-C/results/953603892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9203","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","11:25:00","MST","2021-11-16 18:25:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603897","UTAHDWQ_WQX-UTLK211115-4995578-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995578-1116-4-C/results/953603897/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9204","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","14:49:00","MST","2021-11-30 21:49:00",NA,"0.348",348,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603903","UTAHDWQ_WQX-SPANISHFKR211130-4995578-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-4995578-1130-4-C/results/953603903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9205","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","14:49:00","MST","2021-11-30 21:49:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603906","UTAHDWQ_WQX-SPANISHFKR211130-4995578-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-4995578-1130-4-C/results/953603906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9206","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","11:30:00","MST","2021-12-08 18:30:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603920","UTAHDWQ_WQX-UTLK211202-4995578-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995578-1208-4-C/results/953603920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9207","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","11:30:00","MST","2021-12-08 18:30:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603925","UTAHDWQ_WQX-UTLK211202-4995578-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995578-1208-4-C/results/953603925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9208","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-19","12:31:00","MST","2022-01-19 19:31:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603931","UTAHDWQ_WQX-SPANISHFKR220119-4995578-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-4995578-0119-4-C/results/953603931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9209","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-19","12:31:00","MST","2022-01-19 19:31:00",NA,"0.461",461,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603934","UTAHDWQ_WQX-SPANISHFKR220119-4995578-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-4995578-0119-4-C/results/953603934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9210","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","11:20:00","MST","2022-01-24 18:20:00",NA,"0.487",487,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603947","UTAHDWQ_WQX-UTLK220124-4995578-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995578-0124-4-C/results/953603947/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9211","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","11:20:00","MST","2022-01-24 18:20:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603952","UTAHDWQ_WQX-UTLK220124-4995578-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995578-0124-4-C/results/953603952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9212","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","11:20:00","MST","2022-02-15 18:20:00",NA,"0.52",520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603965","UTAHDWQ_WQX-UTLK220215-4995578-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995578-0215-4-C/results/953603965/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9213","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","11:20:00","MST","2022-02-15 18:20:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603970","UTAHDWQ_WQX-UTLK220215-4995578-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995578-0215-4-C/results/953603970/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9214","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","11:45:00","MST","2022-03-15 18:45:00",NA,"0.495",495,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603984","UTAHDWQ_WQX-UTLK220314-4995578-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995578-0315-4-C/results/953603984/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9215","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","11:45:00","MST","2022-03-15 18:45:00",NA,"0.46",460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603989","UTAHDWQ_WQX-UTLK220314-4995578-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995578-0315-4-C/results/953603989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9216","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-30","12:05:00","MST","2022-03-30 19:05:00",NA,"0.927",927,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603995","UTAHDWQ_WQX-SPANISHFKR220330-4995578-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-4995578-0330-4-C/results/953603995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9217","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-30","12:05:00","MST","2022-03-30 19:05:00",NA,"0.811",811,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953603998","UTAHDWQ_WQX-SPANISHFKR220330-4995578-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-4995578-0330-4-C/results/953603998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9218","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","14:22:00","MST","2021-11-30 21:22:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604004","UTAHDWQ_WQX-SPANISHFKR211130-4995580-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-4995580-1130-4-C/results/953604004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9219","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","14:22:00","MST","2021-11-30 21:22:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604007","UTAHDWQ_WQX-SPANISHFKR211130-4995580-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-4995580-1130-4-C/results/953604007/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9220","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-19","12:00:00","MST","2022-01-19 19:00:00",NA,"0.432",432,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604013","UTAHDWQ_WQX-SPANISHFKR220119-4995580-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-4995580-0119-4-C/results/953604013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9221","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-19","12:00:00","MST","2022-01-19 19:00:00",NA,"0.461",461,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604016","UTAHDWQ_WQX-SPANISHFKR220119-4995580-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-4995580-0119-4-C/results/953604016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9222","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-30","11:39:00","MST","2022-03-30 18:39:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604022","UTAHDWQ_WQX-SPANISHFKR220330-4995580-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-4995580-0330-4-C/results/953604022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9223","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-30","11:39:00","MST","2022-03-30 18:39:00",NA,"0.831",831,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604025","UTAHDWQ_WQX-SPANISHFKR220330-4995580-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"40.1502600000",40.15026,"-111.7269800000",-111.72698,"OK","16020202","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1502600000","-111.7269800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-4995580-0330-4-C/results/953604025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9224","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","11:45:00","MST","2021-12-08 18:45:00",NA,"9.77",9770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604041","UTAHDWQ_WQX-UTLK211202-4996000-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996000-1208-4-C/results/953604041/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9225","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","11:45:00","MST","2021-12-08 18:45:00",NA,"11.3",11300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604046","UTAHDWQ_WQX-UTLK211202-4996000-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996000-1208-4-C/results/953604046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5953","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","11:30:00","MST","2022-01-24 18:30:00",NA,"9.84",9840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604059","UTAHDWQ_WQX-UTLK220124-4996000-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996000-0124-4-C/results/953604059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9227","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","11:30:00","MST","2022-01-24 18:30:00",NA,"9.64",9640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604064","UTAHDWQ_WQX-UTLK220124-4996000-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996000-0124-4-C/results/953604064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9228","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","11:05:00","MST","2022-02-15 18:05:00",NA,"10",10000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604078","UTAHDWQ_WQX-UTLK220215-4996000-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996000-0215-4-C/results/953604078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5956","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","11:05:00","MST","2022-02-15 18:05:00",NA,"9.47",9470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604083","UTAHDWQ_WQX-UTLK220215-4996000-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996000-0215-4-C/results/953604083/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5957","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","12:10:00","MST","2022-03-15 19:10:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604098","UTAHDWQ_WQX-UTLK220314-4996000-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996000-0315-4-C/results/953604098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12511","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","12:10:00","MST","2022-03-15 19:10:00",NA,"10.1",10100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604103","UTAHDWQ_WQX-UTLK220314-4996000-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996000-0315-4-C/results/953604103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9232","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-21","11:15:00","MST","2021-10-21 18:15:00",NA,"6.19",6190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604119","UTAHDWQ_WQX-UTLK211025-4996040-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996040-1021-4-C/results/953604119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5959","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","11:15:00","MST","2021-10-21 18:15:00",NA,"6.26",6260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604124","UTAHDWQ_WQX-UTLK211025-4996040-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996040-1021-4-C/results/953604124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12514","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-17","12:45:00","MST","2021-11-17 19:45:00",NA,"7.8",7800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604140","UTAHDWQ_WQX-UTLK211115-4996040-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996040-1117-4-C/results/953604140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5960","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-17","12:45:00","MST","2021-11-17 19:45:00",NA,"7.65",7650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604145","UTAHDWQ_WQX-UTLK211115-4996040-1117-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Ck Near Utah Lake-WLA","River/Stream",NA,"40.1809900000",40.18099,"-111.6710600000",-111.67106,"OK","16020201","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1809900000","-111.6710600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996040-1117-4-C/results/953604145/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5961","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","10:58:00","MST","2021-10-28 17:58:00",NA,"3.9",3900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604159","UTAHDWQ_WQX-UTLK211025-4996044-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996044-1028-4-C/results/953604159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9237","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","10:58:00","MST","2021-10-28 17:58:00",NA,"4.1",4100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604164","UTAHDWQ_WQX-UTLK211025-4996044-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996044-1028-4-C/results/953604164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5963","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","11:55:00","MST","2021-11-16 18:55:00",NA,"2.91",2910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604178","UTAHDWQ_WQX-UTLK211115-4996044-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996044-1116-4-C/results/953604178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12519","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","11:55:00","MST","2021-11-16 18:55:00",NA,"2.87",2870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604183","UTAHDWQ_WQX-UTLK211115-4996044-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996044-1116-4-C/results/953604183/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9240","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","12:00:00","MST","2021-12-08 19:00:00",NA,"2.45",2450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604197","UTAHDWQ_WQX-UTLK211202-4996044-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996044-1208-4-C/results/953604197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9241","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","12:00:00","MST","2021-12-08 19:00:00",NA,"2.72",2720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604202","UTAHDWQ_WQX-UTLK211202-4996044-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996044-1208-4-C/results/953604202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12522","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","11:45:00","MST","2022-01-24 18:45:00",NA,"3.31",3310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604215","UTAHDWQ_WQX-UTLK220124-4996044-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996044-0124-4-C/results/953604215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9243","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","11:45:00","MST","2022-01-24 18:45:00",NA,"3.64",3640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604220","UTAHDWQ_WQX-UTLK220124-4996044-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996044-0124-4-C/results/953604220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9244","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","11:50:00","MST","2022-02-15 18:50:00",NA,"2.85",2850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604233","UTAHDWQ_WQX-UTLK220215-4996044-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996044-0215-4-C/results/953604233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9245","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","11:50:00","MST","2022-02-15 18:50:00",NA,"2.89",2890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604238","UTAHDWQ_WQX-UTLK220215-4996044-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996044-0215-4-C/results/953604238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9246","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","12:35:00","MST","2022-03-15 19:35:00",NA,"2.81",2810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604252","UTAHDWQ_WQX-UTLK220314-4996044-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996044-0315-4-C/results/953604252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9247","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","12:35:00","MST","2022-03-15 19:35:00",NA,"2.79",2790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604257","UTAHDWQ_WQX-UTLK220314-4996044-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996044-0315-4-C/results/953604257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9248","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","11:20:00","MST","2021-10-28 18:20:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604271","UTAHDWQ_WQX-UTLK211025-4996100-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996100-1028-4-C/results/953604271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9249","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","11:20:00","MST","2021-10-28 18:20:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604276","UTAHDWQ_WQX-UTLK211025-4996100-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996100-1028-4-C/results/953604276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9250","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:05:00","MST","2021-11-16 19:05:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604290","UTAHDWQ_WQX-UTLK211115-4996100-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996100-1116-4-C/results/953604290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9251","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:05:00","MST","2021-11-16 19:05:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604295","UTAHDWQ_WQX-UTLK211115-4996100-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996100-1116-4-C/results/953604295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9252","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","12:15:00","MST","2021-12-08 19:15:00",NA,"0.922",922,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604309","UTAHDWQ_WQX-UTLK211202-4996100-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996100-1208-4-C/results/953604309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9253","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","12:15:00","MST","2021-12-08 19:15:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604314","UTAHDWQ_WQX-UTLK211202-4996100-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996100-1208-4-C/results/953604314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9254","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","12:10:00","MST","2022-01-24 19:10:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604327","UTAHDWQ_WQX-UTLK220124-4996100-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996100-0124-4-C/results/953604327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9255","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","12:10:00","MST","2022-01-24 19:10:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604332","UTAHDWQ_WQX-UTLK220124-4996100-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996100-0124-4-C/results/953604332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9256","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","12:00:00","MST","2022-02-15 19:00:00",NA,"0.854",854,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604345","UTAHDWQ_WQX-UTLK220215-4996100-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996100-0215-4-C/results/953604345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9257","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","12:00:00","MST","2022-02-15 19:00:00",NA,"0.826",826,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604350","UTAHDWQ_WQX-UTLK220215-4996100-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996100-0215-4-C/results/953604350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9258","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","12:45:00","MST","2022-03-15 19:45:00",NA,"0.661",661,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604364","UTAHDWQ_WQX-UTLK220314-4996100-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996100-0315-4-C/results/953604364/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9259","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","12:45:00","MST","2022-03-15 19:45:00",NA,"0.78",780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604369","UTAHDWQ_WQX-UTLK220314-4996100-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996100-0315-4-C/results/953604369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9260","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","11:30:00","MST","2021-10-28 18:30:00",NA,"8.56",8560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604383","UTAHDWQ_WQX-UTLK211025-4996275-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996275-1028-4-C/results/953604383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9261","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","11:30:00","MST","2021-10-28 18:30:00",NA,"8.96",8960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604388","UTAHDWQ_WQX-UTLK211025-4996275-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996275-1028-4-C/results/953604388/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9262","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:10:00","MST","2021-11-16 19:10:00",NA,"9.83",9830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604402","UTAHDWQ_WQX-UTLK211115-4996275-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996275-1116-4-C/results/953604402/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9263","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:10:00","MST","2021-11-16 19:10:00",NA,"9.66",9660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604407","UTAHDWQ_WQX-UTLK211115-4996275-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996275-1116-4-C/results/953604407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9264","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","12:30:00","MST","2021-12-08 19:30:00",NA,"11.5",11500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604421","UTAHDWQ_WQX-UTLK211202-4996275-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996275-1208-4-C/results/953604421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9265","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","12:30:00","MST","2021-12-08 19:30:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604426","UTAHDWQ_WQX-UTLK211202-4996275-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996275-1208-4-C/results/953604426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9266","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","12:20:00","MST","2022-01-24 19:20:00",NA,"6.1",6100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604439","UTAHDWQ_WQX-UTLK220124-4996275-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996275-0124-4-C/results/953604439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9267","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","12:20:00","MST","2022-01-24 19:20:00",NA,"6.03",6030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604444","UTAHDWQ_WQX-UTLK220124-4996275-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996275-0124-4-C/results/953604444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9268","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","12:10:00","MST","2022-02-15 19:10:00",NA,"7.27",7270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604457","UTAHDWQ_WQX-UTLK220215-4996275-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996275-0215-4-C/results/953604457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9269","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","12:10:00","MST","2022-02-15 19:10:00",NA,"7.17",7170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604462","UTAHDWQ_WQX-UTLK220215-4996275-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996275-0215-4-C/results/953604462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9270","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","13:00:00","MST","2022-03-15 20:00:00",NA,"7.22",7220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604476","UTAHDWQ_WQX-UTLK220314-4996275-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996275-0315-4-C/results/953604476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12551","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","13:00:00","MST","2022-03-15 20:00:00",NA,"7.18",7180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604481","UTAHDWQ_WQX-UTLK220314-4996275-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996275-0315-4-C/results/953604481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9272","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","11:45:00","MST","2021-10-28 18:45:00",NA,"12.8",12800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604497","UTAHDWQ_WQX-UTLK211025-4996540-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996540-1028-4-C/results/953604497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9273","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","11:45:00","MST","2021-10-28 18:45:00",NA,"12.6",12600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604502","UTAHDWQ_WQX-UTLK211025-4996540-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996540-1028-4-C/results/953604502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12554","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:25:00","MST","2021-11-16 19:25:00",NA,"12.2",12200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604518","UTAHDWQ_WQX-UTLK211115-4996540-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996540-1116-4-C/results/953604518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9275","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:25:00","MST","2021-11-16 19:25:00",NA,"12",12000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604523","UTAHDWQ_WQX-UTLK211115-4996540-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996540-1116-4-C/results/953604523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9276","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","12:40:00","MST","2021-12-08 19:40:00",NA,"13",13000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604539","UTAHDWQ_WQX-UTLK211202-4996540-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996540-1208-4-C/results/953604539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9277","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","12:40:00","MST","2021-12-08 19:40:00",NA,"13",13000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604544","UTAHDWQ_WQX-UTLK211202-4996540-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996540-1208-4-C/results/953604544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9278","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","13:00:00","MST","2022-01-24 20:00:00",NA,"11.1",11100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604559","UTAHDWQ_WQX-UTLK220124-4996540-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996540-0124-4-C/results/953604559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9279","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","13:00:00","MST","2022-01-24 20:00:00",NA,"11.1",11100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604564","UTAHDWQ_WQX-UTLK220124-4996540-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:00:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996540-0124-4-C/results/953604564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9280","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","12:30:00","MST","2022-02-15 19:30:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604578","UTAHDWQ_WQX-UTLK220215-4996540-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996540-0215-4-C/results/953604578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9281","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","12:30:00","MST","2022-02-15 19:30:00",NA,"10.4",10400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604583","UTAHDWQ_WQX-UTLK220215-4996540-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996540-0215-4-C/results/953604583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9282","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","13:25:00","MST","2022-03-15 20:25:00",NA,"9.9",9900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604598","UTAHDWQ_WQX-UTLK220314-4996540-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996540-0315-4-C/results/953604598/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9283","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","13:25:00","MST","2022-03-15 20:25:00",NA,"9.7",9700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604603","UTAHDWQ_WQX-UTLK220314-4996540-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996540-0315-4-C/results/953604603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9284","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","11:30:00","MST","2021-10-28 18:30:00",NA,"9.23",9230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604619","UTAHDWQ_WQX-UTLK211025-4996566-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996566-1028-4-C/results/953604619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9285","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","11:30:00","MST","2021-10-28 18:30:00",NA,"9.48",9480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604624","UTAHDWQ_WQX-UTLK211025-4996566-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996566-1028-4-C/results/953604624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9286","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:20:00","MST","2021-11-16 19:20:00",NA,"10.8",10800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604640","UTAHDWQ_WQX-UTLK211115-4996566-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996566-1116-4-C/results/953604640/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9287","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:20:00","MST","2021-11-16 19:20:00",NA,"10.9",10900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604645","UTAHDWQ_WQX-UTLK211115-4996566-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996566-1116-4-C/results/953604645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9288","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","12:25:00","MST","2021-12-08 19:25:00",NA,"11.2",11200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604661","UTAHDWQ_WQX-UTLK211202-4996566-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996566-1208-4-C/results/953604661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9289","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","12:25:00","MST","2021-12-08 19:25:00",NA,"11.2",11200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604666","UTAHDWQ_WQX-UTLK211202-4996566-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996566-1208-4-C/results/953604666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9290","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","12:40:00","MST","2022-01-24 19:40:00",NA,"10.1",10100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604681","UTAHDWQ_WQX-UTLK220124-4996566-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996566-0124-4-C/results/953604681/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9291","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","12:40:00","MST","2022-01-24 19:40:00",NA,"9.69",9690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604686","UTAHDWQ_WQX-UTLK220124-4996566-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996566-0124-4-C/results/953604686/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9292","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","12:20:00","MST","2022-02-15 19:20:00",NA,"9.92",9920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604699","UTAHDWQ_WQX-UTLK220215-4996566-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996566-0215-4-C/results/953604699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9293","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","12:20:00","MST","2022-02-15 19:20:00",NA,"9.62",9620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604704","UTAHDWQ_WQX-UTLK220215-4996566-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996566-0215-4-C/results/953604704/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9294","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","13:15:00","MST","2022-03-15 20:15:00",NA,"8.04",8040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604719","UTAHDWQ_WQX-UTLK220314-4996566-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996566-0315-4-C/results/953604719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9295","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","13:15:00","MST","2022-03-15 20:15:00",NA,"7.83",7830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604724","UTAHDWQ_WQX-UTLK220314-4996566-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996566-0315-4-C/results/953604724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9296","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-12","11:00:00","MST","2021-10-12 18:00:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604733","UTAHDWQ_WQX-ULSTORM211011-4996658-1012-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel","Storm Sewer",NA,"40.2132500000",40.21325,"-111.6626300000",-111.66263,"OK","16020201","UTAHDWQ_WQX-4996658",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2132500000","-111.6626300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211011-4996658-1012-4-C/results/953604733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9297","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-12","11:00:00","MST","2021-10-12 18:00:00",NA,"1.85",1850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604738","UTAHDWQ_WQX-ULSTORM211011-4996658-1012-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel","Storm Sewer",NA,"40.2132500000",40.21325,"-111.6626300000",-111.66263,"OK","16020201","UTAHDWQ_WQX-4996658",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2132500000","-111.6626300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211011-4996658-1012-4-C/results/953604738/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9298","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-19","10:30:00","MST","2021-10-19 17:30:00",NA,"1.68",1680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604750","UTAHDWQ_WQX-ULSTORM211018-4996658-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel","Storm Sewer",NA,"40.2132500000",40.21325,"-111.6626300000",-111.66263,"OK","16020201","UTAHDWQ_WQX-4996658",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2132500000","-111.6626300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211018-4996658-1019-4-C/results/953604750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9299","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-19","10:30:00","MST","2021-10-19 17:30:00",NA,"1.83",1830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604755","UTAHDWQ_WQX-ULSTORM211018-4996658-1019-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel","Storm Sewer",NA,"40.2132500000",40.21325,"-111.6626300000",-111.66263,"OK","16020201","UTAHDWQ_WQX-4996658",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2132500000","-111.6626300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211018-4996658-1019-4-C/results/953604755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9300","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","10:15:00","MST","2021-10-25 17:15:00",NA,"1.74",1740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604767","UTAHDWQ_WQX-ULSTORM211025-4996658-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel","Storm Sewer",NA,"40.2132500000",40.21325,"-111.6626300000",-111.66263,"OK","16020201","UTAHDWQ_WQX-4996658",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2132500000","-111.6626300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4996658-1025-4-C/results/953604767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9301","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","10:15:00","MST","2021-10-25 17:15:00",NA,"1.82",1820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604772","UTAHDWQ_WQX-ULSTORM211025-4996658-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel","Storm Sewer",NA,"40.2132500000",40.21325,"-111.6626300000",-111.66263,"OK","16020201","UTAHDWQ_WQX-4996658",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2132500000","-111.6626300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4996658-1025-4-C/results/953604772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9302","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-26","10:25:00","MST","2021-10-26 17:25:00",NA,"2.06",2060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604780","UTAHDWQ_WQX-ULSTORM211025-4996658-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel","Storm Sewer",NA,"40.2132500000",40.21325,"-111.6626300000",-111.66263,"OK","16020201","UTAHDWQ_WQX-4996658",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2132500000","-111.6626300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4996658-1026-4-C/results/953604780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9303","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-26","10:25:00","MST","2021-10-26 17:25:00",NA,"2.06",2060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604789","UTAHDWQ_WQX-ULSTORM211025-4996658-1026-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","General Water Monitoring","Collect Water Samples for a variety of programs.","350",NA,NA,NA,"N","US","49","049","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel","Storm Sewer",NA,"40.2132500000",40.21325,"-111.6626300000",-111.66263,"OK","16020201","UTAHDWQ_WQX-4996658",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2132500000","-111.6626300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4996658-1026-4-C/results/953604789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9304","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","11:55:00","MST","2021-10-28 18:55:00",NA,"0.42",420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604806","UTAHDWQ_WQX-UTLK211025-4996680-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996680-1028-4-C/results/953604806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9305","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","11:55:00","MST","2021-10-28 18:55:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604811","UTAHDWQ_WQX-UTLK211025-4996680-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996680-1028-4-C/results/953604811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9306","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","12:45:00","MST","2021-11-16 19:45:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604825","UTAHDWQ_WQX-UTLK211115-4996680-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996680-1116-4-C/results/953604825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9307","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","12:45:00","MST","2021-11-16 19:45:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604830","UTAHDWQ_WQX-UTLK211115-4996680-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996680-1116-4-C/results/953604830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9308","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","12:50:00","MST","2021-12-08 19:50:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604844","UTAHDWQ_WQX-UTLK211202-4996680-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996680-1208-4-C/results/953604844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12589","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","12:50:00","MST","2021-12-08 19:50:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604849","UTAHDWQ_WQX-UTLK211202-4996680-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996680-1208-4-C/results/953604849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9310","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","13:20:00","MST","2022-01-24 20:20:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604862","UTAHDWQ_WQX-UTLK220124-4996680-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996680-0124-4-C/results/953604862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9311","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","13:20:00","MST","2022-01-24 20:20:00",NA,"0.635",635,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604867","UTAHDWQ_WQX-UTLK220124-4996680-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996680-0124-4-C/results/953604867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12592","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","12:50:00","MST","2022-02-15 19:50:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604880","UTAHDWQ_WQX-UTLK220215-4996680-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996680-0215-4-C/results/953604880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9313","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","12:50:00","MST","2022-02-15 19:50:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604885","UTAHDWQ_WQX-UTLK220215-4996680-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-02-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996680-0215-4-C/results/953604885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9314","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","13:55:00","MST","2022-03-15 20:55:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604899","UTAHDWQ_WQX-UTLK220314-4996680-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996680-0315-4-C/results/953604899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9315","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","13:55:00","MST","2022-03-15 20:55:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604904","UTAHDWQ_WQX-UTLK220314-4996680-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996680-0315-4-C/results/953604904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9316","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","12:42:00","MST","2021-10-25 19:42:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604910","UTAHDWQ_WQX-MAINCK211025-4996880-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996880-1025-4-C/results/953604910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9317","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","12:42:00","MST","2021-10-25 19:42:00",NA,"1.62",1620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604913","UTAHDWQ_WQX-MAINCK211025-4996880-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996880-1025-4-C/results/953604913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9318","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-07","12:12:00","MST","2021-12-07 19:12:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604919","UTAHDWQ_WQX-MAINCK211207-4996880-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996880-1207-4-C/results/953604919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9319","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","12:12:00","MST","2021-12-07 19:12:00",NA,"1.84",1840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604922","UTAHDWQ_WQX-MAINCK211207-4996880-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996880-1207-4-C/results/953604922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9320","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","12:35:00","MST","2022-03-02 19:35:00",NA,"1.5",1500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604928","UTAHDWQ_WQX-MAINCK220302-4996880-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996880-0302-4-C/results/953604928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9321","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","12:35:00","MST","2022-03-02 19:35:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604931","UTAHDWQ_WQX-MAINCK220302-4996880-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"40.3894300000",40.38943,"-111.4312600000",-111.43126,"OK","16020203","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3894300000","-111.4312600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996880-0302-4-C/results/953604931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9322","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","15:14:00","MST","2021-10-25 22:14:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604937","UTAHDWQ_WQX-MAINCK211025-4996903-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996903-1025-4-C/results/953604937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9323","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","15:14:00","MST","2021-10-25 22:14:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604940","UTAHDWQ_WQX-MAINCK211025-4996903-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996903-1025-4-C/results/953604940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9324","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-07","13:47:00","MST","2021-12-07 20:47:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604964","UTAHDWQ_WQX-MAINCK211207-4996903-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996903-1207-4-C/results/953604964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9325","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","13:47:00","MST","2021-12-07 20:47:00",NA,"0.218",218,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604967","UTAHDWQ_WQX-MAINCK211207-4996903-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996903-1207-4-C/results/953604967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9326","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","16:11:00","MST","2022-03-02 23:11:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604973","UTAHDWQ_WQX-MAINCK220302-4996903-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996903-0302-4-C/results/953604973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9327","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","16:11:00","MST","2022-03-02 23:11:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953604976","UTAHDWQ_WQX-MAINCK220302-4996903-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996903-0302-4-C/results/953604976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9328","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-07","11:56:00","MST","2021-12-07 18:56:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605000","UTAHDWQ_WQX-MAINCK211207-4996905-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996905-1207-4-C/results/953605000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9329","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","11:56:00","MST","2021-12-07 18:56:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605003","UTAHDWQ_WQX-MAINCK211207-4996905-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996905-1207-4-C/results/953605003/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9330","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","12:13:00","MST","2022-03-02 19:13:00",NA,"0.177",177,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605009","UTAHDWQ_WQX-MAINCK220302-4996905-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996905-0302-4-C/results/953605009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9331","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","12:13:00","MST","2022-03-02 19:13:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605012","UTAHDWQ_WQX-MAINCK220302-4996905-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996905-0302-4-C/results/953605012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9332","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-07","11:57:00","MST","2021-12-07 18:57:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605018","UTAHDWQ_WQX-MAINCK211207-4996906-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996906-1207-4-C/results/953605018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9333","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","11:57:00","MST","2021-12-07 18:57:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605021","UTAHDWQ_WQX-MAINCK211207-4996906-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996906-1207-4-C/results/953605021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9334","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","12:20:00","MST","2022-03-02 19:20:00",NA,"0.171",171,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605027","UTAHDWQ_WQX-MAINCK220302-4996906-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996906-0302-4-C/results/953605027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9335","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","12:20:00","MST","2022-03-02 19:20:00",NA,"0.938",938,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605030","UTAHDWQ_WQX-MAINCK220302-4996906-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996906-0302-4-C/results/953605030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9336","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-07","11:15:00","MST","2021-12-07 18:15:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605036","UTAHDWQ_WQX-MAINCK211207-4996910-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996910-1207-4-C/results/953605036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9337","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","11:15:00","MST","2021-12-07 18:15:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605039","UTAHDWQ_WQX-MAINCK211207-4996910-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996910-1207-4-C/results/953605039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9338","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","11:38:00","MST","2022-03-02 18:38:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605045","UTAHDWQ_WQX-MAINCK220302-4996910-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996910-0302-4-C/results/953605045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9339","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","11:38:00","MST","2022-03-02 18:38:00",NA,"0.181",181,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605048","UTAHDWQ_WQX-MAINCK220302-4996910-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996910-0302-4-C/results/953605048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9340","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","11:55:00","MST","2021-10-25 18:55:00",NA,"0.147",147,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605054","UTAHDWQ_WQX-MAINCK211025-4996913-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996913-1025-4-C/results/953605054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9341","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","11:55:00","MST","2021-10-25 18:55:00",NA,"0.085",85,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605057","UTAHDWQ_WQX-MAINCK211025-4996913-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996913-1025-4-C/results/953605057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9342","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-07","10:52:00","MST","2021-12-07 17:52:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605063","UTAHDWQ_WQX-MAINCK211207-4996913-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996913-1207-4-C/results/953605063/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9343","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","10:52:00","MST","2021-12-07 17:52:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605066","UTAHDWQ_WQX-MAINCK211207-4996913-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996913-1207-4-C/results/953605066/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9344","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","10:00:00","MST","2021-10-25 17:00:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605074","UTAHDWQ_WQX-UCASE2021-4999252-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","049","Summit Creek 0.9 mile ab National Forest booundary","River/Stream",NA,"39.9415700000",39.94157,"-111.7729700000",-111.77297,"OK","16020201","UTAHDWQ_WQX-4999252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9415700000","-111.7729700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999252-1025-4-C/results/953605074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9345","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","10:00:00","MST","2021-10-25 17:00:00",NA,"0.475",475,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605077","UTAHDWQ_WQX-UCASE2021-4999252-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","049","Summit Creek 0.9 mile ab National Forest booundary","River/Stream",NA,"39.9415700000",39.94157,"-111.7729700000",-111.77297,"OK","16020201","UTAHDWQ_WQX-4999252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9415700000","-111.7729700000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999252-1025-4-C/results/953605077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9346","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","12:21:00","MST","2021-10-25 19:21:00",NA,"1.84",1840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605101","UTAHDWQ_WQX-MAINCK211025-5910280-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910280-1025-4-C/results/953605101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9347","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","12:21:00","MST","2021-10-25 19:21:00",NA,"1.9",1900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605104","UTAHDWQ_WQX-MAINCK211025-5910280-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910280-1025-4-C/results/953605104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9348","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-07","11:35:00","MST","2021-12-07 18:35:00",NA,"1.95",1950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605110","UTAHDWQ_WQX-MAINCK211207-5910280-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910280-1207-4-C/results/953605110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9349","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","11:35:00","MST","2021-12-07 18:35:00",NA,"1.96",1960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605113","UTAHDWQ_WQX-MAINCK211207-5910280-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910280-1207-4-C/results/953605113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9350","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","11:55:00","MST","2022-03-02 18:55:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605119","UTAHDWQ_WQX-MAINCK220302-5910280-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910280-0302-4-C/results/953605119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9351","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","11:55:00","MST","2022-03-02 18:55:00",NA,"1.9",1900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605122","UTAHDWQ_WQX-MAINCK220302-5910280-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910280-0302-4-C/results/953605122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9352","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","13:55:00","MST","2021-10-25 20:55:00",NA,"0.595",595,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605128","UTAHDWQ_WQX-MAINCK211025-5910290-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910290-1025-4-C/results/953605128/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9353","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","13:55:00","MST","2021-10-25 20:55:00",NA,"0.565",565,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605131","UTAHDWQ_WQX-MAINCK211025-5910290-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910290-1025-4-C/results/953605131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9354","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-07","13:15:00","MST","2021-12-07 20:15:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605137","UTAHDWQ_WQX-MAINCK211207-5910290-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910290-1207-4-C/results/953605137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9355","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","13:15:00","MST","2021-12-07 20:15:00",NA,"0.957",957,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605140","UTAHDWQ_WQX-MAINCK211207-5910290-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910290-1207-4-C/results/953605140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9356","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","13:53:00","MST","2022-03-02 20:53:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605146","UTAHDWQ_WQX-MAINCK220302-5910290-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910290-0302-4-C/results/953605146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9357","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","13:53:00","MST","2022-03-02 20:53:00",NA,"0.975",975,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605149","UTAHDWQ_WQX-MAINCK220302-5910290-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910290-0302-4-C/results/953605149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9358","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","14:22:00","MST","2021-10-25 21:22:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605155","UTAHDWQ_WQX-MAINCK211025-5910619-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910619-1025-4-C/results/953605155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9359","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","14:22:00","MST","2021-10-25 21:22:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605158","UTAHDWQ_WQX-MAINCK211025-5910619-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910619-1025-4-C/results/953605158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9360","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-07","13:42:00","MST","2021-12-07 20:42:00",NA,"0.678",678,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605182","UTAHDWQ_WQX-MAINCK211207-5910619-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910619-1207-4-C/results/953605182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9361","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","13:42:00","MST","2021-12-07 20:42:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605185","UTAHDWQ_WQX-MAINCK211207-5910619-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910619-1207-4-C/results/953605185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9362","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","14:13:00","MST","2022-03-02 21:13:00",NA,"0.626",626,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605191","UTAHDWQ_WQX-MAINCK220302-5910619-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910619-0302-4-C/results/953605191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9363","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","14:13:00","MST","2022-03-02 21:13:00",NA,"0.583",583,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605194","UTAHDWQ_WQX-MAINCK220302-5910619-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910619-0302-4-C/results/953605194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9364","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","13:32:00","MST","2021-10-25 20:32:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605218","UTAHDWQ_WQX-MAINCK211025-5910620-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910620-1025-4-C/results/953605218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9365","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-25","13:32:00","MST","2021-10-25 20:32:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605221","UTAHDWQ_WQX-MAINCK211025-5910620-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910620-1025-4-C/results/953605221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9366","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-07","12:53:00","MST","2021-12-07 19:53:00",NA,"0.17",170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605227","UTAHDWQ_WQX-MAINCK211207-5910620-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910620-1207-4-C/results/953605227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9367","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-07","12:53:00","MST","2021-12-07 19:53:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605230","UTAHDWQ_WQX-MAINCK211207-5910620-1207-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910620-1207-4-C/results/953605230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9368","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-02","13:27:00","MST","2022-03-02 20:27:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605236","UTAHDWQ_WQX-MAINCK220302-5910620-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910620-0302-4-C/results/953605236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9369","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-02","13:27:00","MST","2022-03-02 20:27:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605239","UTAHDWQ_WQX-MAINCK220302-5910620-0302-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910620-0302-4-C/results/953605239/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9370","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","10:28:00","MST","2021-10-28 17:28:00",NA,"10.8",10800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605253","UTAHDWQ_WQX-UTLK211025-5919910-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-5919910-1028-4-C/results/953605253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9371","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","10:28:00","MST","2021-10-28 17:28:00",NA,"11.3",11300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605258","UTAHDWQ_WQX-UTLK211025-5919910-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-5919910-1028-4-C/results/953605258/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9372","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-16","11:15:00","MST","2021-11-16 18:15:00",NA,"9.33",9330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605272","UTAHDWQ_WQX-UTLK211115-5919910-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-5919910-1116-4-C/results/953605272/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9373","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-16","11:15:00","MST","2021-11-16 18:15:00",NA,"9.1",9100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605277","UTAHDWQ_WQX-UTLK211115-5919910-1116-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-5919910-1116-4-C/results/953605277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9374","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-08","11:20:00","MST","2021-12-08 18:20:00",NA,"11.4",11400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605291","UTAHDWQ_WQX-UTLK211202-5919910-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-5919910-1208-4-C/results/953605291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9375","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-08","11:20:00","MST","2021-12-08 18:20:00",NA,"12.2",12200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605296","UTAHDWQ_WQX-UTLK211202-5919910-1208-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-5919910-1208-4-C/results/953605296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9376","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-24","11:00:00","MST","2022-01-24 18:00:00",NA,"7.3",7300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605309","UTAHDWQ_WQX-UTLK220124-5919910-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-5919910-0124-4-C/results/953605309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9377","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-24","11:00:00","MST","2022-01-24 18:00:00",NA,"6.55",6550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605314","UTAHDWQ_WQX-UTLK220124-5919910-0124-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-5919910-0124-4-C/results/953605314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9378","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-15","11:03:00","MST","2022-02-15 18:03:00",NA,"7.63",7630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605327","UTAHDWQ_WQX-UTLK220215-5919910-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-5919910-0215-4-C/results/953605327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9379","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-15","11:03:00","MST","2022-02-15 18:03:00",NA,"7.1",7100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605332","UTAHDWQ_WQX-UTLK220215-5919910-0215-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-5919910-0215-4-C/results/953605332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9380","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-15","11:30:00","MST","2022-03-15 18:30:00",NA,"7.35",7350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605346","UTAHDWQ_WQX-UTLK220314-5919910-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-5919910-0315-4-C/results/953605346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12661","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-15","11:30:00","MST","2022-03-15 18:30:00",NA,"7.52",7520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605351","UTAHDWQ_WQX-UTLK220314-5919910-0315-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-5919910-0315-4-C/results/953605351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9382","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","12:53:00","MST","2021-11-30 19:53:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605357","UTAHDWQ_WQX-SPANISHFKR211130-5919920-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919920-1130-4-C/results/953605357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9383","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","12:53:00","MST","2021-11-30 19:53:00",NA,"0.326",326,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605360","UTAHDWQ_WQX-SPANISHFKR211130-5919920-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919920-1130-4-C/results/953605360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12664","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-19","10:05:00","MST","2022-01-19 17:05:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605366","UTAHDWQ_WQX-SPANISHFKR220119-5919920-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919920-0119-4-C/results/953605366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9385","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-19","10:05:00","MST","2022-01-19 17:05:00",NA,"0.407",407,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605369","UTAHDWQ_WQX-SPANISHFKR220119-5919920-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919920-0119-4-C/results/953605369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9386","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-30","09:52:00","MST","2022-03-30 16:52:00",NA,"0.764",764,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605375","UTAHDWQ_WQX-SPANISHFKR220330-5919920-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919920-0330-4-C/results/953605375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9387","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-30","09:52:00","MST","2022-03-30 16:52:00",NA,"0.808",808,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605378","UTAHDWQ_WQX-SPANISHFKR220330-5919920-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919920-0330-4-C/results/953605378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9388","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","15:17:00","MST","2021-11-30 22:17:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605384","UTAHDWQ_WQX-SPANISHFKR211130-5919942-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919942-1130-4-C/results/953605384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12669","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","15:17:00","MST","2021-11-30 22:17:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605387","UTAHDWQ_WQX-SPANISHFKR211130-5919942-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919942-1130-4-C/results/953605387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9390","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-19","15:00:00","MST","2022-01-19 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605393","UTAHDWQ_WQX-SPANISHFKR220119-5919942-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919942-0119-4-C/results/953605393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9391","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-19","15:00:00","MST","2022-01-19 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605396","UTAHDWQ_WQX-SPANISHFKR220119-5919942-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919942-0119-4-C/results/953605396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12672","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-30","13:07:00","MST","2022-03-30 20:07:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605402","UTAHDWQ_WQX-SPANISHFKR220330-5919942-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919942-0330-4-C/results/953605402/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9393","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-30","13:07:00","MST","2022-03-30 20:07:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605405","UTAHDWQ_WQX-SPANISHFKR220330-5919942-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919942-0330-4-C/results/953605405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9394","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","13:34:00","MST","2021-11-30 20:34:00",NA,"0.418",418,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605411","UTAHDWQ_WQX-SPANISHFKR211130-5919970-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919970-1130-4-C/results/953605411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9395","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","13:34:00","MST","2021-11-30 20:34:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605414","UTAHDWQ_WQX-SPANISHFKR211130-5919970-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919970-1130-4-C/results/953605414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9396","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-19","10:58:00","MST","2022-01-19 17:58:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605420","UTAHDWQ_WQX-SPANISHFKR220119-5919970-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919970-0119-4-C/results/953605420/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9397","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-19","10:58:00","MST","2022-01-19 17:58:00",NA,"0.47",470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605423","UTAHDWQ_WQX-SPANISHFKR220119-5919970-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919970-0119-4-C/results/953605423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9398","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-30","10:56:00","MST","2022-03-30 17:56:00",NA,"0.657",657,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605429","UTAHDWQ_WQX-SPANISHFKR220330-5919970-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919970-0330-4-C/results/953605429/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9399","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-30","10:56:00","MST","2022-03-30 17:56:00",NA,"0.788",788,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605432","UTAHDWQ_WQX-SPANISHFKR220330-5919970-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919970-0330-4-C/results/953605432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9400","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","13:35:00","MST","2021-11-30 20:35:00",NA,"0.385",385,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605438","UTAHDWQ_WQX-SPANISHFKR211130-5919971-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919971-1130-4-C/results/953605438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9401","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","13:35:00","MST","2021-11-30 20:35:00",NA,"0.417",417,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605441","UTAHDWQ_WQX-SPANISHFKR211130-5919971-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919971-1130-4-C/results/953605441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9402","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-19","10:59:00","MST","2022-01-19 17:59:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605447","UTAHDWQ_WQX-SPANISHFKR220119-5919971-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919971-0119-4-C/results/953605447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9403","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-01-19","10:59:00","MST","2022-01-19 17:59:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605450","UTAHDWQ_WQX-SPANISHFKR220119-5919971-0119-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919971-0119-4-C/results/953605450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9404","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-30","10:57:00","MST","2022-03-30 17:57:00",NA,"0.676",676,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605456","UTAHDWQ_WQX-SPANISHFKR220330-5919971-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919971-0330-4-C/results/953605456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9405","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-30","10:57:00","MST","2022-03-30 17:57:00",NA,"0.827",827,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605459","UTAHDWQ_WQX-SPANISHFKR220330-5919971-0330-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919971-0330-4-C/results/953605459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9406","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","13:00:00","MST","2021-11-02 20:00:00",NA,"0.094",94,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605465","UTAHDWQ_WQX-MUDCK211102-5931467-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931467-1102-4-C/results/953605465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9407","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","13:00:00","MST","2021-11-02 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605468","UTAHDWQ_WQX-MUDCK211102-5931467-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931467-1102-4-C/results/953605468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9408","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","11:15:00","MST","2021-11-30 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605474","UTAHDWQ_WQX-MUDCK211130-5931467-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931467-1130-4-C/results/953605474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9409","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","11:15:00","MST","2021-11-30 18:15:00",NA,"0.609",609,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605477","UTAHDWQ_WQX-MUDCK211130-5931467-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931467-1130-4-C/results/953605477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9410","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-28","15:00:00","MST","2022-03-28 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605483","UTAHDWQ_WQX-MUDCK220328-5931467-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931467-0328-4-C/results/953605483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9411","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-28","15:00:00","MST","2022-03-28 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605486","UTAHDWQ_WQX-MUDCK220328-5931467-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931467-0328-4-C/results/953605486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9412","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","11:40:00","MST","2021-11-02 18:40:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605492","UTAHDWQ_WQX-MUDCK211102-5931480-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931480-1102-4-C/results/953605492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9413","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","11:40:00","MST","2021-11-02 18:40:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605495","UTAHDWQ_WQX-MUDCK211102-5931480-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931480-1102-4-C/results/953605495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9414","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","10:45:00","MST","2021-11-30 17:45:00",NA,"0.51",510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605501","UTAHDWQ_WQX-MUDCK211130-5931480-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931480-1130-4-C/results/953605501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9415","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","10:45:00","MST","2021-11-30 17:45:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605504","UTAHDWQ_WQX-MUDCK211130-5931480-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931480-1130-4-C/results/953605504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9416","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-28","11:00:00","MST","2022-03-28 18:00:00",NA,"0.569",569,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605510","UTAHDWQ_WQX-MUDCK220328-5931480-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931480-0328-4-C/results/953605510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12697","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-28","11:00:00","MST","2022-03-28 18:00:00",NA,"0.543",543,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605513","UTAHDWQ_WQX-MUDCK220328-5931480-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931480-0328-4-C/results/953605513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9418","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","11:50:00","MST","2021-11-02 18:50:00",NA,"0.734",734,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605519","UTAHDWQ_WQX-MUDCK211102-5931481-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931481-1102-4-C/results/953605519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9419","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","11:50:00","MST","2021-11-02 18:50:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605522","UTAHDWQ_WQX-MUDCK211102-5931481-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931481-1102-4-C/results/953605522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12700","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","10:50:00","MST","2021-11-30 17:50:00",NA,"0.483",483,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605528","UTAHDWQ_WQX-MUDCK211130-5931481-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931481-1130-4-C/results/953605528/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9421","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","10:50:00","MST","2021-11-30 17:50:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605531","UTAHDWQ_WQX-MUDCK211130-5931481-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931481-1130-4-C/results/953605531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9422","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-28","11:05:00","MST","2022-03-28 18:05:00",NA,"0.551",551,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605537","UTAHDWQ_WQX-MUDCK220328-5931481-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931481-0328-4-C/results/953605537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9423","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-28","11:05:00","MST","2022-03-28 18:05:00",NA,"0.494",494,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605540","UTAHDWQ_WQX-MUDCK220328-5931481-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931481-0328-4-C/results/953605540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9424","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","11:15:00","MST","2021-11-02 18:15:00",NA,"0.681",681,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605546","UTAHDWQ_WQX-MUDCK211102-5931510-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931510-1102-4-C/results/953605546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9425","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","11:15:00","MST","2021-11-02 18:15:00",NA,"0.618",618,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605549","UTAHDWQ_WQX-MUDCK211102-5931510-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931510-1102-4-C/results/953605549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9426","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","10:25:00","MST","2021-11-30 17:25:00",NA,"0.513",513,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605555","UTAHDWQ_WQX-MUDCK211130-5931510-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931510-1130-4-C/results/953605555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9427","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","10:25:00","MST","2021-11-30 17:25:00",NA,"0.626",626,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605558","UTAHDWQ_WQX-MUDCK211130-5931510-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931510-1130-4-C/results/953605558/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9428","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-28","10:45:00","MST","2022-03-28 17:45:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605564","UTAHDWQ_WQX-MUDCK220328-5931510-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931510-0328-4-C/results/953605564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9429","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-28","10:45:00","MST","2022-03-28 17:45:00",NA,"0.531",531,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605567","UTAHDWQ_WQX-MUDCK220328-5931510-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931510-0328-4-C/results/953605567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9430","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","11:25:00","MST","2021-11-02 18:25:00",NA,"0.541",541,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605573","UTAHDWQ_WQX-MUDCK211102-5931513-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931513-1102-4-C/results/953605573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9431","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","11:25:00","MST","2021-11-02 18:25:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605576","UTAHDWQ_WQX-MUDCK211102-5931513-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931513-1102-4-C/results/953605576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9432","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","10:35:00","MST","2021-11-30 17:35:00",NA,"0.62",620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605582","UTAHDWQ_WQX-MUDCK211130-5931513-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931513-1130-4-C/results/953605582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9433","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","10:35:00","MST","2021-11-30 17:35:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605585","UTAHDWQ_WQX-MUDCK211130-5931513-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931513-1130-4-C/results/953605585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9434","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","11:00:00","MST","2021-11-02 18:00:00",NA,"0.624",624,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605591","UTAHDWQ_WQX-MUDCK211102-5931545-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931545-1102-4-C/results/953605591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9435","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","11:00:00","MST","2021-11-02 18:00:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605594","UTAHDWQ_WQX-MUDCK211102-5931545-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931545-1102-4-C/results/953605594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9436","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","10:15:00","MST","2021-11-30 17:15:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605600","UTAHDWQ_WQX-MUDCK211130-5931545-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931545-1130-4-C/results/953605600/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9437","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","10:15:00","MST","2021-11-30 17:15:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605603","UTAHDWQ_WQX-MUDCK211130-5931545-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931545-1130-4-C/results/953605603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9438","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-28","10:30:00","MST","2022-03-28 17:30:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605609","UTAHDWQ_WQX-MUDCK220328-5931545-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931545-0328-4-C/results/953605609/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9439","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-28","10:30:00","MST","2022-03-28 17:30:00",NA,"0.896",896,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605612","UTAHDWQ_WQX-MUDCK220328-5931545-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931545-0328-4-C/results/953605612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9440","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-02","12:00:00","MST","2021-11-02 19:00:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605618","UTAHDWQ_WQX-MUDCK211102-5931645-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931645-1102-4-C/results/953605618/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9441","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-02","12:00:00","MST","2021-11-02 19:00:00",NA,"0.318",318,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605621","UTAHDWQ_WQX-MUDCK211102-5931645-1102-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931645-1102-4-C/results/953605621/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9442","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-30","11:00:00","MST","2021-11-30 18:00:00",NA,"0.114",114,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605627","UTAHDWQ_WQX-MUDCK211130-5931645-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931645-1130-4-C/results/953605627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12723","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-30","11:00:00","MST","2021-11-30 18:00:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605630","UTAHDWQ_WQX-MUDCK211130-5931645-1130-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931645-1130-4-C/results/953605630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9444","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-28","11:15:00","MST","2022-03-28 18:15:00",NA,"0.184",184,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605636","UTAHDWQ_WQX-MUDCK220328-5931645-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931645-0328-4-C/results/953605636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9445","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-28","11:15:00","MST","2022-03-28 18:15:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605639","UTAHDWQ_WQX-MUDCK220328-5931645-0328-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931645-0328-4-C/results/953605639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12726","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-13","15:10:00","MST","2021-10-13 22:10:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605649","UTAHDWQ_WQX-LAKES211012-5937850-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:01:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937850-1013-2-C/results/953605649/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9447","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","15:10:00","MST","2021-10-13 22:10:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605653","UTAHDWQ_WQX-LAKES211012-5937850-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937850-1013-2-C/results/953605653/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9448","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-13","15:25:00","MST","2021-10-13 22:25:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605658","UTAHDWQ_WQX-LAKES211012-5937850-1013-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937850-1013-29-C/results/953605658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9449","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","15:25:00","MST","2021-10-13 22:25:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605662","UTAHDWQ_WQX-LAKES211012-5937850-1013-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937850-1013-29-C/results/953605662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9450","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-13","15:00:00","MST","2021-10-13 22:00:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605689","UTAHDWQ_WQX-LAKES211012-5937852-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937852-1013-2-C/results/953605689/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9451","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","15:00:00","MST","2021-10-13 22:00:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605693","UTAHDWQ_WQX-LAKES211012-5937852-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937852-1013-2-C/results/953605693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9452","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-13","14:10:00","MST","2021-10-13 21:10:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605703","UTAHDWQ_WQX-LAKES211012-5937860-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES W MIDLAKE 02","Lake",NA,"40.7741000000",40.7741,"-109.3017000000",-109.3017,"OK","14040106","UTAHDWQ_WQX-5937860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741000000","-109.3017000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937860-1013-2-C/results/953605703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9453","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","14:10:00","MST","2021-10-13 21:10:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605707","UTAHDWQ_WQX-LAKES211012-5937860-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES W MIDLAKE 02","Lake",NA,"40.7741000000",40.7741,"-109.3017000000",-109.3017,"OK","14040106","UTAHDWQ_WQX-5937860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741000000","-109.3017000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937860-1013-2-C/results/953605707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9454","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-13","14:25:00","MST","2021-10-13 21:25:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605717","UTAHDWQ_WQX-LAKES211012-5937870-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937870-1013-2-C/results/953605717/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9455","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-13","14:25:00","MST","2021-10-13 21:25:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605721","UTAHDWQ_WQX-LAKES211012-5937870-1013-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937870-1013-2-C/results/953605721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9456","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","14:00:00","MST","2021-10-25 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605729","UTAHDWQ_WQX-NFSDIXIE211025-5949855-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:05",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211025-5949855-1025-4-C/results/953605729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9457","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-29","10:26:00","MST","2021-11-29 17:26:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605738","UTAHDWQ_WQX-NFSDIXIE211129-5949855-1129-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:05",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211129-5949855-1129-4-C/results/953605738/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9458","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","11:50:00","MST","2021-12-13 18:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605747","UTAHDWQ_WQX-NFSDIXIE211213-5949855-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:06",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211213-5949855-1213-4-C/results/953605747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9459","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","13:30:00","MST","2022-01-10 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605773","UTAHDWQ_WQX-NFSDIXIE220110-5949855-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:07",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220110-5949855-0110-4-C/results/953605773/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9460","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-21","11:45:00","MST","2022-03-21 18:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605799","UTAHDWQ_WQX-NFSDIXIE220321-5949855-0321-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:09",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220321-5949855-0321-4-C/results/953605799/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9461","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","12:20:00","MST","2021-10-25 19:20:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605825","UTAHDWQ_WQX-NFSDIXIE211025-5949890-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211025-5949890-1025-4-C/results/953605825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9462","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-29","10:15:00","MST","2021-11-29 17:15:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605834","UTAHDWQ_WQX-NFSDIXIE211129-5949890-1129-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211129-5949890-1129-4-C/results/953605834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9463","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","11:15:00","MST","2021-12-13 18:15:00",NA,"0.179",179,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605843","UTAHDWQ_WQX-NFSDIXIE211213-5949890-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211213-5949890-1213-4-C/results/953605843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9464","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","13:25:00","MST","2022-01-10 20:25:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605869","UTAHDWQ_WQX-NFSDIXIE220110-5949890-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:13",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220110-5949890-0110-4-C/results/953605869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9465","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-21","10:32:00","MST","2022-03-21 17:32:00",NA,"0.3",300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605895","UTAHDWQ_WQX-NFSDIXIE220321-5949890-0321-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:14",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220321-5949890-0321-4-C/results/953605895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9466","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","12:35:00","MST","2021-10-25 19:35:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605921","UTAHDWQ_WQX-NFSDIXIE211025-5949892-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:15",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211025-5949892-1025-4-C/results/953605921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9467","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-29","10:30:00","MST","2021-11-29 17:30:00",NA,"0.145",145,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605930","UTAHDWQ_WQX-NFSDIXIE211129-5949892-1129-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:15",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211129-5949892-1129-4-C/results/953605930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9468","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","11:40:00","MST","2021-12-13 18:40:00",NA,"0.236",236,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605939","UTAHDWQ_WQX-NFSDIXIE211213-5949892-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:16",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211213-5949892-1213-4-C/results/953605939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9469","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","13:35:00","MST","2022-01-10 20:35:00",NA,"0.258",258,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605965","UTAHDWQ_WQX-NFSDIXIE220110-5949892-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:17",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220110-5949892-0110-4-C/results/953605965/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9470","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-21","10:45:00","MST","2022-03-21 17:45:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953605991","UTAHDWQ_WQX-NFSDIXIE220321-5949892-0321-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:18",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220321-5949892-0321-4-C/results/953605991/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9471","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","11:30:00","MST","2021-10-25 18:30:00",NA,"0.143",143,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606017","UTAHDWQ_WQX-NFSDIXIE211025-5949920-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211025-5949920-1025-4-C/results/953606017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9472","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-29","10:55:00","MST","2021-11-29 17:55:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606026","UTAHDWQ_WQX-NFSDIXIE211129-5949920-1129-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211129-5949920-1129-4-C/results/953606026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9473","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","10:56:00","MST","2021-12-13 17:56:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606035","UTAHDWQ_WQX-NFSDIXIE211213-5949920-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211213-5949920-1213-4-C/results/953606035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9474","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","12:30:00","MST","2022-01-10 19:30:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606061","UTAHDWQ_WQX-NFSDIXIE220110-5949920-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220110-5949920-0110-4-C/results/953606061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9475","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-21","10:00:00","MST","2022-03-21 17:00:00",NA,"0.314",314,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606087","UTAHDWQ_WQX-NFSDIXIE220321-5949920-0321-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220321-5949920-0321-4-C/results/953606087/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9476","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-25","13:20:00","MST","2021-10-25 20:20:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606113","UTAHDWQ_WQX-NFSDIXIE211025-5949930-1025-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:25",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211025-5949930-1025-4-C/results/953606113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9477","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-29","09:45:00","MST","2021-11-29 16:45:00",NA,"0.192",192,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606122","UTAHDWQ_WQX-NFSDIXIE211129-5949930-1129-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-12-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211129-5949930-1129-4-C/results/953606122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9478","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-13","12:20:00","MST","2021-12-13 19:20:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606131","UTAHDWQ_WQX-NFSDIXIE211213-5949930-1213-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211213-5949930-1213-4-C/results/953606131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9479","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-01-10","11:20:00","MST","2022-01-10 18:20:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606157","UTAHDWQ_WQX-NFSDIXIE220110-5949930-0110-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220110-5949930-0110-4-C/results/953606157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9480","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-21","11:30:00","MST","2022-03-21 18:30:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606183","UTAHDWQ_WQX-NFSDIXIE220321-5949930-0321-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220321-5949930-0321-4-C/results/953606183/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9481","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-08","08:10:00","MST","2021-10-08 15:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606209","UTAHDWQ_WQX-UCASE2021-5989995-1008-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1008-4-C/results/953606209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9482","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-08","08:10:00","MST","2021-10-08 15:10:00",NA,"0.107",107,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606212","UTAHDWQ_WQX-UCASE2021-5989995-1008-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1008-4-C/results/953606212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9483","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-21","15:30:00","MST","2021-10-21 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606238","UTAHDWQ_WQX-UCASE2021-5989995-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1021-4-C/results/953606238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9484","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","15:30:00","MST","2021-10-21 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606241","UTAHDWQ_WQX-UCASE2021-5989995-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1021-4-C/results/953606241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9485","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-28","13:15:00","MST","2021-10-28 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606267","UTAHDWQ_WQX-UCASE2021-5989995-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1028-4-C/results/953606267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9486","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-28","13:15:00","MST","2021-10-28 20:15:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606270","UTAHDWQ_WQX-UCASE2021-5989995-1028-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1028-4-C/results/953606270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9487","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-10","10:13:00","MST","2021-10-10 17:13:00",NA,"0.698",698,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met. Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606294","UTAHDWQ_WQX-BLMGSE211010-5994520-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"37.1841500000",37.18415,"-111.3684900000",-111.36849,"OK","14070006","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1841500000","-111.3684900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-5994520-1010-4-C/results/953606294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9488","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-10","11:46:00","MST","2021-10-10 18:46:00",NA,"2.12",2120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met. Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606300","UTAHDWQ_WQX-BLMGSE211010-5994530-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-5994530-1010-4-C/results/953606300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9489","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-10","11:46:00","MST","2021-10-10 18:46:00",NA,"2.13",2130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606303","UTAHDWQ_WQX-BLMGSE211010-5994530-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-5994530-1010-4-C/results/953606303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9490","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-10","13:28:00","MST","2021-10-10 20:28:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met. Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606326","UTAHDWQ_WQX-BLMGSE211010-5994550-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-5994550-1010-4-C/results/953606326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9491","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-10","15:08:00","MST","2021-10-10 22:08:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606332","UTAHDWQ_WQX-BLMGSE211010-5994650-1010-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-10-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-5994650-1010-4-C/results/953606332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9492","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-21","16:34:00","MST","2021-10-21 23:34:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606342","UTAHDWQ_WQX-NPSCAN211020-5995202-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995202-1021-4-C/results/953606342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9493","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-21","16:34:00","MST","2021-10-21 23:34:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606345","UTAHDWQ_WQX-NPSCAN211020-5995202-1021-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995202-1021-4-C/results/953606345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9494","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-11","14:30:00","MST","2022-03-11 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606375","UTAHDWQ_WQX-NPSCAN220311-5995202-0311-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995202-0311-4-C/results/953606375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9495","Quality Control Sample-Field Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-11","14:30:00","MST","2022-03-11 21:30:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606378","UTAHDWQ_WQX-NPSCAN220311-5995202-0311-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995202-0311-4-C/results/953606378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9496","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-24","09:50:00","MST","2021-10-24 16:50:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606392","UTAHDWQ_WQX-NPSCAN211020-5995220-1024-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995220-1024-4-C/results/953606392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9497","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-24","09:50:00","MST","2021-10-24 16:50:00",NA,"0.287",287,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606395","UTAHDWQ_WQX-NPSCAN211020-5995220-1024-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995220-1024-4-C/results/953606395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9498","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-05","11:05:00","MST","2021-11-05 18:05:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606425","UTAHDWQ_WQX-NPSCAN211105-5995220-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995220-1105-4-C/results/953606425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9499","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-05","11:05:00","MST","2021-11-05 18:05:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606428","UTAHDWQ_WQX-NPSCAN211105-5995220-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995220-1105-4-C/results/953606428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9500","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-27","12:05:00","MST","2022-02-27 19:05:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606442","UTAHDWQ_WQX-NPSCAN220227-5995220-0227-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995220-0227-4-C/results/953606442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9501","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-27","12:05:00","MST","2022-02-27 19:05:00",NA,"0.284",284,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606445","UTAHDWQ_WQX-NPSCAN220227-5995220-0227-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995220-0227-4-C/results/953606445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9502","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-11","11:15:00","MST","2022-03-11 18:15:00",NA,"0.317",317,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606475","UTAHDWQ_WQX-NPSCAN220311-5995220-0311-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995220-0311-4-C/results/953606475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9503","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-11","11:15:00","MST","2022-03-11 18:15:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606478","UTAHDWQ_WQX-NPSCAN220311-5995220-0311-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995220-0311-4-C/results/953606478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9504","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-05","11:07:00","MST","2021-11-05 18:07:00",NA,"0.819",819,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606492","UTAHDWQ_WQX-NPSCAN211105-5995222-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220","River/Stream","Replicate of 5995220","38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995222-1105-4-C/results/953606492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9505","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-05","11:07:00","MST","2021-11-05 18:07:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606495","UTAHDWQ_WQX-NPSCAN211105-5995222-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220","River/Stream","Replicate of 5995220","38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995222-1105-4-C/results/953606495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9506","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-27","12:08:00","MST","2022-02-27 19:08:00",NA,"0.258",258,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606509","UTAHDWQ_WQX-NPSCAN220227-5995222-0227-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220","River/Stream","Replicate of 5995220","38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995222-0227-4-C/results/953606509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9507","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-27","12:08:00","MST","2022-02-27 19:08:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606512","UTAHDWQ_WQX-NPSCAN220227-5995222-0227-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220","River/Stream","Replicate of 5995220","38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995222-0227-4-C/results/953606512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9508","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-23","11:15:00","MST","2021-10-23 18:15:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606542","UTAHDWQ_WQX-NPSCAN211020-5995240-1023-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995240-1023-4-C/results/953606542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9509","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-23","11:15:00","MST","2021-10-23 18:15:00",NA,"0.205",205,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606545","UTAHDWQ_WQX-NPSCAN211020-5995240-1023-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995240-1023-4-C/results/953606545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9510","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-05","09:10:00","MST","2021-11-05 16:10:00",NA,"0.35",350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606575","UTAHDWQ_WQX-NPSCAN211105-5995240-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995240-1105-4-C/results/953606575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9511","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-05","09:10:00","MST","2021-11-05 16:10:00",NA,"0.371",371,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606578","UTAHDWQ_WQX-NPSCAN211105-5995240-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995240-1105-4-C/results/953606578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9512","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-27","10:00:00","MST","2022-02-27 17:00:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606592","UTAHDWQ_WQX-NPSCAN220227-5995240-0227-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995240-0227-4-C/results/953606592/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9513","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-27","10:00:00","MST","2022-02-27 17:00:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606595","UTAHDWQ_WQX-NPSCAN220227-5995240-0227-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995240-0227-4-C/results/953606595/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9514","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-11","09:10:00","MST","2022-03-11 16:10:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606625","UTAHDWQ_WQX-NPSCAN220311-5995240-0311-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995240-0311-4-C/results/953606625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9515","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-11","09:10:00","MST","2022-03-11 16:10:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606628","UTAHDWQ_WQX-NPSCAN220311-5995240-0311-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995240-0311-4-C/results/953606628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9516","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-10-23","13:19:00","MST","2021-10-23 20:19:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606642","UTAHDWQ_WQX-NPSCAN211020-5995246-1023-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy","Spring",NA,"38.6869400000",38.68694,"-109.6528000000",-109.6528,"OK","14030005","UTAHDWQ_WQX-5995246",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6869400000","-109.6528000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995246-1023-4-C/results/953606642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9517","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-10-23","13:19:00","MST","2021-10-23 20:19:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606645","UTAHDWQ_WQX-NPSCAN211020-5995246-1023-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy","Spring",NA,"38.6869400000",38.68694,"-109.6528000000",-109.6528,"OK","14030005","UTAHDWQ_WQX-5995246",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6869400000","-109.6528000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995246-1023-4-C/results/953606645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6242","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-11-05","13:00:00","MST","2021-11-05 20:00:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606675","UTAHDWQ_WQX-NPSCAN211105-5995246-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy","Spring",NA,"38.6869400000",38.68694,"-109.6528000000",-109.6528,"OK","14030005","UTAHDWQ_WQX-5995246",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6869400000","-109.6528000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995246-1105-4-C/results/953606675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9519","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-11-05","13:00:00","MST","2021-11-05 20:00:00",NA,"0.829",829,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606678","UTAHDWQ_WQX-NPSCAN211105-5995246-1105-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy","Spring",NA,"38.6869400000",38.68694,"-109.6528000000",-109.6528,"OK","14030005","UTAHDWQ_WQX-5995246",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6869400000","-109.6528000000","Accepted",NA,NA,NA,NA,NA,NA,"2021-11-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995246-1105-4-C/results/953606678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9520","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-02-27","13:42:00","MST","2022-02-27 20:42:00",NA,"0.918",918,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606686","UTAHDWQ_WQX-NPSCAN220227-5995246-0227-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy","Spring",NA,"38.6869400000",38.68694,"-109.6528000000",-109.6528,"OK","14030005","UTAHDWQ_WQX-5995246",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:59",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6869400000","-109.6528000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995246-0227-4-C/results/953606686/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9521","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-02-27","13:42:00","MST","2022-02-27 20:42:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606689","UTAHDWQ_WQX-NPSCAN220227-5995246-0227-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy","Spring",NA,"38.6869400000",38.68694,"-109.6528000000",-109.6528,"OK","14030005","UTAHDWQ_WQX-5995246",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:02:59",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6869400000","-109.6528000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995246-0227-4-C/results/953606689/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9522","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-11","13:15:00","MST","2022-03-11 20:15:00",NA,"3.16",3160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606719","UTAHDWQ_WQX-NPSCAN220311-5995246-0311-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy","Spring",NA,"38.6869400000",38.68694,"-109.6528000000",-109.6528,"OK","14030005","UTAHDWQ_WQX-5995246",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:03:00",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6869400000","-109.6528000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995246-0311-4-C/results/953606719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9523","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-11","13:15:00","MST","2022-03-11 20:15:00",NA,"3.28",3280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-953606722","UTAHDWQ_WQX-NPSCAN220311-5995246-0311-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy","Spring",NA,"38.6869400000",38.68694,"-109.6528000000",-109.6528,"OK","14030005","UTAHDWQ_WQX-5995246",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-10-08T04:03:00",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6869400000","-109.6528000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995246-0311-4-C/results/953606722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"52","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-09-13","11:55:00","MST","2022-09-13 18:55:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-958781271","UTEMTN-UT1190S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","Cottonwood Wash Highway 95","River/Stream",NA,"37.5594280000",37.559428,"-109.5771410000",-109.577141,"OK","14080201","UTEMTN-CW Wash HW 95",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-12-01T22:36:01",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5594280000","-109.5771410000","Final",NA,NA,NA,NA,NA,NA,"2022-09-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT1190S/results/958781271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-09-19","09:52:00","MST","2022-09-19 16:52:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-958781630","UTEMTN-MW-EastS","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","white mesa ground water monitoring well; east","Well","monitoring well downgradient of White Mesa Uranium Mill, southeast","37.4964750000",37.496475,"-109.4931020000",-109.493102,"OK","14080201","UTEMTN-WM_GWMW_E",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-12-01T22:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.4964750000","-109.4931020000","Final",NA,NA,NA,NA,NA,NA,"2022-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-MW-EastS/results/958781630/resdetectqntlmts",NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"14","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-09-20","10:00:00","MST","2022-09-20 17:00:00",NA,"0.625",625,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-958781698","UTEMTN-RARE 1S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","RARE - 1","Well",NA,"37.5122083300",37.51220833,"-109.4942416700",-109.49424167,"OK","14080201","UTEMTN-RARE - 1",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-12-01T22:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5122083300","-109.4942416700","Final",NA,NA,NA,NA,NA,NA,"2022-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-RARE%201S/results/958781698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"55","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-04-06","09:36:00","MST","2022-04-06 16:36:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-958781982","UTEMTN-UT 1188S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","RARE-2","Well",NA,"37.5192694400",37.51926944,"-109.4931722200",-109.49317222,"OK","14080201","UTEMTN-RARE-2",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-12-01T22:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5192694400","-109.4931722200","Final",NA,NA,NA,NA,NA,NA,"2022-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201188S/results/958781982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"56","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-09-20","12:10:00","MST","2022-09-20 19:10:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-958782178","UTEMTN-RARE 2S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","RARE-2","Well",NA,"37.5192694400",37.51926944,"-109.4931722200",-109.49317222,"OK","14080201","UTEMTN-RARE-2",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-12-01T22:36:10",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5192694400","-109.4931722200","Final",NA,NA,NA,NA,NA,NA,"2022-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-RARE%202S/results/958782178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"17","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-09-13","11:00:00","MST","2022-09-13 18:00:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-958782222","UTEMTN-UT1192Q","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","Cottonwood wash south 2","River/Stream","Cottonwood wash @ Kigalia Point road crossing. Site is approximately 75 yards upstream of road crossing.","37.6503190000",37.650319,"-109.6304270000",-109.630427,"OK","14080201","UTEMTN-CW-S2",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-12-01T22:36:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.6503190000","-109.6304270000","Final",NA,NA,NA,NA,NA,NA,"2022-09-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT1192Q/results/958782222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"18","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-04-06","12:30:00","MST","2022-04-06 19:30:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-958782255","UTEMTN-UT 1189S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","white mesa ground water monitoring well; east","Well","monitoring well downgradient of White Mesa Uranium Mill, southeast","37.4964750000",37.496475,"-109.4931020000",-109.493102,"OK","14080201","UTEMTN-WM_GWMW_E",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-12-01T22:36:11",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.4964750000","-109.4931020000","Final",NA,NA,NA,NA,NA,NA,"2022-04-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201189S/results/958782255/resdetectqntlmts",NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"59","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-09-19","13:15:00","MST","2022-09-19 20:15:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-958782378","UTEMTN-MW-WestS","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","white mesa ground water monitoring well; west","Well","monitoring well downgradient of White Mesa Uranium Mill, southwest","37.4897350000",37.489735,"-109.5180720000",-109.518072,"OK","14080201","UTEMTN-WM_GWMW_W",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-12-01T22:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.4897350000","-109.5180720000","Final",NA,NA,NA,NA,NA,NA,"2022-09-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-MW-WestS/results/958782378/resdetectqntlmts",NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"60","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2022-09-13","10:55:00","MST","2022-09-13 17:55:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-958782414","UTEMTN-UT1191S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","Cottonwood wash south 2","River/Stream","Cottonwood wash @ Kigalia Point road crossing. Site is approximately 75 yards upstream of road crossing.","37.6503190000",37.650319,"-109.6304270000",-109.630427,"OK","14080201","UTEMTN-CW-S2",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2022-12-01T22:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.6503190000","-109.6304270000","Final",NA,NA,NA,NA,NA,NA,"2022-09-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT1191S/results/958782414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"21","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-07-12","12:41:00","MST","2022-07-12 19:41:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965387449","NTHRNUTE-DDC:202207121241:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","40.2158400000",40.21584,"-109.7838900000",-109.78389,"OK","14060003","NTHRNUTE-DDC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2158400000","-109.7838900000","Final",NA,NA,NA,NA,NA,NA,"2022-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202207121241%3ASR/results/965387449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"22","Quality Control Sample-Lab Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-07-12","12:41:00","MST","2022-07-12 19:41:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965387535","NTHRNUTE-DDC:202207121241:QLB","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","40.2158400000",40.21584,"-109.7838900000",-109.78389,"OK","14060003","NTHRNUTE-DDC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2158400000","-109.7838900000","Final",NA,NA,NA,NA,NA,NA,"2022-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202207121241%3AQLB/results/965387535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"23","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-07-12","13:44:00","MST","2022-07-12 20:44:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965387562","NTHRNUTE-DRB:202207121344:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,"2022-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202207121344%3ASR/results/965387562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"24","Quality Control Sample-Lab Duplicate","QC_duplicate","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-07-12","13:44:00","MST","2022-07-12 20:44:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965387634","NTHRNUTE-DRB:202207121344:QLD","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,"2022-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202207121344%3AQLD/results/965387634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"38","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-07-13","10:33:00","MST","2022-07-13 17:33:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965387669","NTHRNUTE-WRB:202207131033:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Whiterocks River 2","River/Stream","River above Uriah Heeps.","40.5331460000",40.533146,"-109.9237518300",-109.92375183,"OK","14060003","NTHRNUTE-WRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5331460000","-109.9237518300","Final",NA,NA,NA,NA,NA,NA,"2022-07-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202207131033%3ASR/results/965387669/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"26","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-07-18","13:13:00","MST","2022-07-18 20:13:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965387831","NTHRNUTE-IDR:202207181313:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","INDIAN CREEK","River/Stream",NA,"40.1572222222",40.1572222222,"-110.4050000000",-110.405,"OK","14060004","NTHRNUTE-IDR",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1572222222","-110.4050000000","Final",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202207181313%3ASR/results/965387831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"27","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-12","13:29:00","MST","2022-09-12 20:29:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965387860","NTHRNUTE-WGR2:202209121329:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","White River at Carrot Patch","River/Stream",NA,"40.0675900000",40.06759,"-109.5950400000",-109.59504,"OK","14050007","NTHRNUTE-WGR2",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0675900000","-109.5950400000","Final",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WGR2%3A202209121329%3ASR/results/965387860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"28","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-12","15:11:00","MST","2022-09-12 22:11:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965387945","NTHRNUTE-DDC:202209121511:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","40.2158400000",40.21584,"-109.7838900000",-109.78389,"OK","14060003","NTHRNUTE-DDC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:25",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2158400000","-109.7838900000","Final",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202209121511%3ASR/results/965387945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"69","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-13","14:56:00","MST","2022-09-13 21:56:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388070","NTHRNUTE-RKD:202209131456:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","Rock Creek","River/Stream","Knights Diversion below 3rd bridge.","40.3110798300",40.31107983,"-110.4938520000",-110.493852,"OK","14060003","NTHRNUTE-RKD",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3110798300","-110.4938520000","Final",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-RKD%3A202209131456%3ASR/results/965388070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"30","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-13","15:03:00","MST","2022-09-13 22:03:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388157","NTHRNUTE-IDR:202209131503:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","INDIAN CREEK","River/Stream",NA,"40.1572222222",40.1572222222,"-110.4050000000",-110.405,"OK","14060004","NTHRNUTE-IDR",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.1572222222","-110.4050000000","Final",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202209131503%3ASR/results/965388157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"71","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-13","16:00:00","MST","2022-09-13 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388164","NTHRNUTE-SCC:202209131600:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","013","Sowers Canyon Creek","River/Stream","River/Stream","40.0615548300",40.06155483,"-110.2903830000",-110.290383,"OK","14060003","NTHRNUTE-SCC",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.0615548300","-110.2903830000","Final",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SCC%3A202209131600%3ASR/results/965388164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"32","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-14","10:31:00","MST","2022-09-14 17:31:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388240","NTHRNUTE-WRB:202209141031:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Whiterocks River 2","River/Stream","River above Uriah Heeps.","40.5331460000",40.533146,"-109.9237518300",-109.92375183,"OK","14060003","NTHRNUTE-WRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.5331460000","-109.9237518300","Final",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202209141031%3ASR/results/965388240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"33","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-19","12:46:00","MST","2022-09-19 19:46:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388282","NTHRNUTE-DRB:202209191246:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,"2022-09-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202209191246%3ASR/results/965388282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"34","Quality Control Sample-Lab Duplicate","QC_duplicate","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-19","12:46:00","MST","2022-09-19 19:46:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388378","NTHRNUTE-DRB:202209191246:QLD","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","1","Duplicate","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,"2022-09-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202209191246%3AQLD/results/965388378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"35","Quality Control Sample-Lab Duplicate","QC_duplicate","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-19","12:46:00","MST","2022-09-19 19:46:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388426","NTHRNUTE-DRB:202209191246:QLD","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","1","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","40.2066298300",40.20662983,"-109.8585538300",-109.85855383,"OK","14060003","NTHRNUTE-DRB",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2066298300","-109.8585538300","Final",NA,NA,NA,NA,NA,NA,"2022-09-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202209191246%3AQLD/results/965388426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"36","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-19","13:14:00","MST","2022-09-19 20:14:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388439","NTHRNUTE-G4C:202209191314:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","2","Duplicate","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","4 Corners","River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","40.2415300000",40.24153,"-109.8590500000",-109.85905,"OK","14060003","NTHRNUTE-G4C",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2415300000","-109.8590500000","Final",NA,NA,NA,NA,NA,NA,"2022-09-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-G4C%3A202209191314%3ASR/results/965388439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"37","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-19","13:14:00","MST","2022-09-19 20:14:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388512","NTHRNUTE-G4C:202209191314:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","2","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","4 Corners","River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","40.2415300000",40.24153,"-109.8590500000",-109.85905,"OK","14060003","NTHRNUTE-G4C",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.2415300000","-109.8590500000","Final",NA,NA,NA,NA,NA,NA,"2022-09-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-G4C%3A202209191314%3ASR/results/965388512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"51","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-19","13:34:00","MST","2022-09-19 20:34:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388546","NTHRNUTE-UFD:202209191334:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","4","Duplicate","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Ft. Duchesne","River/Stream","Uintah River at US 40 Bridge","40.3019500000",40.30195,"-109.8531500000",-109.85315,"OK","14060003","NTHRNUTE-UFD",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3019500000","-109.8531500000","Final",NA,NA,NA,NA,NA,NA,"2022-09-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-UFD%3A202209191334%3ASR/results/965388546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"39","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-19","13:34:00","MST","2022-09-19 20:34:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388635","NTHRNUTE-UFD:202209191334:SR","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","4","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Ft. Duchesne","River/Stream","Uintah River at US 40 Bridge","40.3019500000",40.30195,"-109.8531500000",-109.85315,"OK","14060003","NTHRNUTE-UFD",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3019500000","-109.8531500000","Final",NA,NA,NA,NA,NA,NA,"2022-09-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-UFD%3A202209191334%3ASR/results/965388635/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"40","Quality Control Sample-Lab Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-19","13:34:00","MST","2022-09-19 20:34:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388650","NTHRNUTE-UFD:202209191334:QLB","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","3","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Ft. Duchesne","River/Stream","Uintah River at US 40 Bridge","40.3019500000",40.30195,"-109.8531500000",-109.85315,"OK","14060003","NTHRNUTE-UFD",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3019500000","-109.8531500000","Final",NA,NA,NA,NA,NA,NA,"2022-09-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-UFD%3A202209191334%3AQLB/results/965388650/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"41","Quality Control Sample-Lab Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_TOTAL_AS N_UG/L","2022-09-19","13:34:00","MST","2022-09-19 20:34:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Practical Quantitation Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"ACZ Laboratories, Inc.",NA,"STORET-965388651","NTHRNUTE-UFD:202209191334:QLB","NTHRNUTE","Northern Ute Indian Tribe (UT)","N","Not a duplicate","Y","3","Duplicate","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","047","Ft. Duchesne","River/Stream","Uintah River at US 40 Bridge","40.3019500000",40.30195,"-109.8531500000",-109.85315,"OK","14060003","NTHRNUTE-UFD",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-26T06:16:28",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"40.3019500000","-109.8531500000","Final",NA,NA,NA,NA,NA,NA,"2022-09-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-UFD%3A202209191334%3AQLB/results/965388651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV",NA,NA,NA,NA,NA,NA +"9554","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","11:22:00","MST","2022-04-28 18:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357409","UTAHDWQ_WQX-CUWJP220428-5910302-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5910302-0428-4-C/results/966357409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9555","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","11:31:00","MST","2022-04-28 18:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357421","UTAHDWQ_WQX-CUWJP220428-5910273-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5910273-0428-4-C/results/966357421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9556","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:34:00","MST","2022-05-24 18:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357433","UTAHDWQ_WQX-CUWJP220524-5910302-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5910302-0524-4-C/results/966357433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9557","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:41:00","MST","2022-05-24 18:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357445","UTAHDWQ_WQX-CUWJP220524-5910273-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5910273-0524-4-C/results/966357445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9558","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","11:21:00","MST","2022-06-29 18:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357457","UTAHDWQ_WQX-CUWJP220629-5910302-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5910302-0629-4-C/results/966357457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9559","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","11:29:00","MST","2022-06-29 18:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357469","UTAHDWQ_WQX-CUWJP220629-5910273-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5910273-0629-4-C/results/966357469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9560","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","11:15:00","MST","2022-07-28 18:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357481","UTAHDWQ_WQX-CUWJP220728-5910302-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch at US 40 Xing","Canal Drainage",NA,"40.5362500000",40.53625,"-111.4119100000",-111.41191,"OK","16020203","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5362500000","-111.4119100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5910302-0728-4-C/results/966357481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9561","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","11:23:00","MST","2022-07-28 18:23:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357493","UTAHDWQ_WQX-CUWJP220728-5910273-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5910273-0728-4-C/results/966357493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9562","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","11:50:00","MST","2022-08-30 18:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357505","UTAHDWQ_WQX-CUWJP220830-5910273-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-5910273-0830-4-C/results/966357505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9563","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","11:58:00","MST","2022-09-29 18:58:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357517","UTAHDWQ_WQX-CUWJP220929-5910273-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","London Ditch @ 1200 North Heber","Canal Drainage",NA,"40.5217800000",40.52178,"-111.4160500000",-111.41605,"OK","16020203","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5217800000","-111.4160500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-5910273-0929-4-C/results/966357517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9564","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","08:44:00","MST","2022-04-06 15:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357603","UTAHDWQ_WQX-CUWSR220406-4936050-0406-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-2-C/results/966357603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9565","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","08:47:00","MST","2022-04-06 15:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357623","UTAHDWQ_WQX-CUWSR220406-4936050-0406-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-22-C/results/966357623/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9566","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","08:48:00","MST","2022-04-06 15:48:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357641","UTAHDWQ_WQX-CUWSR220406-4936050-0406-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-23-C/results/966357641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9567","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","08:53:00","MST","2022-04-06 15:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357659","UTAHDWQ_WQX-CUWSR220406-4936050-0406-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-24-C/results/966357659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9568","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","08:55:00","MST","2022-04-06 15:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357677","UTAHDWQ_WQX-CUWSR220406-4936050-0406-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-26-C/results/966357677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9569","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","08:57:00","MST","2022-04-06 15:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","25",25,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357695","UTAHDWQ_WQX-CUWSR220406-4936050-0406-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-27-C/results/966357695/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9570","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","12:23:00","MST","2022-04-06 19:23:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357713","UTAHDWQ_WQX-CUWRF220406-5937650-0406-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220406-5937650-0406-2-C/results/966357713/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12851","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","12:31:00","MST","2022-04-06 19:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357733","UTAHDWQ_WQX-CUWRF220406-5937650-0406-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220406-5937650-0406-25-C/results/966357733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9572","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","12:41:00","MST","2022-04-06 19:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","15.6",15.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357751","UTAHDWQ_WQX-CUWRF220406-5937650-0406-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220406-5937650-0406-29-C/results/966357751/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9573","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","08:06:00","MST","2022-04-14 15:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357769","UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-2-C/results/966357769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12854","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","08:17:00","MST","2022-04-14 15:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","18",18,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357783","UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-25-C/results/966357783/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9575","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","08:21:00","MST","2022-04-14 15:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","28",28,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357795","UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-28-C/results/966357795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9576","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","08:26:00","MST","2022-04-14 15:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","36",36,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357807","UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-29-C/results/966357807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9577","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","09:20:00","MST","2022-04-14 16:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357819","UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-2-C/results/966357819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9578","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","09:27:00","MST","2022-04-14 16:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357833","UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-25-C/results/966357833/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12859","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","09:33:00","MST","2022-04-14 16:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","23",23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357844","UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-29-C/results/966357844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9580","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","10:04:00","MST","2022-04-14 17:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357855","UTAHDWQ_WQX-CUWJPRESDC220414-5913240-0414-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913240-0414-2-C/results/966357855/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9581","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","10:09:00","MST","2022-04-14 17:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","7.8",7.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357869","UTAHDWQ_WQX-CUWJPRESDC220414-5913240-0414-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913240-0414-29-C/results/966357869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12862","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","08:05:00","MST","2022-04-14 15:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357880","UTAHDWQ_WQX-CUWJPRESDC220414-5913490-0414-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913490-0414-2-C/results/966357880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9583","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","08:36:00","MST","2022-04-21 15:36:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357894","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-2-C/results/966357894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9584","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","08:42:00","MST","2022-04-21 15:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357906","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-24-C/results/966357906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9585","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","08:46:00","MST","2022-04-21 15:46:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357918","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-26-C/results/966357918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9586","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","08:48:00","MST","2022-04-21 15:48:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357930","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-27-C/results/966357930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9587","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","08:51:00","MST","2022-04-21 15:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","21",21,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357942","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-28-C/results/966357942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9588","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","09:12:00","MST","2022-04-21 16:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","64",64,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357954","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-29-C/results/966357954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9589","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","09:56:00","MST","2022-04-21 16:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357966","UTAHDWQ_WQX-CUWJPRESJR220421-5914040-0421-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914040-0421-2-C/results/966357966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9590","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","10:15:00","MST","2022-04-21 17:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","26",26,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357978","UTAHDWQ_WQX-CUWJPRESJR220421-5914040-0421-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914040-0421-29-C/results/966357978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9591","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","10:43:00","MST","2022-04-21 17:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966357989","UTAHDWQ_WQX-CUWJPRESJR220421-5914030-0421-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914030-0421-2-C/results/966357989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9592","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","10:56:00","MST","2022-04-21 17:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","24",24,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358001","UTAHDWQ_WQX-CUWJPRESJR220421-5914030-0421-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914030-0421-29-C/results/966358001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9593","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","09:45:00","MST","2022-04-28 16:45:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358012","UTAHDWQ_WQX-CUWJP220428-4998400-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4998400-0428-4-C/results/966358012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9594","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","10:09:00","MST","2022-04-28 17:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358043","UTAHDWQ_WQX-CUWJP220428-4998130-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4998130-0428-4-C/results/966358043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9595","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","10:29:00","MST","2022-04-28 17:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358055","UTAHDWQ_WQX-CUWJP220428-4997330-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4997330-0428-4-C/results/966358055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9596","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","10:51:00","MST","2022-04-28 17:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358067","UTAHDWQ_WQX-CUWJP220428-4997675-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4997675-0428-4-C/results/966358067/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9597","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","10:57:00","MST","2022-04-28 17:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358098","UTAHDWQ_WQX-CUWJP220428-4997670-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4997670-0428-4-C/results/966358098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9598","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","11:13:00","MST","2022-04-28 18:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358129","UTAHDWQ_WQX-CUWJP220428-4997300-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4997300-0428-4-C/results/966358129/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12879","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","11:46:00","MST","2022-04-28 18:46:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358141","UTAHDWQ_WQX-CUWJP220428-4997250-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4997250-0428-4-C/results/966358141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9600","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","11:55:00","MST","2022-04-28 18:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358153","UTAHDWQ_WQX-CUWJP220428-5910250-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5910250-0428-4-C/results/966358153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9601","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","12:47:00","MST","2022-04-28 19:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358165","UTAHDWQ_WQX-CUWJP220428-5910160-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5910160-0428-4-C/results/966358165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12882","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","13:11:00","MST","2022-04-28 20:11:00",NA,"1.2",1200,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358178","UTAHDWQ_WQX-CUWJP220428-5910020-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"40.4613500000",40.46135,"-111.4715700000",-111.47157,"OK","16020203","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4613500000","-111.4715700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5910020-0428-4-C/results/966358178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9603","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","13:26:00","MST","2022-04-28 20:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358190","UTAHDWQ_WQX-CUWJP220428-5913460-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5913460-0428-4-C/results/966358190/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9604","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","13:57:00","MST","2022-04-28 20:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358202","UTAHDWQ_WQX-CUWJP220428-4996870-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4996870-0428-4-C/results/966358202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9605","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","13:59:00","MST","2022-04-28 20:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358214","UTAHDWQ_WQX-CUWJP220428-5913210-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5913210-0428-4-C/results/966358214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9606","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","14:00:00","MST","2022-04-28 21:00:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358226","UTAHDWQ_WQX-CUWJP220428-4996890-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4996890-0428-4-C/results/966358226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12887","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","14:11:00","MST","2022-04-28 21:11:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358238","UTAHDWQ_WQX-CUWJP220428-4996850-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4996850-0428-4-C/results/966358238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9608","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","14:27:00","MST","2022-04-28 21:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358250","UTAHDWQ_WQX-CUWJP220428-4996810-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4996810-0428-4-C/results/966358250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9609","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-28","14:40:00","MST","2022-04-28 21:40:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358262","UTAHDWQ_WQX-CUWJP220428-4996780-0428-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4996780-0428-4-C/results/966358262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12890","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-05","08:40:00","MST","2022-05-05 15:40:00",NA,"1.4",1400,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358274","UTAHDWQ_WQX-CUWSR220505-4936050-0505-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-2-C/results/966358274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9611","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-05","08:44:00","MST","2022-05-05 15:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358307","UTAHDWQ_WQX-CUWSR220505-4936050-0505-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-22-C/results/966358307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9612","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-05","08:50:00","MST","2022-05-05 15:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358338","UTAHDWQ_WQX-CUWSR220505-4936050-0505-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-23-C/results/966358338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12893","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-05","08:56:00","MST","2022-05-05 15:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358369","UTAHDWQ_WQX-CUWSR220505-4936050-0505-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-24-C/results/966358369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9614","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-05","09:01:00","MST","2022-05-05 16:01:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358400","UTAHDWQ_WQX-CUWSR220505-4936050-0505-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-26-C/results/966358400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9615","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-05","09:05:00","MST","2022-05-05 16:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","25",25,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358431","UTAHDWQ_WQX-CUWSR220505-4936050-0505-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-27-C/results/966358431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12896","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-05","09:12:00","MST","2022-05-05 16:12:00",NA,"7.9",7900,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.3",34.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358462","UTAHDWQ_WQX-CUWSR220505-4936050-0505-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-29-C/results/966358462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9617","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-05","12:13:00","MST","2022-05-05 19:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358493","UTAHDWQ_WQX-CUWRF220505-5937650-0505-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220505-5937650-0505-2-C/results/966358493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9618","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-05","12:22:00","MST","2022-05-05 19:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358526","UTAHDWQ_WQX-CUWRF220505-5937650-0505-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220505-5937650-0505-25-C/results/966358526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9619","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-05","12:29:00","MST","2022-05-05 19:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","21.9",21.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358557","UTAHDWQ_WQX-CUWRF220505-5937650-0505-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220505-5937650-0505-29-C/results/966358557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9620","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","08:11:00","MST","2022-05-12 15:11:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358588","UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-2-C/results/966358588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9621","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","08:30:00","MST","2022-05-12 15:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","18",18,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358602","UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-25-C/results/966358602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9622","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","08:37:00","MST","2022-05-12 15:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","28",28,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358614","UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-28-C/results/966358614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9623","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","08:42:00","MST","2022-05-12 15:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","36",36,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358626","UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-29-C/results/966358626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9624","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","09:20:00","MST","2022-05-12 16:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358657","UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-2-C/results/966358657/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9625","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","09:27:00","MST","2022-05-12 16:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358671","UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-25-C/results/966358671/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9626","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","09:31:00","MST","2022-05-12 16:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","23",23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358682","UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-29-C/results/966358682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9627","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","09:56:00","MST","2022-05-12 16:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358693","UTAHDWQ_WQX-CUWJPRESDC220512-5913240-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913240-0512-2-C/results/966358693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9628","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","09:58:00","MST","2022-05-12 16:58:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","7.1",7.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358707","UTAHDWQ_WQX-CUWJPRESDC220512-5913240-0512-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913240-0512-29-C/results/966358707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9629","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","08:10:00","MST","2022-05-12 15:10:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358718","UTAHDWQ_WQX-CUWJPRESDC220512-5913490-0512-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913490-0512-2-C/results/966358718/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9630","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","10:05:00","MST","2022-05-24 17:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358732","UTAHDWQ_WQX-CUWJP220524-4998400-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:56:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4998400-0524-4-C/results/966358732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9631","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","10:22:00","MST","2022-05-24 17:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358746","UTAHDWQ_WQX-CUWJP220524-4998140-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","043","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"40.6099500000",40.60995,"-111.3051800000",-111.30518,"OK","16020203","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6099500000","-111.3051800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4998140-0524-4-C/results/966358746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9632","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","10:30:00","MST","2022-05-24 17:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358758","UTAHDWQ_WQX-CUWJP220524-4998130-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4998130-0524-4-C/results/966358758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9633","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","10:48:00","MST","2022-05-24 17:48:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358789","UTAHDWQ_WQX-CUWJP220524-4997330-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4997330-0524-4-C/results/966358789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9634","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:06:00","MST","2022-05-24 18:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358820","UTAHDWQ_WQX-CUWJP220524-4997675-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4997675-0524-4-C/results/966358820/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9635","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:12:00","MST","2022-05-24 18:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358851","UTAHDWQ_WQX-CUWJP220524-4997670-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4997670-0524-4-C/results/966358851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9636","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:26:00","MST","2022-05-24 18:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358882","UTAHDWQ_WQX-CUWJP220524-4997300-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4997300-0524-4-C/results/966358882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9637","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:52:00","MST","2022-05-24 18:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358894","UTAHDWQ_WQX-CUWJP220524-4997250-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4997250-0524-4-C/results/966358894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9638","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:58:00","MST","2022-05-24 18:58:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358906","UTAHDWQ_WQX-CUWJP220524-5910250-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5910250-0524-4-C/results/966358906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9639","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","12:35:00","MST","2022-05-24 19:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358918","UTAHDWQ_WQX-CUWJP220524-5910160-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5910160-0524-4-C/results/966358918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9640","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","12:53:00","MST","2022-05-24 19:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358933","UTAHDWQ_WQX-CUWJP220524-5913460-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5913460-0524-4-C/results/966358933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9641","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","13:12:00","MST","2022-05-24 20:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358945","UTAHDWQ_WQX-CUWJP220524-4996870-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996870-0524-4-C/results/966358945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9642","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","13:16:00","MST","2022-05-24 20:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358957","UTAHDWQ_WQX-CUWJP220524-5913210-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5913210-0524-4-C/results/966358957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9643","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","13:17:00","MST","2022-05-24 20:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966358988","UTAHDWQ_WQX-CUWJP220524-4996890-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996890-0524-4-C/results/966358988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9644","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","13:30:00","MST","2022-05-24 20:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359019","UTAHDWQ_WQX-CUWJP220524-4996850-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996850-0524-4-C/results/966359019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9645","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","13:39:00","MST","2022-05-24 20:39:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359031","UTAHDWQ_WQX-CUWJP220524-4996830-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996830-0524-4-C/results/966359031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9646","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","13:47:00","MST","2022-05-24 20:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359043","UTAHDWQ_WQX-CUWJP220524-4996810-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996810-0524-4-C/results/966359043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9647","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","13:59:00","MST","2022-05-24 20:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359074","UTAHDWQ_WQX-CUWJP220524-4996780-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996780-0524-4-C/results/966359074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9648","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-31","10:28:00","MST","2022-05-31 17:28:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359086","UTAHDWQ_WQX-CUWDF220531-4995600-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220531-4995600-0531-4-C/results/966359086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9649","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-31","10:55:00","MST","2022-05-31 17:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359117","UTAHDWQ_WQX-CUWDF220531-4995640-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FK CK AB SPANISH FK R AT US6 89 XING","River/Stream",NA,"40.0269000000",40.0269,"-111.5040800000",-111.50408,"OK","16020202","UTAHDWQ_WQX-4995640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0269000000","-111.5040800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220531-4995640-0531-4-C/results/966359117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9650","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-31","11:04:00","MST","2022-05-31 18:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359148","UTAHDWQ_WQX-CUWDF220531-4995790-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FK R AB CNFL / DIAMOND FK CK","River/Stream",NA,"40.0246700000",40.02467,"-111.5029700000",-111.50297,"OK","16020202","UTAHDWQ_WQX-4995790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0246700000","-111.5029700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220531-4995790-0531-4-C/results/966359148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9651","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","09:42:00","MST","2022-06-09 16:42:00",NA,"1.1",1100,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359234","UTAHDWQ_WQX-CUWSR220609-4936050-0609-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-2-C/results/966359234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9652","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","09:43:00","MST","2022-06-09 16:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359247","UTAHDWQ_WQX-CUWSR220609-4936050-0609-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-22-C/results/966359247/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9653","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","09:50:00","MST","2022-06-09 16:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359260","UTAHDWQ_WQX-CUWSR220609-4936050-0609-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-23-C/results/966359260/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9654","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","09:59:00","MST","2022-06-09 16:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359273","UTAHDWQ_WQX-CUWSR220609-4936050-0609-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-24-C/results/966359273/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9655","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","10:07:00","MST","2022-06-09 17:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359286","UTAHDWQ_WQX-CUWSR220609-4936050-0609-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-26-C/results/966359286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9656","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","10:15:00","MST","2022-06-09 17:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","25",25,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359299","UTAHDWQ_WQX-CUWSR220609-4936050-0609-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-27-C/results/966359299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9657","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","10:19:00","MST","2022-06-09 17:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","26.5",26.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359312","UTAHDWQ_WQX-CUWSR220609-4936050-0609-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-29-C/results/966359312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9658","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","13:57:00","MST","2022-06-09 20:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359325","UTAHDWQ_WQX-CUWRF220609-5937650-0609-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220609-5937650-0609-2-C/results/966359325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9659","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","13:59:00","MST","2022-06-09 20:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359338","UTAHDWQ_WQX-CUWRF220609-5937650-0609-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220609-5937650-0609-23-C/results/966359338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9660","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","14:01:00","MST","2022-06-09 21:01:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","6",6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359351","UTAHDWQ_WQX-CUWRF220609-5937650-0609-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220609-5937650-0609-27-C/results/966359351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9661","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","14:08:00","MST","2022-06-09 21:08:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","21",21,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359364","UTAHDWQ_WQX-CUWRF220609-5937650-0609-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220609-5937650-0609-29-C/results/966359364/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9662","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","09:31:00","MST","2022-06-23 16:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359377","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-2-C/results/966359377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9663","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","09:36:00","MST","2022-06-23 16:36:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359391","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-22-C/results/966359391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9664","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","09:40:00","MST","2022-06-23 16:40:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359403","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-23-C/results/966359403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9665","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","09:43:00","MST","2022-06-23 16:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359415","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-24-C/results/966359415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9666","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","09:47:00","MST","2022-06-23 16:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","21",21,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359427","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-26-C/results/966359427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9667","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","09:52:00","MST","2022-06-23 16:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","26",26,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359439","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-27-C/results/966359439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9668","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","09:56:00","MST","2022-06-23 16:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","33",33,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359451","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-28-C/results/966359451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9669","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","10:07:00","MST","2022-06-23 17:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","69.2",69.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359463","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-29-C/results/966359463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9670","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","10:51:00","MST","2022-06-23 17:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359475","UTAHDWQ_WQX-CUWJPRESJR220623-5914040-0623-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914040-0623-2-C/results/966359475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9671","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","11:07:00","MST","2022-06-23 18:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","37.6",37.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359489","UTAHDWQ_WQX-CUWJPRESJR220623-5914040-0623-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914040-0623-29-C/results/966359489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9672","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","11:30:00","MST","2022-06-23 18:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359500","UTAHDWQ_WQX-CUWJPRESJR220623-5914030-0623-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914030-0623-2-C/results/966359500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9673","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","11:47:00","MST","2022-06-23 18:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","37.7",37.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359515","UTAHDWQ_WQX-CUWJPRESJR220623-5914030-0623-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914030-0623-29-C/results/966359515/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9674","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","09:41:00","MST","2022-06-29 16:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359526","UTAHDWQ_WQX-CUWJP220629-4998400-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4998400-0629-4-C/results/966359526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9675","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","10:08:00","MST","2022-06-29 17:08:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359557","UTAHDWQ_WQX-CUWJP220629-4998130-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4998130-0629-4-C/results/966359557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9676","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","10:26:00","MST","2022-06-29 17:26:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359569","UTAHDWQ_WQX-CUWJP220629-4997330-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4997330-0629-4-C/results/966359569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9677","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","10:47:00","MST","2022-06-29 17:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359581","UTAHDWQ_WQX-CUWJP220629-4997675-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4997675-0629-4-C/results/966359581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9678","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","10:56:00","MST","2022-06-29 17:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359612","UTAHDWQ_WQX-CUWJP220629-4997670-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4997670-0629-4-C/results/966359612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9679","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","11:12:00","MST","2022-06-29 18:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359643","UTAHDWQ_WQX-CUWJP220629-4997300-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4997300-0629-4-C/results/966359643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9680","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","11:43:00","MST","2022-06-29 18:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359655","UTAHDWQ_WQX-CUWJP220629-4997250-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4997250-0629-4-C/results/966359655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9681","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","11:53:00","MST","2022-06-29 18:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359667","UTAHDWQ_WQX-CUWJP220629-5910250-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5910250-0629-4-C/results/966359667/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9682","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","12:33:00","MST","2022-06-29 19:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359679","UTAHDWQ_WQX-CUWJP220629-5910160-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5910160-0629-4-C/results/966359679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9683","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","12:49:00","MST","2022-06-29 19:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359691","UTAHDWQ_WQX-CUWJP220629-5913630-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"40.4841200000",40.48412,"-111.4651800000",-111.46518,"OK","16020203","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4841200000","-111.4651800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5913630-0629-4-C/results/966359691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9684","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","13:15:00","MST","2022-06-29 20:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359703","UTAHDWQ_WQX-CUWJP220629-5913460-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5913460-0629-4-C/results/966359703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9685","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","13:50:00","MST","2022-06-29 20:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359715","UTAHDWQ_WQX-CUWJP220629-4996870-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996870-0629-4-C/results/966359715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9686","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","13:54:00","MST","2022-06-29 20:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359727","UTAHDWQ_WQX-CUWJP220629-5913210-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5913210-0629-4-C/results/966359727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9687","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","13:55:00","MST","2022-06-29 20:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359739","UTAHDWQ_WQX-CUWJP220629-4996890-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996890-0629-4-C/results/966359739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9688","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","14:07:00","MST","2022-06-29 21:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359751","UTAHDWQ_WQX-CUWJP220629-4996850-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996850-0629-4-C/results/966359751/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9689","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","14:20:00","MST","2022-06-29 21:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359763","UTAHDWQ_WQX-CUWJP220629-4996830-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996830-0629-4-C/results/966359763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9690","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","14:30:00","MST","2022-06-29 21:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359775","UTAHDWQ_WQX-CUWJP220629-4996810-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996810-0629-4-C/results/966359775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9691","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","14:42:00","MST","2022-06-29 21:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359787","UTAHDWQ_WQX-CUWJP220629-4996780-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996780-0629-4-C/results/966359787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9692","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","09:51:00","MST","2022-07-07 16:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359799","UTAHDWQ_WQX-CUWSR220707-4936050-0707-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-2-C/results/966359799/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9693","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","09:51:00","MST","2022-07-07 16:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359819","UTAHDWQ_WQX-CUWSR220707-4936050-0707-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-22-C/results/966359819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9694","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","09:55:00","MST","2022-07-07 16:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359837","UTAHDWQ_WQX-CUWSR220707-4936050-0707-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-23-C/results/966359837/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9695","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","10:03:00","MST","2022-07-07 17:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359855","UTAHDWQ_WQX-CUWSR220707-4936050-0707-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-24-C/results/966359855/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9696","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","10:07:00","MST","2022-07-07 17:07:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","17",17,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359873","UTAHDWQ_WQX-CUWSR220707-4936050-0707-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-26-C/results/966359873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9697","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","10:12:00","MST","2022-07-07 17:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","23",23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359891","UTAHDWQ_WQX-CUWSR220707-4936050-0707-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-27-C/results/966359891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9698","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","10:22:00","MST","2022-07-07 17:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.7",32.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359909","UTAHDWQ_WQX-CUWSR220707-4936050-0707-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-29-C/results/966359909/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9699","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","13:36:00","MST","2022-07-07 20:36:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359927","UTAHDWQ_WQX-CUWRF220707-5937650-0707-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220707-5937650-0707-2-C/results/966359927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9700","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","13:38:00","MST","2022-07-07 20:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359947","UTAHDWQ_WQX-CUWRF220707-5937650-0707-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220707-5937650-0707-23-C/results/966359947/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9701","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","13:44:00","MST","2022-07-07 20:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359965","UTAHDWQ_WQX-CUWRF220707-5937650-0707-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220707-5937650-0707-27-C/results/966359965/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9702","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","13:47:00","MST","2022-07-07 20:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","17",17,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359983","UTAHDWQ_WQX-CUWRF220707-5937650-0707-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220707-5937650-0707-29-C/results/966359983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9703","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-15","10:24:00","MST","2022-07-15 17:24:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966359999","UTAHDWQ_WQX-CUWSTR220715-4936420-0715-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220715-4936420-0715-2-C/results/966359999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9704","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-15","10:28:00","MST","2022-07-15 17:28:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360013","UTAHDWQ_WQX-CUWSTR220715-4936420-0715-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220715-4936420-0715-23-C/results/966360013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9705","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-15","10:29:00","MST","2022-07-15 17:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360024","UTAHDWQ_WQX-CUWSTR220715-4936420-0715-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220715-4936420-0715-27-C/results/966360024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9706","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-15","10:41:00","MST","2022-07-15 17:41:00",NA,"14",14000,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18.7",18.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360035","UTAHDWQ_WQX-CUWSTR220715-4936420-0715-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220715-4936420-0715-29-C/results/966360035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9707","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:04:00","MST","2022-07-20 17:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360046","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-2-C/results/966360046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9708","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:05:00","MST","2022-07-20 17:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","3",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360060","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-22-C/results/966360060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9709","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:08:00","MST","2022-07-20 17:08:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360072","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-23-C/results/966360072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9710","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:15:00","MST","2022-07-20 17:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360084","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-24-C/results/966360084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9711","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:21:00","MST","2022-07-20 17:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","20",20,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360096","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-26-C/results/966360096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9712","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:29:00","MST","2022-07-20 17:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","25",25,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360108","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-27-C/results/966360108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9713","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:35:00","MST","2022-07-20 17:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","32",32,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360120","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-28-C/results/966360120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9714","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:41:00","MST","2022-07-20 17:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","65",65,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360132","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-29-C/results/966360132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9715","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:59:00","MST","2022-07-20 17:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360144","UTAHDWQ_WQX-CUWJPRESJR220720-5914040-0720-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914040-0720-2-C/results/966360144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9716","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","11:17:00","MST","2022-07-20 18:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30.8",30.8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360158","UTAHDWQ_WQX-CUWJPRESJR220720-5914040-0720-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914040-0720-29-C/results/966360158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9717","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","11:32:00","MST","2022-07-20 18:32:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360169","UTAHDWQ_WQX-CUWJPRESJR220720-5914030-0720-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914030-0720-2-C/results/966360169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9718","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","11:49:00","MST","2022-07-20 18:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","36.5",36.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360183","UTAHDWQ_WQX-CUWJPRESJR220720-5914030-0720-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914030-0720-29-C/results/966360183/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9719","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","09:23:00","MST","2022-07-21 16:23:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360194","UTAHDWQ_WQX-CUWJPRESDC220721-5913490-0721-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913490-0721-2-C/results/966360194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9720","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","09:24:00","MST","2022-07-21 16:24:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360208","UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-2-C/results/966360208/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9721","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","09:35:00","MST","2022-07-21 16:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360222","UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-23-C/results/966360222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9722","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","09:40:00","MST","2022-07-21 16:40:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360234","UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-27-C/results/966360234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9723","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","09:45:00","MST","2022-07-21 16:45:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","25",25,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360246","UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-28-C/results/966360246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9724","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","09:48:00","MST","2022-07-21 16:48:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","33",33,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360258","UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-29-C/results/966360258/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9725","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","10:13:00","MST","2022-07-21 17:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360270","UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-2-C/results/966360270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9726","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","10:16:00","MST","2022-07-21 17:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360284","UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-23-C/results/966360284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9727","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","10:19:00","MST","2022-07-21 17:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360295","UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-27-C/results/966360295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9728","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","10:34:00","MST","2022-07-21 17:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","20.6",20.6,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360306","UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-29-C/results/966360306/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9729","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","10:49:00","MST","2022-07-21 17:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360317","UTAHDWQ_WQX-CUWJPRESDC220721-5913240-0721-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913240-0721-2-C/results/966360317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9730","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","10:52:00","MST","2022-07-21 17:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360331","UTAHDWQ_WQX-CUWJPRESDC220721-5913240-0721-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913240-0721-29-C/results/966360331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9731","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-26","10:17:00","MST","2022-07-26 17:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360342","UTAHDWQ_WQX-CUWDF220726-4995600-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220726-4995600-0726-4-C/results/966360342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9732","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-26","10:30:00","MST","2022-07-26 17:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360373","UTAHDWQ_WQX-CUWDF220726-4995640-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FK CK AB SPANISH FK R AT US6 89 XING","River/Stream",NA,"40.0269000000",40.0269,"-111.5040800000",-111.50408,"OK","16020202","UTAHDWQ_WQX-4995640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0269000000","-111.5040800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220726-4995640-0726-4-C/results/966360373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9733","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-26","10:38:00","MST","2022-07-26 17:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360404","UTAHDWQ_WQX-CUWDF220726-4995790-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FK R AB CNFL / DIAMOND FK CK","River/Stream",NA,"40.0246700000",40.02467,"-111.5029700000",-111.50297,"OK","16020202","UTAHDWQ_WQX-4995790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0246700000","-111.5029700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-09","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220726-4995790-0726-4-C/results/966360404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9734","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","09:38:00","MST","2022-07-28 16:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360435","UTAHDWQ_WQX-CUWJP220728-4998400-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4998400-0728-4-C/results/966360435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9735","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","10:01:00","MST","2022-07-28 17:01:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360466","UTAHDWQ_WQX-CUWJP220728-4998130-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4998130-0728-4-C/results/966360466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9736","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","10:20:00","MST","2022-07-28 17:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360478","UTAHDWQ_WQX-CUWJP220728-4997330-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4997330-0728-4-C/results/966360478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9737","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","10:41:00","MST","2022-07-28 17:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360490","UTAHDWQ_WQX-CUWJP220728-4997675-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4997675-0728-4-C/results/966360490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9738","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","10:49:00","MST","2022-07-28 17:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360521","UTAHDWQ_WQX-CUWJP220728-4997670-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4997670-0728-4-C/results/966360521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9739","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","11:05:00","MST","2022-07-28 18:05:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360552","UTAHDWQ_WQX-CUWJP220728-4997300-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4997300-0728-4-C/results/966360552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9740","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","11:36:00","MST","2022-07-28 18:36:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360564","UTAHDWQ_WQX-CUWJP220728-4997250-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4997250-0728-4-C/results/966360564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9741","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","11:43:00","MST","2022-07-28 18:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360576","UTAHDWQ_WQX-CUWJP220728-5910250-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:57:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5910250-0728-4-C/results/966360576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9742","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","12:15:00","MST","2022-07-28 19:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360588","UTAHDWQ_WQX-CUWJP220728-5910160-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5910160-0728-4-C/results/966360588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9743","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","12:28:00","MST","2022-07-28 19:28:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360603","UTAHDWQ_WQX-CUWJP220728-5913630-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"40.4841200000",40.48412,"-111.4651800000",-111.46518,"OK","16020203","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4841200000","-111.4651800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5913630-0728-4-C/results/966360603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6468","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","13:12:00","MST","2022-07-28 20:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360615","UTAHDWQ_WQX-CUWJP220728-4996870-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996870-0728-4-C/results/966360615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6469","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","13:14:00","MST","2022-07-28 20:14:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360627","UTAHDWQ_WQX-CUWJP220728-5913210-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5913210-0728-4-C/results/966360627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6470","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","13:15:00","MST","2022-07-28 20:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360639","UTAHDWQ_WQX-CUWJP220728-4996890-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996890-0728-4-C/results/966360639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6471","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","13:28:00","MST","2022-07-28 20:28:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360651","UTAHDWQ_WQX-CUWJP220728-4996850-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996850-0728-4-C/results/966360651/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9748","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","13:38:00","MST","2022-07-28 20:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360663","UTAHDWQ_WQX-CUWJP220728-4996830-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996830-0728-4-C/results/966360663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9749","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","13:47:00","MST","2022-07-28 20:47:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360675","UTAHDWQ_WQX-CUWJP220728-4996810-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996810-0728-4-C/results/966360675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9750","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","13:59:00","MST","2022-07-28 20:59:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360687","UTAHDWQ_WQX-CUWJP220728-4996780-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996780-0728-4-C/results/966360687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9751","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","10:18:00","MST","2022-08-03 17:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360699","UTAHDWQ_WQX-CUWSR220803-4936050-0803-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-2-C/results/966360699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6476","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","10:19:00","MST","2022-08-03 17:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","3",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360732","UTAHDWQ_WQX-CUWSR220803-4936050-0803-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-23-C/results/966360732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9753","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","10:21:00","MST","2022-08-03 17:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360763","UTAHDWQ_WQX-CUWSR220803-4936050-0803-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-24-C/results/966360763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6477","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","10:29:00","MST","2022-08-03 17:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","16",16,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360794","UTAHDWQ_WQX-CUWSR220803-4936050-0803-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-26-C/results/966360794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9755","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","10:33:00","MST","2022-08-03 17:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360825","UTAHDWQ_WQX-CUWSR220803-4936050-0803-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-27-C/results/966360825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9756","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","10:38:00","MST","2022-08-03 17:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360856","UTAHDWQ_WQX-CUWSR220803-4936050-0803-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-29-C/results/966360856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6478","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","13:00:00","MST","2022-08-03 20:00:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360887","UTAHDWQ_WQX-CUWRF220803-5937650-0803-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220803-5937650-0803-2-C/results/966360887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6479","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","13:03:00","MST","2022-08-03 20:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360920","UTAHDWQ_WQX-CUWRF220803-5937650-0803-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220803-5937650-0803-23-C/results/966360920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9759","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","13:09:00","MST","2022-08-03 20:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360951","UTAHDWQ_WQX-CUWRF220803-5937650-0803-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220803-5937650-0803-27-C/results/966360951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6480","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","13:20:00","MST","2022-08-03 20:20:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","19.5",19.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966360982","UTAHDWQ_WQX-CUWRF220803-5937650-0803-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","047","RED FLEET RES AB DAM 01","Lake",NA,"40.5752400000",40.57524,"-109.4226400000",-109.42264,"OK","14060002","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5752400000","-109.4226400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220803-5937650-0803-29-C/results/966360982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6481","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-12","10:18:00","MST","2022-08-12 17:18:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361013","UTAHDWQ_WQX-CUWSTR220812-4936420-0812-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220812-4936420-0812-2-C/results/966361013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6482","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-12","10:22:00","MST","2022-08-12 17:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361027","UTAHDWQ_WQX-CUWSTR220812-4936420-0812-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220812-4936420-0812-23-C/results/966361027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6483","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-12","10:30:00","MST","2022-08-12 17:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361038","UTAHDWQ_WQX-CUWSTR220812-4936420-0812-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220812-4936420-0812-27-C/results/966361038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6484","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-12","10:41:00","MST","2022-08-12 17:41:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","17.5",17.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361049","UTAHDWQ_WQX-CUWSTR220812-4936420-0812-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"40.1666200000",40.16662,"-111.1673900000",-111.16739,"OK","14060004","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1666200000","-111.1673900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220812-4936420-0812-29-C/results/966361049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6485","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","11:16:00","MST","2022-08-16 18:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361060","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-2-C/results/966361060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6486","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","11:17:00","MST","2022-08-16 18:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361074","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-22-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-22-C/results/966361074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6487","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","11:19:00","MST","2022-08-16 18:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361086","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-23-C/results/966361086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6488","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","11:27:00","MST","2022-08-16 18:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","12",12,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361098","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-24-C/results/966361098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6489","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","11:33:00","MST","2022-08-16 18:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","18",18,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361110","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-26-C/results/966361110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6490","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","11:37:00","MST","2022-08-16 18:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","23",23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361122","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-27-C/results/966361122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6491","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","11:44:00","MST","2022-08-16 18:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361134","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-28-C/results/966361134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6492","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","11:52:00","MST","2022-08-16 18:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","67",67,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361146","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES AB DAM 01","Lake",NA,"40.6007800000",40.60078,"-111.4157500000",-111.41575,"OK","16020203","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6007800000","-111.4157500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-29-C/results/966361146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6493","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","12:04:00","MST","2022-08-16 19:04:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361177","UTAHDWQ_WQX-CUWJPRESJR220816-5914040-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914040-0816-2-C/results/966361177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6494","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","12:15:00","MST","2022-08-16 19:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32",32,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361191","UTAHDWQ_WQX-CUWJPRESJR220816-5914040-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES PROVO ARM 04","Lake",NA,"40.6030100000",40.60301,"-111.3851800000",-111.38518,"OK","16020203","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6030100000","-111.3851800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914040-0816-29-C/results/966361191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6495","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","12:31:00","MST","2022-08-16 19:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361202","UTAHDWQ_WQX-CUWJPRESJR220816-5914030-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914030-0816-2-C/results/966361202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6496","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","13:45:00","MST","2022-08-16 20:45:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34",34,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361216","UTAHDWQ_WQX-CUWJPRESJR220816-5914030-0816-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","JORDANELLE RES NORTH ARM 03","Lake",NA,"40.6196800000",40.61968,"-111.4107400000",-111.41074,"OK","16020203","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6196800000","-111.4107400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914030-0816-29-C/results/966361216/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6497","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:16:00","MST","2022-08-17 17:16:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361227","UTAHDWQ_WQX-CUWJPRESDC220817-5913490-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913490-0817-2-C/results/966361227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6498","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:17:00","MST","2022-08-17 17:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361241","UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-2-C/results/966361241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6499","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:27:00","MST","2022-08-17 17:27:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361255","UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-23-C/results/966361255/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6500","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:29:00","MST","2022-08-17 17:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361267","UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-27-C/results/966361267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6501","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:35:00","MST","2022-08-17 17:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Near Bottom","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361279","UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-28-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-28-C/results/966361279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6502","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:42:00","MST","2022-08-17 17:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361291","UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES AB DAM 01","Lake",NA,"40.4091200000",40.40912,"-111.5235200000",-111.52352,"OK","16020203","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4091200000","-111.5235200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-29-C/results/966361291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6503","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","11:06:00","MST","2022-08-17 18:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361322","UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-2-C/results/966361322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6504","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","11:12:00","MST","2022-08-17 18:12:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361336","UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-25-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-25-C/results/966361336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6505","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","11:22:00","MST","2022-08-17 18:22:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","17",17,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361347","UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES MIDLAKE 02","Lake",NA,"40.4252400000",40.42524,"-111.5038000000",-111.5038,"OK","16020203","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4252400000","-111.5038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-29-C/results/966361347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6506","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","11:37:00","MST","2022-08-17 18:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361358","UTAHDWQ_WQX-CUWJPRESDC220817-5913240-0817-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913240-0817-2-C/results/966361358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6507","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","11:43:00","MST","2022-08-17 18:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361372","UTAHDWQ_WQX-CUWJPRESDC220817-5913240-0817-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","DEER CREEK RES UPPER END 03","Lake",NA,"40.4632900000",40.46329,"-111.4832400000",-111.48324,"OK","16020203","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4632900000","-111.4832400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913240-0817-29-C/results/966361372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6508","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","10:09:00","MST","2022-08-30 17:09:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361383","UTAHDWQ_WQX-CUWJP220830-4998400-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4998400-0830-4-C/results/966361383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6509","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","10:31:00","MST","2022-08-30 17:31:00",NA,"2.2",2200,"Numeric","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361397","UTAHDWQ_WQX-CUWJP220830-4998130-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4998130-0830-4-C/results/966361397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6510","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","10:51:00","MST","2022-08-30 17:51:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361428","UTAHDWQ_WQX-CUWJP220830-4997330-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4997330-0830-4-C/results/966361428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6511","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","11:13:00","MST","2022-08-30 18:13:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361459","UTAHDWQ_WQX-CUWJP220830-4997675-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4997675-0830-4-C/results/966361459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6512","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","11:19:00","MST","2022-08-30 18:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361490","UTAHDWQ_WQX-CUWJP220830-4997670-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4997670-0830-4-C/results/966361490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6513","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","11:33:00","MST","2022-08-30 18:33:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361521","UTAHDWQ_WQX-CUWJP220830-4997300-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4997300-0830-4-C/results/966361521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6514","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","12:03:00","MST","2022-08-30 19:03:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361533","UTAHDWQ_WQX-CUWJP220830-4997250-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4997250-0830-4-C/results/966361533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6515","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","12:10:00","MST","2022-08-30 19:10:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361545","UTAHDWQ_WQX-CUWJP220830-5910250-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-5910250-0830-4-C/results/966361545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6516","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","12:52:00","MST","2022-08-30 19:52:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361557","UTAHDWQ_WQX-CUWJP220830-5910160-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-5910160-0830-4-C/results/966361557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6517","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","13:29:00","MST","2022-08-30 20:29:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361572","UTAHDWQ_WQX-CUWJP220830-5913460-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"40.4096600000",40.40966,"-111.4785200000",-111.47852,"OK","16020203","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4096600000","-111.4785200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-5913460-0830-4-C/results/966361572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6518","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","13:50:00","MST","2022-08-30 20:50:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361584","UTAHDWQ_WQX-CUWJP220830-4996870-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996870-0830-4-C/results/966361584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6519","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","13:53:00","MST","2022-08-30 20:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361596","UTAHDWQ_WQX-CUWJP220830-5913210-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-5913210-0830-4-C/results/966361596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6520","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","13:54:00","MST","2022-08-30 20:54:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361627","UTAHDWQ_WQX-CUWJP220830-4996890-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996890-0830-4-C/results/966361627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6521","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","14:15:00","MST","2022-08-30 21:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361658","UTAHDWQ_WQX-CUWJP220830-4996850-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996850-0830-4-C/results/966361658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6522","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","14:24:00","MST","2022-08-30 21:24:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361670","UTAHDWQ_WQX-CUWJP220830-4996830-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996830-0830-4-C/results/966361670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6523","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","14:32:00","MST","2022-08-30 21:32:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361682","UTAHDWQ_WQX-CUWJP220830-4996810-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996810-0830-4-C/results/966361682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6524","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","14:44:00","MST","2022-08-30 21:44:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361694","UTAHDWQ_WQX-CUWJP220830-4996780-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996780-0830-4-C/results/966361694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6525","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-01","10:17:00","MST","2022-09-01 17:17:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361706","UTAHDWQ_WQX-CUWDF220901-4995600-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220901-4995600-0901-4-C/results/966361706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6526","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-01","10:31:00","MST","2022-09-01 17:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361736","UTAHDWQ_WQX-CUWDF220901-4995640-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FK CK AB SPANISH FK R AT US6 89 XING","River/Stream",NA,"40.0269000000",40.0269,"-111.5040800000",-111.50408,"OK","16020202","UTAHDWQ_WQX-4995640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0269000000","-111.5040800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220901-4995640-0901-4-C/results/966361736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9807","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-01","10:37:00","MST","2022-09-01 17:37:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361766","UTAHDWQ_WQX-CUWDF220901-4995790-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FK R AB CNFL / DIAMOND FK CK","River/Stream",NA,"40.0246700000",40.02467,"-111.5029700000",-111.50297,"OK","16020202","UTAHDWQ_WQX-4995790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0246700000","-111.5029700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220901-4995790-0901-4-C/results/966361766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6528","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","09:53:00","MST","2022-09-07 16:53:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361796","UTAHDWQ_WQX-CUWSR220907-4936050-0907-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-2-C/results/966361796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6529","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","09:55:00","MST","2022-09-07 16:55:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361816","UTAHDWQ_WQX-CUWSR220907-4936050-0907-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-23-C/results/966361816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9810","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","09:56:00","MST","2022-09-07 16:56:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361834","UTAHDWQ_WQX-CUWSR220907-4936050-0907-24-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-24-C/results/966361834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9811","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","09:58:00","MST","2022-09-07 16:58:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Midwater","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361852","UTAHDWQ_WQX-CUWSR220907-4936050-0907-26-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-26-C/results/966361852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6532","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","10:06:00","MST","2022-09-07 17:06:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","20",20,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361870","UTAHDWQ_WQX-CUWSR220907-4936050-0907-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-27-C/results/966361870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6533","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","10:11:00","MST","2022-09-07 17:11:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","27",27,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361888","UTAHDWQ_WQX-CUWSR220907-4936050-0907-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","STARVATION RES AB DAM 01","Lake",NA,"40.1921800000",40.19218,"-110.4430700000",-110.44307,"OK","14060004","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.1921800000","-110.4430700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-29-C/results/966361888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9814","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","10:21:00","MST","2022-09-29 17:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361906","UTAHDWQ_WQX-CUWJP220929-4998400-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"40.5577300000",40.55773,"-111.1687800000",-111.16878,"OK","16020203","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5577300000","-111.1687800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4998400-0929-4-C/results/966361906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9815","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","10:43:00","MST","2022-09-29 17:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361937","UTAHDWQ_WQX-CUWJP220929-4998130-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"40.6019200000",40.60192,"-111.3410100000",-111.34101,"OK","16020203","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6019200000","-111.3410100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4998130-0929-4-C/results/966361937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9816","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","10:43:00","MST","2022-09-29 17:43:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361949","UTAHDWQ_WQX-CUWJP220929-4997670-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"40.6166200000",40.61662,"-111.4282500000",-111.42825,"OK","16020203","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6166200000","-111.4282500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4997670-0929-4-C/results/966361949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9817","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","11:02:00","MST","2022-09-29 18:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361961","UTAHDWQ_WQX-CUWJP220929-4997330-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"40.5949500000",40.59495,"-111.4271400000",-111.42714,"OK","16020203","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5949500000","-111.4271400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4997330-0929-4-C/results/966361961/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9818","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","11:02:00","MST","2022-09-29 18:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361973","UTAHDWQ_WQX-CUWJP220929-4996780-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"40.3263400000",40.32634,"-111.6421500000",-111.64215,"OK","16020203","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3263400000","-111.6421500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996780-0929-4-C/results/966361973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9819","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","11:02:00","MST","2022-09-29 18:02:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361985","UTAHDWQ_WQX-CUWJP220929-4996810-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"40.3477300000",40.34773,"-111.5902000000",-111.5902,"OK","16020203","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3477300000","-111.5902000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996810-0929-4-C/results/966361985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9820","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","11:21:00","MST","2022-09-29 18:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966361997","UTAHDWQ_WQX-CUWJP220929-4997675-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"40.6170800000",40.61708,"-111.4321300000",-111.43213,"OK","16020203","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.6170800000","-111.4321300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4997675-0929-4-C/results/966361997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9821","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","11:42:00","MST","2022-09-29 18:42:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362028","UTAHDWQ_WQX-CUWJP220929-4997300-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"40.5541200000",40.55412,"-111.4315800000",-111.43158,"OK","16020203","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5541200000","-111.4315800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4997300-0929-4-C/results/966362028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9822","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","12:15:00","MST","2022-09-29 19:15:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362040","UTAHDWQ_WQX-CUWJP220929-4997250-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"40.5002400000",40.50024,"-111.4446700000",-111.44467,"OK","16020203","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5002400000","-111.4446700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4997250-0929-4-C/results/966362040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9823","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","12:21:00","MST","2022-09-29 19:21:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362052","UTAHDWQ_WQX-CUWJP220929-5910250-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"40.5071700000",40.50717,"-111.4496300000",-111.44963,"OK","16020203","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.5071700000","-111.4496300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-5910250-0929-4-C/results/966362052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9824","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","12:49:00","MST","2022-09-29 19:49:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362064","UTAHDWQ_WQX-CUWJP220929-5910160-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"40.4821000000",40.4821,"-111.4706000000",-111.4706,"OK","16020203","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4821000000","-111.4706000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-5910160-0929-4-C/results/966362064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9825","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","13:30:00","MST","2022-09-29 20:30:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362077","UTAHDWQ_WQX-CUWJP220929-4996870-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"40.4032900000",40.40329,"-111.5304700000",-111.53047,"OK","16020203","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4032900000","-111.5304700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996870-0929-4-C/results/966362077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9826","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","13:34:00","MST","2022-09-29 20:34:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362089","UTAHDWQ_WQX-CUWJP220929-5913210-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-5913210-0929-4-C/results/966362089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9827","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","13:35:00","MST","2022-09-29 20:35:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362101","UTAHDWQ_WQX-CUWJP220929-4996890-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","051","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","40.4030300000",40.40303,"-111.5296600000",-111.52966,"OK","16020203","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.4030300000","-111.5296600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996890-0929-4-C/results/966362101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9828","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","13:46:00","MST","2022-09-29 20:46:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362113","UTAHDWQ_WQX-CUWJP220929-4996850-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"40.3644000000",40.3644,"-111.5568600000",-111.55686,"OK","16020203","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3644000000","-111.5568600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996850-0929-4-C/results/966362113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9829","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","13:57:00","MST","2022-09-29 20:57:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362125","UTAHDWQ_WQX-CUWJP220929-4996830-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","Lower S Fk Provo R at Gaging Station","River/Stream",NA,"40.3527300000",40.35273,"-111.5701900000",-111.57019,"OK","16020203","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.3527300000","-111.5701900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996830-0929-4-C/results/966362125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9830","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-30","10:19:00","MST","2022-09-30 17:19:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362138","UTAHDWQ_WQX-CUWDF220930-4995600-0930-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"40.0844000000",40.0844,"-111.5968600000",-111.59686,"OK","16020202","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0844000000","-111.5968600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220930-4995600-0930-4-C/results/966362138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9831","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-30","10:31:00","MST","2022-09-30 17:31:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362169","UTAHDWQ_WQX-CUWDF220930-4995640-0930-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","DIAMOND FK CK AB SPANISH FK R AT US6 89 XING","River/Stream",NA,"40.0269000000",40.0269,"-111.5040800000",-111.50408,"OK","16020202","UTAHDWQ_WQX-4995640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0269000000","-111.5040800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220930-4995640-0930-4-C/results/966362169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9832","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-30","10:38:00","MST","2022-09-30 17:38:00",NA,NA,1000,"Result Value/Unit Copied from Detection Limit","Calculated","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","1",1000,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"4500-NORG D","APHA",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Chem-Tech Ford",NA,"STORET-966362200","UTAHDWQ_WQX-CUWDF220930-4995790-0930-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","SPANISH FK R AB CNFL / DIAMOND FK CK","River/Stream",NA,"40.0246700000",40.02467,"-111.5029700000",-111.50297,"OK","16020202","UTAHDWQ_WQX-4995790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-01-31T19:58:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Central Utah Water Conservancy District",NA,"40.0246700000","-111.5029700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220930-4995790-0930-4-C/results/966362200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9833","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","14:05:00","MST","2022-05-23 21:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062219","UTAHDWQ_WQX-IDEQBL220523-4900754-0523-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4900754-0523-2-C/results/970062219/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9834","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","14:05:00","MST","2022-05-23 21:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062225","UTAHDWQ_WQX-IDEQBL220523-4900754-0523-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4900754-0523-2-C/results/970062225/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9835","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","19:32:00","MST","2022-06-16 02:32:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062228","UTAHDWQ_WQX-IDEQBL220615-4900754-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4900754-0615-2-C/results/970062228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9836","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","19:32:00","MST","2022-06-16 02:32:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062233","UTAHDWQ_WQX-IDEQBL220615-4900754-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4900754-0615-2-C/results/970062233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9837","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","16:24:00","MST","2022-07-18 23:24:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062245","UTAHDWQ_WQX-IDEQBL220718-4900754-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4900754-0718-2-C/results/970062245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9838","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","16:24:00","MST","2022-07-18 23:24:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062246","UTAHDWQ_WQX-IDEQBL220718-4900754-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4900754-0718-2-C/results/970062246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9839","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","13:18:00","MST","2022-08-25 20:18:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062253","UTAHDWQ_WQX-IDEQBL220824-4900754-0825-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4900754-0825-2-C/results/970062253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9840","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","13:18:00","MST","2022-08-25 20:18:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062254","UTAHDWQ_WQX-IDEQBL220824-4900754-0825-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4900754-0825-2-C/results/970062254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9841","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","13:45:00","MST","2022-09-20 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062267","UTAHDWQ_WQX-IDEQBL220920-4900754-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4900754-0920-2-C/results/970062267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9842","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","13:45:00","MST","2022-09-20 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062270","UTAHDWQ_WQX-IDEQBL220920-4900754-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4900754-0920-2-C/results/970062270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9843","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","15:51:00","MST","2022-05-23 22:51:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062282","UTAHDWQ_WQX-IDEQBL220523-4900755-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4900755-0523-4-C/results/970062282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9844","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","15:51:00","MST","2022-05-23 22:51:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062284","UTAHDWQ_WQX-IDEQBL220523-4900755-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4900755-0523-4-C/results/970062284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9845","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","13:35:00","MST","2022-06-16 20:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062294","UTAHDWQ_WQX-IDEQBL220615-4900755-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4900755-0616-4-C/results/970062294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9846","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","13:35:00","MST","2022-06-16 20:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062302","UTAHDWQ_WQX-IDEQBL220615-4900755-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4900755-0616-4-C/results/970062302/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9847","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","15:31:00","MST","2022-07-18 22:31:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062313","UTAHDWQ_WQX-IDEQBL220718-4900755-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4900755-0718-4-C/results/970062313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9848","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","15:31:00","MST","2022-07-18 22:31:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062316","UTAHDWQ_WQX-IDEQBL220718-4900755-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4900755-0718-4-C/results/970062316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9849","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","14:51:00","MST","2022-08-25 21:51:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062320","UTAHDWQ_WQX-IDEQBL220824-4900755-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4900755-0825-4-C/results/970062320/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9850","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","14:51:00","MST","2022-08-25 21:51:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062321","UTAHDWQ_WQX-IDEQBL220824-4900755-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4900755-0825-4-C/results/970062321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9851","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","14:07:00","MST","2022-09-20 21:07:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062329","UTAHDWQ_WQX-IDEQBL220920-4900755-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4900755-0920-4-C/results/970062329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9852","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","14:07:00","MST","2022-09-20 21:07:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970062333","UTAHDWQ_WQX-IDEQBL220920-4900755-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:08:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4900755-0920-4-C/results/970062333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9853","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-26","13:35:00","MST","2022-07-26 20:35:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065303","UTAHDWQ_WQX-LAKES220726-4903260-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4903260-0726-4-C/results/970065303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9854","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-26","13:35:00","MST","2022-07-26 20:35:00",NA,"0.403",403,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065317","UTAHDWQ_WQX-LAKES220726-4903260-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"41.7977000000",41.7977,"-111.9302300000",-111.93023,"OK","16010202","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7977000000","-111.9302300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4903260-0726-4-C/results/970065317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9855","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-26","14:35:00","MST","2022-07-26 21:35:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065330","UTAHDWQ_WQX-LAKES220726-4905000-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4905000-0726-4-C/results/970065330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9856","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-26","14:35:00","MST","2022-07-26 21:35:00",NA,"0.806",806,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065358","UTAHDWQ_WQX-LAKES220726-4905000-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"41.7188900000",41.71889,"-111.9450000000",-111.945,"OK","16010203","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7188900000","-111.9450000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4905000-0726-4-C/results/970065358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9857","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","13:00:00","MST","2022-04-13 20:00:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065361","UTAHDWQ_WQX-LOGANRV220413-4905040-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905040-0413-4-C/results/970065361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9858","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","10:00:00","MST","2022-05-24 17:00:00",NA,"0.305",305,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065370","UTAHDWQ_WQX-LOGANRV220524-4905040-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905040-0524-4-C/results/970065370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9859","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-26","14:15:00","MST","2022-07-26 21:15:00",NA,"2.55",2550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065383","UTAHDWQ_WQX-LAKES220726-4905040-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4905040-0726-4-C/results/970065383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9860","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-26","14:15:00","MST","2022-07-26 21:15:00",NA,"2.39",2390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065384","UTAHDWQ_WQX-LAKES220726-4905040-0726-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4905040-0726-4-C/results/970065384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9861","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","11:45:00","MST","2022-08-02 18:45:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065405","UTAHDWQ_WQX-LOGANRV220802-4905040-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905040-0802-4-C/results/970065405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9862","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","12:15:00","MST","2022-09-19 19:15:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065410","UTAHDWQ_WQX-LOGANRV220919-4905040-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"41.7204900000",41.72049,"-111.8866100000",-111.88661,"OK","16010203","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7204900000","-111.8866100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905040-0919-4-C/results/970065410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9863","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","13:50:00","MST","2022-04-13 20:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065416","UTAHDWQ_WQX-LOGANRV220413-4905135-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905135-0413-4-C/results/970065416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9864","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","10:20:00","MST","2022-05-24 17:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065425","UTAHDWQ_WQX-LOGANRV220524-4905135-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905135-0524-4-C/results/970065425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9865","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","12:30:00","MST","2022-08-02 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065428","UTAHDWQ_WQX-LOGANRV220802-4905135-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905135-0802-4-C/results/970065428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9866","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","12:45:00","MST","2022-09-19 19:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065436","UTAHDWQ_WQX-LOGANRV220919-4905135-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905135-0919-4-C/results/970065436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9867","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","13:15:00","MST","2022-04-13 20:15:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065439","UTAHDWQ_WQX-LOGANRV220413-4905137-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"41.7430900000",41.74309,"-111.9198600000",-111.91986,"OK","16010203","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7430900000","-111.9198600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905137-0413-4-C/results/970065439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9868","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","10:15:00","MST","2022-05-24 17:15:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065445","UTAHDWQ_WQX-LOGANRV220524-4905137-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"41.7430900000",41.74309,"-111.9198600000",-111.91986,"OK","16010203","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7430900000","-111.9198600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905137-0524-4-C/results/970065445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9869","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","12:15:00","MST","2022-08-02 19:15:00",NA,"0.888",888,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065452","UTAHDWQ_WQX-LOGANRV220802-4905137-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"41.7430900000",41.74309,"-111.9198600000",-111.91986,"OK","16010203","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7430900000","-111.9198600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905137-0802-4-C/results/970065452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9870","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","12:30:00","MST","2022-09-19 19:30:00",NA,"0.402",402,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065456","UTAHDWQ_WQX-LOGANRV220919-4905137-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"41.7430900000",41.74309,"-111.9198600000",-111.91986,"OK","16010203","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7430900000","-111.9198600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905137-0919-4-C/results/970065456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9871","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","13:35:00","MST","2022-04-13 20:35:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065463","UTAHDWQ_WQX-LOGANRV220413-4905140-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905140-0413-4-C/results/970065463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9872","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","09:45:00","MST","2022-05-24 16:45:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065468","UTAHDWQ_WQX-LOGANRV220524-4905140-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905140-0524-4-C/results/970065468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9873","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","11:00:00","MST","2022-08-02 18:00:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065477","UTAHDWQ_WQX-LOGANRV220802-4905140-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905140-0802-4-C/results/970065477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9874","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:45:00","MST","2022-09-19 18:45:00",NA,"0.241",241,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065481","UTAHDWQ_WQX-LOGANRV220919-4905140-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West","River/Stream",NA,"41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905140-0919-4-C/results/970065481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9875","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","13:45:00","MST","2022-04-13 20:45:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065489","UTAHDWQ_WQX-LOGANRV220413-4905142-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905142-0413-4-C/results/970065489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9876","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","09:50:00","MST","2022-05-24 16:50:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065493","UTAHDWQ_WQX-LOGANRV220524-4905142-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905142-0524-4-C/results/970065493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9877","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","11:05:00","MST","2022-08-02 18:05:00",NA,"0.649",649,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065498","UTAHDWQ_WQX-LOGANRV220802-4905142-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905142-0802-4-C/results/970065498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9878","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:50:00","MST","2022-09-19 18:50:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065506","UTAHDWQ_WQX-LOGANRV220919-4905142-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","41.7064000000",41.7064,"-111.8622200000",-111.86222,"OK","16010203","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7064000000","-111.8622200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905142-0919-4-C/results/970065506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9879","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","12:40:00","MST","2022-04-13 19:40:00",NA,"0.969",969,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065511","UTAHDWQ_WQX-LOGANRV220413-4905188-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:10:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905188-0413-4-C/results/970065511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9880","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","09:00:00","MST","2022-05-24 16:00:00",NA,"0.512",512,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065521","UTAHDWQ_WQX-LOGANRV220524-4905188-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905188-0524-4-C/results/970065521/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9881","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","10:15:00","MST","2022-08-02 17:15:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065525","UTAHDWQ_WQX-LOGANRV220802-4905188-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905188-0802-4-C/results/970065525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9882","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","10:15:00","MST","2022-09-19 17:15:00",NA,"0.514",514,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065532","UTAHDWQ_WQX-LOGANRV220919-4905188-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"41.7061100000",41.70611,"-111.8485000000",-111.8485,"OK","16010203","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7061100000","-111.8485000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905188-0919-4-C/results/970065532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9883","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","12:20:00","MST","2022-04-13 19:20:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065538","UTAHDWQ_WQX-LOGANRV220413-4905192-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905192-0413-4-C/results/970065538/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9884","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","09:15:00","MST","2022-05-24 16:15:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065543","UTAHDWQ_WQX-LOGANRV220524-4905192-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905192-0524-4-C/results/970065543/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9885","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","10:00:00","MST","2022-08-02 17:00:00",NA,"0.474",474,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065551","UTAHDWQ_WQX-LOGANRV220802-4905192-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905192-0802-4-C/results/970065551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9886","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","10:00:00","MST","2022-09-19 17:00:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065552","UTAHDWQ_WQX-LOGANRV220919-4905192-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River below bridge on Golf Course Road","River/Stream",NA,"41.7159100000",41.71591,"-111.8399300000",-111.83993,"OK","16010203","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7159100000","-111.8399300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905192-0919-4-C/results/970065552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9887","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","12:00:00","MST","2022-04-13 19:00:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065561","UTAHDWQ_WQX-LOGANRV220413-4905195-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905195-0413-4-C/results/970065561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9888","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","08:45:00","MST","2022-05-24 15:45:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065568","UTAHDWQ_WQX-LOGANRV220524-4905195-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905195-0524-4-C/results/970065568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9889","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","09:45:00","MST","2022-08-02 16:45:00",NA,"0.447",447,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065575","UTAHDWQ_WQX-LOGANRV220802-4905195-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905195-0802-4-C/results/970065575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9890","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","09:45:00","MST","2022-09-19 16:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065578","UTAHDWQ_WQX-LOGANRV220919-4905195-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"41.7213200000",41.72132,"-111.8346600000",-111.83466,"OK","16010203","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7213200000","-111.8346600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905195-0919-4-C/results/970065578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9891","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","11:30:00","MST","2022-04-13 18:30:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065587","UTAHDWQ_WQX-LOGANRV220413-4905198-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905198-0413-4-C/results/970065587/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9892","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","08:30:00","MST","2022-05-24 15:30:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065589","UTAHDWQ_WQX-LOGANRV220524-4905198-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905198-0524-4-C/results/970065589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9893","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","09:30:00","MST","2022-08-02 16:30:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065596","UTAHDWQ_WQX-LOGANRV220802-4905198-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905198-0802-4-C/results/970065596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9894","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","09:30:00","MST","2022-09-19 16:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065601","UTAHDWQ_WQX-LOGANRV220919-4905198-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","Logan River at Water Lab lower bridge","River/Stream",NA,"41.7391200000",41.73912,"-111.7957700000",-111.79577,"OK","16010203","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7391200000","-111.7957700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905198-0919-4-C/results/970065601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9895","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","12:45:00","MST","2022-04-13 19:45:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065608","UTAHDWQ_WQX-LOGANRV220413-4905400-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905400-0413-4-C/results/970065608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9896","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","09:30:00","MST","2022-05-24 16:30:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065615","UTAHDWQ_WQX-LOGANRV220524-4905400-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905400-0524-4-C/results/970065615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9897","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","10:30:00","MST","2022-08-02 17:30:00",NA,"0.563",563,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065621","UTAHDWQ_WQX-LOGANRV220802-4905400-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905400-0802-4-C/results/970065621/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9898","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:15:00","MST","2022-09-19 18:15:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065628","UTAHDWQ_WQX-LOGANRV220919-4905400-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","005","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"41.7043800000",41.70438,"-111.8518900000",-111.85189,"OK","16010203","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7043800000","-111.8518900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905400-0919-4-C/results/970065628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9899","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","12:05:00","MST","2022-05-23 19:05:00",NA,"0.305",305,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065929","UTAHDWQ_WQX-IDEQBL220523-4907005-0523-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907005-0523-2-C/results/970065929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9900","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","12:05:00","MST","2022-05-23 19:05:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065932","UTAHDWQ_WQX-IDEQBL220523-4907005-0523-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907005-0523-2-C/results/970065932/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9901","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","12:20:00","MST","2022-05-23 19:20:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.235",32.235,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065936","UTAHDWQ_WQX-IDEQBL220523-4907005-0523-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907005-0523-29-C/results/970065936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9902","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","12:20:00","MST","2022-05-23 19:20:00",NA,"0.218",218,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.235",32.235,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065938","UTAHDWQ_WQX-IDEQBL220523-4907005-0523-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907005-0523-29-C/results/970065938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9903","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","10:09:00","MST","2022-06-16 17:09:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065942","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-2-C/results/970065942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9904","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","10:09:00","MST","2022-06-16 17:09:00",NA,"0.203",203,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065946","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-2-C/results/970065946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9905","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","10:25:00","MST","2022-06-16 17:25:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"Licor 1% photic zone sample collected at depths 1, 3, 8, 13, and 24m",NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065955","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-PZ-C/results/970065955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9906","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","10:25:00","MST","2022-06-16 17:25:00",NA,"0.186",186,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL","Licor 1% photic zone sample collected at depths 1, 3, 8, 13, and 24m",NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065960","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-PZ-C/results/970065960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9907","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","10:35:00","MST","2022-06-16 17:35:00",NA,"0.239",239,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","36.135",36.135,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065967","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-29-C/results/970065967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9908","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","10:35:00","MST","2022-06-16 17:35:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","36.135",36.135,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065971","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-29-C/results/970065971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9909","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:05:00","MST","2022-07-18 20:05:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065979","UTAHDWQ_WQX-IDEQBL220718-4907005-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907005-0718-2-C/results/970065979/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9910","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:05:00","MST","2022-07-18 20:05:00",NA,"0.151",151,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065986","UTAHDWQ_WQX-IDEQBL220718-4907005-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907005-0718-2-C/results/970065986/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9911","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:55:00","MST","2022-07-18 19:55:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","35.068",35.068,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065988","UTAHDWQ_WQX-IDEQBL220718-4907005-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907005-0718-29-C/results/970065988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9912","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:55:00","MST","2022-07-18 19:55:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","35.068",35.068,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065989","UTAHDWQ_WQX-IDEQBL220718-4907005-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907005-0718-29-C/results/970065989/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9913","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","10:20:00","MST","2022-08-25 17:20:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970065999","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-2-C/results/970065999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9914","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","10:20:00","MST","2022-08-25 17:20:00",NA,"0.166",166,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066004","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-2-C/results/970066004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9915","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","10:40:00","MST","2022-08-25 17:40:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL","Licor 1% photic zone sample collected at depths 1.5, 7, 13, 18, 23 and 28m at 12:00",NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066008","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-PZ-C/results/970066008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9916","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","10:40:00","MST","2022-08-25 17:40:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"Licor 1% photic zone sample collected at depths 1.5, 7, 13, 18, 23 and 28m at 12:00",NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066009","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-PZ-C/results/970066009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9917","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","10:50:00","MST","2022-08-25 17:50:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.085",34.085,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066025","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-29-C/results/970066025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9918","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","10:50:00","MST","2022-08-25 17:50:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.085",34.085,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066026","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-29-C/results/970066026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9919","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","12:02:00","MST","2022-09-20 19:02:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066028","UTAHDWQ_WQX-IDEQBL220920-4907005-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907005-0920-2-C/results/970066028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9920","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","12:02:00","MST","2022-09-20 19:02:00",NA,"0.181",181,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066037","UTAHDWQ_WQX-IDEQBL220920-4907005-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907005-0920-2-C/results/970066037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9921","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","12:18:00","MST","2022-09-20 19:18:00",NA,"0.178",178,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.049",34.049,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066042","UTAHDWQ_WQX-IDEQBL220920-4907005-0920-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907005-0920-29-C/results/970066042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9922","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","12:18:00","MST","2022-09-20 19:18:00",NA,"0.174",174,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.049",34.049,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066043","UTAHDWQ_WQX-IDEQBL220920-4907005-0920-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Lake",NA,"41.9699100000",41.96991,"-111.3440700000",-111.34407,"OK","16010201","UTAHDWQ_WQX-4907005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9699100000","-111.3440700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907005-0920-29-C/results/970066043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9923","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","10:49:00","MST","2022-07-18 17:49:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066052","UTAHDWQ_WQX-IDEQBL220718-4907058-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Falula Creek at Cisco Rd culvert crossing southeast side","River/Stream",NA,"41.8489000000",41.8489,"-111.3011200000",-111.30112,"OK","16010201","UTAHDWQ_WQX-4907058",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8489000000","-111.3011200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907058-0718-4-C/results/970066052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9924","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","10:49:00","MST","2022-07-18 17:49:00",NA,"0.391",391,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066059","UTAHDWQ_WQX-IDEQBL220718-4907058-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Falula Creek at Cisco Rd culvert crossing southeast side","River/Stream",NA,"41.8489000000",41.8489,"-111.3011200000",-111.30112,"OK","16010201","UTAHDWQ_WQX-4907058",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8489000000","-111.3011200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907058-0718-4-C/results/970066059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9925","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","09:44:00","MST","2022-08-25 16:44:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066062","UTAHDWQ_WQX-IDEQBL220824-4907058-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Falula Creek at Cisco Rd culvert crossing southeast side","River/Stream",NA,"41.8489000000",41.8489,"-111.3011200000",-111.30112,"OK","16010201","UTAHDWQ_WQX-4907058",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8489000000","-111.3011200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907058-0825-4-C/results/970066062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9926","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","09:44:00","MST","2022-08-25 16:44:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066070","UTAHDWQ_WQX-IDEQBL220824-4907058-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Falula Creek at Cisco Rd culvert crossing southeast side","River/Stream",NA,"41.8489000000",41.8489,"-111.3011200000",-111.30112,"OK","16010201","UTAHDWQ_WQX-4907058",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8489000000","-111.3011200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907058-0825-4-C/results/970066070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9927","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","11:10:00","MST","2022-05-23 18:10:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066072","UTAHDWQ_WQX-IDEQBL220523-4907100-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907100-0523-4-C/results/970066072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9928","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","11:10:00","MST","2022-05-23 18:10:00",NA,"0.706",706,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066082","UTAHDWQ_WQX-IDEQBL220523-4907100-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907100-0523-4-C/results/970066082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9929","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","09:36:00","MST","2022-06-16 16:36:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066086","UTAHDWQ_WQX-IDEQBL220615-4907100-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907100-0616-4-C/results/970066086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9930","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","09:36:00","MST","2022-06-16 16:36:00",NA,"0.672",672,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066093","UTAHDWQ_WQX-IDEQBL220615-4907100-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907100-0616-4-C/results/970066093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9931","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:55:00","MST","2022-07-18 18:55:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066097","UTAHDWQ_WQX-IDEQBL220718-4907100-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907100-0718-4-C/results/970066097/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9932","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:55:00","MST","2022-07-18 18:55:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066103","UTAHDWQ_WQX-IDEQBL220718-4907100-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907100-0718-4-C/results/970066103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9933","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","10:47:00","MST","2022-08-25 17:47:00",NA,"0.418",418,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066115","UTAHDWQ_WQX-IDEQBL220824-4907100-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907100-0825-4-C/results/970066115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9934","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","10:47:00","MST","2022-08-25 17:47:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066120","UTAHDWQ_WQX-IDEQBL220824-4907100-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907100-0825-4-C/results/970066120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9935","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:21:00","MST","2022-09-20 18:21:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066124","UTAHDWQ_WQX-IDEQBL220920-4907100-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907100-0920-4-C/results/970066124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9936","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:21:00","MST","2022-09-20 18:21:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066131","UTAHDWQ_WQX-IDEQBL220920-4907100-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BIG CK AB BEAR LAKE","River/Stream",NA,"41.8391000000",41.8391,"-111.3296400000",-111.32964,"OK","16010201","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.8391000000","-111.3296400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907100-0920-4-C/results/970066131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9937","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","12:50:00","MST","2022-05-23 19:50:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066142","UTAHDWQ_WQX-IDEQBL220523-4907180-0523-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907180-0523-2-C/results/970066142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9938","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","12:50:00","MST","2022-05-23 19:50:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066143","UTAHDWQ_WQX-IDEQBL220523-4907180-0523-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907180-0523-2-C/results/970066143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9939","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","13:15:00","MST","2022-05-23 20:15:00",NA,"0.205",205,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","46",46,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066153","UTAHDWQ_WQX-IDEQBL220523-4907180-0523-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907180-0523-29-C/results/970066153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9940","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","13:15:00","MST","2022-05-23 20:15:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","46",46,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066157","UTAHDWQ_WQX-IDEQBL220523-4907180-0523-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907180-0523-29-C/results/970066157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9941","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:14:00","MST","2022-06-16 18:14:00",NA,"0.204",204,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066173","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-2-C/results/970066173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9942","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:14:00","MST","2022-06-16 18:14:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066180","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-2-C/results/970066180/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9943","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:22:00","MST","2022-06-16 18:22:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","11.172",11.172,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066187","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-23-C/results/970066187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9944","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:22:00","MST","2022-06-16 18:22:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","11.172",11.172,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066188","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-23-C/results/970066188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9945","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:35:00","MST","2022-06-16 18:35:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13.122",13.122,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066197","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-27-C/results/970066197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9946","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:35:00","MST","2022-06-16 18:35:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13.122",13.122,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066198","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-27-C/results/970066198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9947","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:51:00","MST","2022-06-16 18:51:00",NA,"0.289",289,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","46.08",46.08,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066207","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-29-C/results/970066207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9948","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:51:00","MST","2022-06-16 18:51:00",NA,"0.307",307,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","46.08",46.08,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066212","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-29-C/results/970066212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9949","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:10:00","MST","2022-07-18 18:10:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066231","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-2-C/results/970066231/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9950","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:10:00","MST","2022-07-18 18:10:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066233","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-2-C/results/970066233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9951","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:25:00","MST","2022-07-18 18:25:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066238","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-23-C/results/970066238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9952","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:25:00","MST","2022-07-18 18:25:00",NA,"0.319",319,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066240","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-23-C/results/970066240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9953","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:40:00","MST","2022-07-18 18:40:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","12",12,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066243","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-27-C/results/970066243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9954","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:40:00","MST","2022-07-18 18:40:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","12",12,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066247","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-27-C/results/970066247/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9955","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:55:00","MST","2022-07-18 18:55:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","44",44,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066248","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-29-C/results/970066248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9956","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:55:00","MST","2022-07-18 18:55:00",NA,"0.418",418,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","44",44,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066254","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-29-C/results/970066254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9957","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","12:32:00","MST","2022-08-25 19:32:00",NA,"0.572",572,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066276","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-2-C/results/970066276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9958","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","12:32:00","MST","2022-08-25 19:32:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066281","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-2-C/results/970066281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9959","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","13:10:00","MST","2022-08-25 20:10:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","12.13",12.13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066286","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-23-C/results/970066286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9960","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","13:10:00","MST","2022-08-25 20:10:00",NA,"0.161",161,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","12.13",12.13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066288","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-23-C/results/970066288/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9961","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","12:56:00","MST","2022-08-25 19:56:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","14.153",14.153,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066293","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-27-C/results/970066293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9962","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","12:56:00","MST","2022-08-25 19:56:00",NA,"0.515",515,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","14.153",14.153,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066295","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-27-C/results/970066295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9963","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","12:40:00","MST","2022-08-25 19:40:00",NA,"0.156",156,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","46.147",46.147,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066301","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-29-C/results/970066301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9964","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","12:40:00","MST","2022-08-25 19:40:00",NA,"0.179",179,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","46.147",46.147,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066308","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-29-C/results/970066308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9965","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","10:14:00","MST","2022-09-20 17:14:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066324","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-2-C/results/970066324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9966","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","10:14:00","MST","2022-09-20 17:14:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066330","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-2-C/results/970066330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9967","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","10:38:00","MST","2022-09-20 17:38:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","11.141",11.141,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066336","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-23-C/results/970066336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9968","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","10:38:00","MST","2022-09-20 17:38:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","11.141",11.141,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066339","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-23-C/results/970066339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9969","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","10:45:00","MST","2022-09-20 17:45:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13.123",13.123,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066343","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-27-C/results/970066343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9970","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","10:45:00","MST","2022-09-20 17:45:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13.123",13.123,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066347","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-27-C/results/970066347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9971","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","10:20:00","MST","2022-09-20 17:20:00",NA,"0.172",172,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","45.08",45.08,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066355","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-29-C/results/970066355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9972","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","10:20:00","MST","2022-09-20 17:20:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","45.08",45.08,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066367","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"41.9838200000",41.98382,"-111.3046500000",-111.30465,"OK","16010201","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9838200000","-111.3046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-29-C/results/970066367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9973","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","12:14:00","MST","2022-05-23 19:14:00",NA,"0.295",295,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066380","UTAHDWQ_WQX-IDEQBL220523-4907200-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907200-0523-4-C/results/970066380/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9974","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","12:14:00","MST","2022-05-23 19:14:00",NA,"0.336",336,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066384","UTAHDWQ_WQX-IDEQBL220523-4907200-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907200-0523-4-C/results/970066384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9975","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","10:55:00","MST","2022-06-16 17:55:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066391","UTAHDWQ_WQX-IDEQBL220615-4907200-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907200-0616-4-C/results/970066391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9976","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","10:55:00","MST","2022-06-16 17:55:00",NA,"0.239",239,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066394","UTAHDWQ_WQX-IDEQBL220615-4907200-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907200-0616-4-C/results/970066394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9977","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:06:00","MST","2022-07-18 20:06:00",NA,"0.167",167,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066406","UTAHDWQ_WQX-IDEQBL220718-4907200-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907200-0718-4-C/results/970066406/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9978","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:06:00","MST","2022-07-18 20:06:00",NA,"0.17",170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066408","UTAHDWQ_WQX-IDEQBL220718-4907200-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907200-0718-4-C/results/970066408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9979","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","12:01:00","MST","2022-08-25 19:01:00",NA,"0.171",171,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066416","UTAHDWQ_WQX-IDEQBL220824-4907200-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907200-0825-4-C/results/970066416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9980","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","12:01:00","MST","2022-08-25 19:01:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066418","UTAHDWQ_WQX-IDEQBL220824-4907200-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907200-0825-4-C/results/970066418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9981","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","12:39:00","MST","2022-09-20 19:39:00",NA,"0.16",160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066428","UTAHDWQ_WQX-IDEQBL220920-4907200-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907200-0920-4-C/results/970066428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9982","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","12:39:00","MST","2022-09-20 19:39:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066436","UTAHDWQ_WQX-IDEQBL220920-4907200-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","SWAN CK AB BEAR LAKE","River/Stream",NA,"41.9854900000",41.98549,"-111.4118700000",-111.41187,"OK","16010201","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:11:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9854900000","-111.4118700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907200-0920-4-C/results/970066436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9983","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","17:00:00","MST","2022-04-12 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066692","UTAHDWQ_WQX-UTLK220404-4910009-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4910009-0411-4-C/results/970066692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9984","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","17:00:00","MST","2022-04-12 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066697","UTAHDWQ_WQX-UTLK220404-4910009-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4910009-0411-4-C/results/970066697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9985","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","16:00:00","MST","2022-04-18 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066709","UTAHDWQ_WQX-UTLK220404-4910009-0418-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4910009-0418-4-C/results/970066709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9986","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","16:00:00","MST","2022-04-18 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066731","UTAHDWQ_WQX-UTLK220404-4910009-0418-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4910009-0418-4-C/results/970066731/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9987","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","17:00:00","MST","2022-05-17 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066757","UTAHDWQ_WQX-UTLK220516-4910009-0516-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0516-4-C/results/970066757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9988","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","17:00:00","MST","2022-05-17 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066759","UTAHDWQ_WQX-UTLK220516-4910009-0516-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0516-4-C/results/970066759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9989","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","17:00:00","MST","2022-05-18 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066790","UTAHDWQ_WQX-UTLK220516-4910009-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0517-4-C/results/970066790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9990","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","17:00:00","MST","2022-05-18 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066796","UTAHDWQ_WQX-UTLK220516-4910009-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0517-4-C/results/970066796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9991","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","12:15:00","MST","2022-05-18 19:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066812","UTAHDWQ_WQX-UTLK220516-4910009-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0518-4-C/results/970066812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9992","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","12:15:00","MST","2022-05-18 19:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066826","UTAHDWQ_WQX-UTLK220516-4910009-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0518-4-C/results/970066826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9993","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-07","13:30:00","MST","2022-06-07 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066843","UTAHDWQ_WQX-UTLK220606-4910009-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0607-4-C/results/970066843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9994","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-07","13:30:00","MST","2022-06-07 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066849","UTAHDWQ_WQX-UTLK220606-4910009-0607-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0607-4-C/results/970066849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9995","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","14:30:00","MST","2022-06-08 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066873","UTAHDWQ_WQX-UTLK220606-4910009-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0608-4-C/results/970066873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9996","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","14:30:00","MST","2022-06-08 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066891","UTAHDWQ_WQX-UTLK220606-4910009-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0608-4-C/results/970066891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9997","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","15:30:00","MST","2022-06-09 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066901","UTAHDWQ_WQX-UTLK220606-4910009-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0609-4-C/results/970066901/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9998","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","15:30:00","MST","2022-06-09 22:30:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066905","UTAHDWQ_WQX-UTLK220606-4910009-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0609-4-C/results/970066905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9999","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","17:00:00","MST","2022-07-19 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066918","UTAHDWQ_WQX-UTLK220718-4910009-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0718-4-C/results/970066918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10000","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","17:00:00","MST","2022-07-19 00:00:00",NA,"0.156",156,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066920","UTAHDWQ_WQX-UTLK220718-4910009-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0718-4-C/results/970066920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10001","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","14:00:00","MST","2022-07-19 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066956","UTAHDWQ_WQX-UTLK220718-4910009-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0719-4-C/results/970066956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10002","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","14:00:00","MST","2022-07-19 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066959","UTAHDWQ_WQX-UTLK220718-4910009-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0719-4-C/results/970066959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10003","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","16:00:00","MST","2022-07-20 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066972","UTAHDWQ_WQX-UTLK220718-4910009-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0720-4-C/results/970066972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10004","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","16:00:00","MST","2022-07-20 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970066975","UTAHDWQ_WQX-UTLK220718-4910009-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0720-4-C/results/970066975/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10005","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","15:00:00","MST","2022-08-15 22:00:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067018","UTAHDWQ_WQX-UTLK220815-4910009-0815-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0815-4-C/results/970067018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10006","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","15:00:00","MST","2022-08-15 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067022","UTAHDWQ_WQX-UTLK220815-4910009-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0815-29-C/results/970067022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10007","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","15:00:00","MST","2022-08-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067027","UTAHDWQ_WQX-UTLK220815-4910009-0816-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0816-4-C/results/970067027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10008","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-16","15:00:00","MST","2022-08-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067034","UTAHDWQ_WQX-UTLK220815-4910009-0816-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0816-4-C/results/970067034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10009","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","16:00:00","MST","2022-08-17 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067051","UTAHDWQ_WQX-UTLK220815-4910009-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0817-4-C/results/970067051/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10010","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","16:00:00","MST","2022-08-17 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067054","UTAHDWQ_WQX-UTLK220815-4910009-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0817-4-C/results/970067054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10011","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","14:30:00","MST","2022-09-19 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067065","UTAHDWQ_WQX-UTLK220919-4910009-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4910009-0919-4-C/results/970067065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10012","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","14:30:00","MST","2022-09-19 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067073","UTAHDWQ_WQX-UTLK220919-4910009-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4910009-0919-4-C/results/970067073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10013","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","12:30:00","MST","2022-09-20 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067108","UTAHDWQ_WQX-UTLK220919-4910009-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4910009-0920-4-C/results/970067108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10014","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","16:00:00","MST","2022-09-21 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067113","UTAHDWQ_WQX-UTLK220919-4910009-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4910009-0921-4-C/results/970067113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10015","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","16:00:00","MST","2022-09-21 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067115","UTAHDWQ_WQX-UTLK220919-4910009-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4910009-0921-4-C/results/970067115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10016","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","11:55:00","MST","2022-04-19 18:55:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067140","UTAHDWQ_WQX-DC220419-4915630-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4915630-0419-4-C/results/970067140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10017","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","11:55:00","MST","2022-04-19 18:55:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067155","UTAHDWQ_WQX-DC220419-4915630-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4915630-0419-4-C/results/970067155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10018","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","11:50:00","MST","2022-05-17 18:50:00",NA,"0.287",287,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067165","UTAHDWQ_WQX-DC220517-4915630-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4915630-0517-4-C/results/970067165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10019","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","11:50:00","MST","2022-05-17 18:50:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067167","UTAHDWQ_WQX-DC220517-4915630-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4915630-0517-4-C/results/970067167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10020","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","11:50:00","MST","2022-06-21 18:50:00",NA,"0.161",161,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067188","UTAHDWQ_WQX-DC220621-4915630-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4915630-0621-4-C/results/970067188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10021","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","11:50:00","MST","2022-06-21 18:50:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067200","UTAHDWQ_WQX-DC220621-4915630-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4915630-0621-4-C/results/970067200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10022","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:55:00","MST","2022-07-19 17:55:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067204","UTAHDWQ_WQX-DC220719-4915630-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4915630-0719-4-C/results/970067204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10023","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:55:00","MST","2022-07-19 17:55:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067209","UTAHDWQ_WQX-DC220719-4915630-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4915630-0719-4-C/results/970067209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10024","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","11:50:00","MST","2022-08-23 18:50:00",NA,"0.209",209,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067224","UTAHDWQ_WQX-DC220823-4915630-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4915630-0823-4-C/results/970067224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10025","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:45:00","MST","2022-09-20 18:45:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067248","UTAHDWQ_WQX-DC220920-4915630-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4915630-0920-4-C/results/970067248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10026","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:45:00","MST","2022-09-20 18:45:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067260","UTAHDWQ_WQX-DC220920-4915630-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY","River/Stream",NA,"41.1065100000",41.10651,"-111.9035500000",-111.90355,"OK","16020102","UTAHDWQ_WQX-4915630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.1065100000","-111.9035500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4915630-0920-4-C/results/970067260/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10027","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","11:35:00","MST","2022-05-17 18:35:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067286","UTAHDWQ_WQX-DC220517-4915650-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4915650-0517-4-C/results/970067286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10028","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","11:35:00","MST","2022-05-17 18:35:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067289","UTAHDWQ_WQX-DC220517-4915650-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4915650-0517-4-C/results/970067289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10029","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","11:40:00","MST","2022-06-21 18:40:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067317","UTAHDWQ_WQX-DC220621-4915650-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4915650-0621-4-C/results/970067317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10030","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","11:40:00","MST","2022-06-21 18:40:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067319","UTAHDWQ_WQX-DC220621-4915650-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4915650-0621-4-C/results/970067319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10031","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:35:00","MST","2022-07-19 17:35:00",NA,"0.336",336,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067340","UTAHDWQ_WQX-DC220719-4915650-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4915650-0719-4-C/results/970067340/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10032","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:35:00","MST","2022-07-19 17:35:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067347","UTAHDWQ_WQX-DC220719-4915650-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4915650-0719-4-C/results/970067347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10033","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","11:35:00","MST","2022-08-23 18:35:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067352","UTAHDWQ_WQX-DC220823-4915650-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4915650-0823-4-C/results/970067352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10034","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:30:00","MST","2022-09-20 18:30:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067379","UTAHDWQ_WQX-DC220920-4915650-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4915650-0920-4-C/results/970067379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10035","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:30:00","MST","2022-09-20 18:30:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067382","UTAHDWQ_WQX-DC220920-4915650-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SO FK KAYS CK AB FERNWOOD CMP","River/Stream",NA,"41.0860100000",41.08601,"-111.9003200000",-111.90032,"OK","16020102","UTAHDWQ_WQX-4915650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0860100000","-111.9003200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4915650-0920-4-C/results/970067382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10036","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","10:48:00","MST","2022-05-23 17:48:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067394","UTAHDWQ_WQX-IDEQBL220523-4917190-0523-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4917190-0523-2-C/results/970067394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10037","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","10:48:00","MST","2022-05-23 17:48:00",NA,"0.295",295,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067395","UTAHDWQ_WQX-IDEQBL220523-4917190-0523-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4917190-0523-2-C/results/970067395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10038","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","11:15:00","MST","2022-05-23 18:15:00",NA,"0.221",221,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30.064",30.064,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067406","UTAHDWQ_WQX-IDEQBL220523-4917190-0523-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4917190-0523-29-C/results/970067406/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10039","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","11:15:00","MST","2022-05-23 18:15:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30.064",30.064,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067407","UTAHDWQ_WQX-IDEQBL220523-4917190-0523-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4917190-0523-29-C/results/970067407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10040","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","09:00:00","MST","2022-06-16 16:00:00",NA,"0.287",287,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067413","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-2-C/results/970067413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10041","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","09:00:00","MST","2022-06-16 16:00:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067425","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-2-C/results/970067425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10042","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","09:20:00","MST","2022-06-16 16:20:00",NA,"0.221",221,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"Licor 1% photic zone sample collected at depths 1, 6, 12, 17, 22 and 27 m",NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067428","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-PZ-C/results/970067428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10043","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","09:20:00","MST","2022-06-16 16:20:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"Licor 1% photic zone sample collected at depths 1, 6, 12, 17, 22 and 27 m",NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067434","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-PZ-C/results/970067434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10044","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","09:40:00","MST","2022-06-16 16:40:00",NA,"0.173",173,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.009",32.009,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067440","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-29-C/results/970067440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10045","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","09:40:00","MST","2022-06-16 16:40:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.009",32.009,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067444","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-29-C/results/970067444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10046","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:22:00","MST","2022-07-18 19:22:00",NA,"0.284",284,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067451","UTAHDWQ_WQX-IDEQBL220718-4917190-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4917190-0718-2-C/results/970067451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10047","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:22:00","MST","2022-07-18 19:22:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067454","UTAHDWQ_WQX-IDEQBL220718-4917190-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4917190-0718-2-C/results/970067454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10048","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:15:00","MST","2022-07-18 19:15:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30.191",30.191,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067462","UTAHDWQ_WQX-IDEQBL220718-4917190-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4917190-0718-29-C/results/970067462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10049","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:15:00","MST","2022-07-18 19:15:00",NA,"0.241",241,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30.191",30.191,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067463","UTAHDWQ_WQX-IDEQBL220718-4917190-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4917190-0718-29-C/results/970067463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10050","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","11:30:00","MST","2022-08-25 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067468","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-2-C/results/970067468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10051","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","11:30:00","MST","2022-08-25 18:30:00",NA,"0.569",569,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067476","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-2-C/results/970067476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10052","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","12:00:00","MST","2022-08-25 19:00:00",NA,"0.51",510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,"Licor 1% photic zone sample collected at depths 1.5, 7, 13, 18, 23 and 28 m; sample taken at 12:00.",NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067489","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-PZ-C/results/970067489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10053","Sample-Composite Without Parents","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","12:00:00","MST","2022-08-25 19:00:00",NA,"0.156",156,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Photic zone",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL","Licor 1% photic zone sample collected at depths 1.5, 7, 13, 18, 23 and 28 m; sample taken at 12:00.",NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067490","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-PZ-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-PZ-C/results/970067490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10054","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","11:40:00","MST","2022-08-25 18:40:00",NA,"0.151",151,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.042",32.042,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067495","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-29-C/results/970067495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10055","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","11:40:00","MST","2022-08-25 18:40:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32.042",32.042,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067496","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-29-C/results/970067496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10056","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:12:00","MST","2022-09-20 18:12:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067501","UTAHDWQ_WQX-IDEQBL220920-4917190-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4917190-0920-2-C/results/970067501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10057","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:12:00","MST","2022-09-20 18:12:00",NA,"0.179",179,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067504","UTAHDWQ_WQX-IDEQBL220920-4917190-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4917190-0920-2-C/results/970067504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10058","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:20:00","MST","2022-09-20 18:20:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.017",34.017,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067514","UTAHDWQ_WQX-IDEQBL220920-4917190-0920-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4917190-0920-29-C/results/970067514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10059","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:20:00","MST","2022-09-20 18:20:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","34.017",34.017,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067518","UTAHDWQ_WQX-IDEQBL220920-4917190-0920-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","033","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"41.9030800000",41.90308,"-111.3378100000",-111.33781,"OK","16010201","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Other",NA,"41.9030800000","-111.3378100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4917190-0920-29-C/results/970067518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10060","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","10:10:00","MST","2022-04-18 17:10:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067530","UTAHDWQ_WQX-UTLK220404-4917305-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917305-0418-2-C/results/970067530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10061","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","10:10:00","MST","2022-04-18 17:10:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067536","UTAHDWQ_WQX-UTLK220404-4917305-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917305-0418-2-C/results/970067536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10062","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","10:20:00","MST","2022-05-16 17:20:00",NA,"0.707",707,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067546","UTAHDWQ_WQX-UTLK220516-4917305-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917305-0516-2-C/results/970067546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10063","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","10:20:00","MST","2022-05-16 17:20:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067557","UTAHDWQ_WQX-UTLK220516-4917305-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917305-0516-2-C/results/970067557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10064","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","09:20:00","MST","2022-06-08 16:20:00",NA,"0.867",867,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067559","UTAHDWQ_WQX-UTLK220606-4917305-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917305-0608-2-C/results/970067559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10065","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","09:40:00","MST","2022-07-18 16:40:00",NA,"0.947",947,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067582","UTAHDWQ_WQX-UTLK220718-4917305-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917305-0718-2-C/results/970067582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10066","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","09:40:00","MST","2022-07-18 16:40:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067587","UTAHDWQ_WQX-UTLK220718-4917305-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917305-0718-2-C/results/970067587/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10067","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","09:40:00","MST","2022-08-15 16:40:00",NA,"0.915",915,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067605","UTAHDWQ_WQX-UTLK220815-4917305-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917305-0815-2-C/results/970067605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10068","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","09:40:00","MST","2022-08-15 16:40:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067607","UTAHDWQ_WQX-UTLK220815-4917305-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917305-0815-2-C/results/970067607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10069","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","10:00:00","MST","2022-09-19 17:00:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067622","UTAHDWQ_WQX-UTLK220919-4917305-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917305-0919-2-C/results/970067622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10070","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","10:00:00","MST","2022-09-19 17:00:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067633","UTAHDWQ_WQX-UTLK220919-4917305-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at American Fork Marina near boat ramp","Lake",NA,"40.3423800000",40.34238,"-111.8008400000",-111.80084,"OK","16020201","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3423800000","-111.8008400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917305-0919-2-C/results/970067633/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10071","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","11:00:00","MST","2022-04-18 18:00:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067639","UTAHDWQ_WQX-UTLK220404-4917310-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917310-0418-2-C/results/970067639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10072","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","11:00:00","MST","2022-04-18 18:00:00",NA,"0.873",873,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067647","UTAHDWQ_WQX-UTLK220404-4917310-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917310-0418-2-C/results/970067647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10073","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","11:05:00","MST","2022-04-18 18:05:00",NA,"0.944",944,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.792",1.792,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067653","UTAHDWQ_WQX-UTLK220404-4917310-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917310-0418-29-C/results/970067653/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10074","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","11:05:00","MST","2022-04-18 18:05:00",NA,"0.892",892,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.792",1.792,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067670","UTAHDWQ_WQX-UTLK220404-4917310-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:12:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917310-0418-29-C/results/970067670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10075","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","11:10:00","MST","2022-05-16 18:10:00",NA,"0.848",848,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067704","UTAHDWQ_WQX-UTLK220516-4917310-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917310-0516-2-C/results/970067704/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10076","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","11:10:00","MST","2022-05-16 18:10:00",NA,"0.591",591,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067705","UTAHDWQ_WQX-UTLK220516-4917310-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917310-0516-2-C/results/970067705/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10077","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","11:10:00","MST","2022-05-16 18:10:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.794",1.794,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067727","UTAHDWQ_WQX-UTLK220516-4917310-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917310-0516-29-C/results/970067727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10078","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","11:10:00","MST","2022-05-16 18:10:00",NA,"0.781",781,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.794",1.794,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067728","UTAHDWQ_WQX-UTLK220516-4917310-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917310-0516-29-C/results/970067728/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10079","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","10:00:00","MST","2022-06-08 17:00:00",NA,"0.719",719,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067745","UTAHDWQ_WQX-UTLK220606-4917310-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917310-0608-2-C/results/970067745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10080","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","10:00:00","MST","2022-06-08 17:00:00",NA,"0.627",627,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067758","UTAHDWQ_WQX-UTLK220606-4917310-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917310-0608-2-C/results/970067758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10081","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","10:15:00","MST","2022-06-08 17:15:00",NA,"0.821",821,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.375",1.375,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067772","UTAHDWQ_WQX-UTLK220606-4917310-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917310-0608-29-C/results/970067772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10082","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","10:15:00","MST","2022-06-08 17:15:00",NA,"0.583",583,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.375",1.375,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067778","UTAHDWQ_WQX-UTLK220606-4917310-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917310-0608-29-C/results/970067778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10083","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","10:20:00","MST","2022-07-18 17:20:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067812","UTAHDWQ_WQX-UTLK220718-4917310-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917310-0718-2-C/results/970067812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10084","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","10:20:00","MST","2022-07-18 17:20:00",NA,"0.991",991,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067815","UTAHDWQ_WQX-UTLK220718-4917310-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917310-0718-2-C/results/970067815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10085","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","10:40:00","MST","2022-07-18 17:40:00",NA,"0.954",954,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.225",1.225,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067821","UTAHDWQ_WQX-UTLK220718-4917310-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917310-0718-29-C/results/970067821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10086","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","10:40:00","MST","2022-07-18 17:40:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.225",1.225,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067853","UTAHDWQ_WQX-UTLK220718-4917310-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917310-0718-29-C/results/970067853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10087","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","10:20:00","MST","2022-08-15 17:20:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067863","UTAHDWQ_WQX-UTLK220815-4917310-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917310-0815-2-C/results/970067863/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10088","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","10:20:00","MST","2022-08-15 17:20:00",NA,"1.73",1730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067867","UTAHDWQ_WQX-UTLK220815-4917310-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917310-0815-2-C/results/970067867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10089","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","13:20:00","MST","2022-09-19 20:20:00",NA,"0.917",917,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067874","UTAHDWQ_WQX-UTLK220919-4917310-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917310-0919-2-C/results/970067874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10090","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:20:00","MST","2022-09-19 20:20:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067886","UTAHDWQ_WQX-UTLK220919-4917310-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917310-0919-2-C/results/970067886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10091","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","11:10:00","MST","2022-04-18 18:10:00",NA,"0.909",909,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067895","UTAHDWQ_WQX-UTLK220404-4917320-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917320-0418-2-C/results/970067895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10092","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","11:10:00","MST","2022-04-18 18:10:00",NA,"0.912",912,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067903","UTAHDWQ_WQX-UTLK220404-4917320-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917320-0418-2-C/results/970067903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10093","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","11:15:00","MST","2022-04-18 18:15:00",NA,"0.916",916,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.677",1.677,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067911","UTAHDWQ_WQX-UTLK220404-4917320-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917320-0418-29-C/results/970067911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10094","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","11:15:00","MST","2022-04-18 18:15:00",NA,"0.963",963,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.677",1.677,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067935","UTAHDWQ_WQX-UTLK220404-4917320-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917320-0418-29-C/results/970067935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10095","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","11:20:00","MST","2022-05-16 18:20:00",NA,"0.705",705,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067947","UTAHDWQ_WQX-UTLK220516-4917320-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917320-0516-2-C/results/970067947/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10096","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","11:20:00","MST","2022-05-16 18:20:00",NA,"0.841",841,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067953","UTAHDWQ_WQX-UTLK220516-4917320-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917320-0516-2-C/results/970067953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10097","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","11:20:00","MST","2022-05-16 18:20:00",NA,"0.777",777,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.65",1.65,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067968","UTAHDWQ_WQX-UTLK220516-4917320-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917320-0516-29-C/results/970067968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10098","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","11:20:00","MST","2022-05-16 18:20:00",NA,"0.579",579,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.65",1.65,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970067992","UTAHDWQ_WQX-UTLK220516-4917320-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917320-0516-29-C/results/970067992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10099","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","10:05:00","MST","2022-06-08 17:05:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068010","UTAHDWQ_WQX-UTLK220606-4917320-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917320-0608-2-C/results/970068010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10100","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","10:05:00","MST","2022-06-08 17:05:00",NA,"0.944",944,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068011","UTAHDWQ_WQX-UTLK220606-4917320-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917320-0608-2-C/results/970068011/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10101","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","10:10:00","MST","2022-06-08 17:10:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.369",1.369,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068034","UTAHDWQ_WQX-UTLK220606-4917320-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917320-0608-29-C/results/970068034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10102","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","10:10:00","MST","2022-06-08 17:10:00",NA,"0.782",782,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.369",1.369,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068037","UTAHDWQ_WQX-UTLK220606-4917320-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917320-0608-29-C/results/970068037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10103","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","10:30:00","MST","2022-07-18 17:30:00",NA,"0.887",887,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068056","UTAHDWQ_WQX-UTLK220718-4917320-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917320-0718-2-C/results/970068056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10104","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","10:30:00","MST","2022-07-18 17:30:00",NA,"0.936",936,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068061","UTAHDWQ_WQX-UTLK220718-4917320-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917320-0718-2-C/results/970068061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10105","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","10:45:00","MST","2022-07-18 17:45:00",NA,"0.98",980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.208",1.208,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068076","UTAHDWQ_WQX-UTLK220718-4917320-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917320-0718-29-C/results/970068076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10106","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","10:45:00","MST","2022-07-18 17:45:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.208",1.208,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068096","UTAHDWQ_WQX-UTLK220718-4917320-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917320-0718-29-C/results/970068096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10107","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","10:30:00","MST","2022-08-15 17:30:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068117","UTAHDWQ_WQX-UTLK220815-4917320-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917320-0815-2-C/results/970068117/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10108","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","10:30:00","MST","2022-08-15 17:30:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068123","UTAHDWQ_WQX-UTLK220815-4917320-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917320-0815-2-C/results/970068123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10109","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","13:30:00","MST","2022-09-19 20:30:00",NA,"0.894",894,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068136","UTAHDWQ_WQX-UTLK220919-4917320-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917320-0919-2-C/results/970068136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10110","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:30:00","MST","2022-09-19 20:30:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068143","UTAHDWQ_WQX-UTLK220919-4917320-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","40.3208700000",40.32087,"-111.7775400000",-111.77754,"OK","16020201","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3208700000","-111.7775400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917320-0919-2-C/results/970068143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10111","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","10:30:00","MST","2022-04-18 17:30:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068152","UTAHDWQ_WQX-UTLK220404-4917335-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917335-0418-2-C/results/970068152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10112","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","10:30:00","MST","2022-04-18 17:30:00",NA,"1.8",1800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068159","UTAHDWQ_WQX-UTLK220404-4917335-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917335-0418-2-C/results/970068159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10113","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","10:50:00","MST","2022-05-16 17:50:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068172","UTAHDWQ_WQX-UTLK220516-4917335-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917335-0516-2-C/results/970068172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10114","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","10:50:00","MST","2022-05-16 17:50:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068177","UTAHDWQ_WQX-UTLK220516-4917335-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917335-0516-2-C/results/970068177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10115","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","09:40:00","MST","2022-06-08 16:40:00",NA,"2.18",2180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068203","UTAHDWQ_WQX-UTLK220606-4917335-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917335-0608-2-C/results/970068203/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10116","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","09:40:00","MST","2022-06-08 16:40:00",NA,"0.721",721,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068205","UTAHDWQ_WQX-UTLK220606-4917335-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917335-0608-2-C/results/970068205/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10117","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","10:00:00","MST","2022-07-18 17:00:00",NA,"0.944",944,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068213","UTAHDWQ_WQX-UTLK220718-4917335-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917335-0718-2-C/results/970068213/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10118","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","10:00:00","MST","2022-07-18 17:00:00",NA,"1.33",1330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068214","UTAHDWQ_WQX-UTLK220718-4917335-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"40.3270800000",40.32708,"-111.7642900000",-111.76429,"OK","16020201","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3270800000","-111.7642900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917335-0718-2-C/results/970068214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10119","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","11:30:00","MST","2022-04-18 18:30:00",NA,"0.825",825,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068232","UTAHDWQ_WQX-UTLK220404-4917365-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917365-0418-2-C/results/970068232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10120","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","11:30:00","MST","2022-04-18 18:30:00",NA,"0.725",725,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068237","UTAHDWQ_WQX-UTLK220404-4917365-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917365-0418-2-C/results/970068237/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10121","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","11:35:00","MST","2022-04-18 18:35:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.409",2.409,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068245","UTAHDWQ_WQX-UTLK220404-4917365-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917365-0418-29-C/results/970068245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10122","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","11:35:00","MST","2022-04-18 18:35:00",NA,"0.879",879,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.409",2.409,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068267","UTAHDWQ_WQX-UTLK220404-4917365-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917365-0418-29-C/results/970068267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10123","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","11:40:00","MST","2022-05-16 18:40:00",NA,"0.652",652,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068296","UTAHDWQ_WQX-UTLK220516-4917365-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917365-0516-2-C/results/970068296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10124","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","11:40:00","MST","2022-05-16 18:40:00",NA,"0.788",788,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068297","UTAHDWQ_WQX-UTLK220516-4917365-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917365-0516-2-C/results/970068297/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10125","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","11:40:00","MST","2022-05-16 18:40:00",NA,"0.715",715,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.432",2.432,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068305","UTAHDWQ_WQX-UTLK220516-4917365-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917365-0516-29-C/results/970068305/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10126","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","11:40:00","MST","2022-05-16 18:40:00",NA,"0.738",738,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.432",2.432,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068316","UTAHDWQ_WQX-UTLK220516-4917365-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917365-0516-29-C/results/970068316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10127","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","10:30:00","MST","2022-06-08 17:30:00",NA,"0.832",832,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068345","UTAHDWQ_WQX-UTLK220606-4917365-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917365-0608-2-C/results/970068345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10128","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","10:30:00","MST","2022-06-08 17:30:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068353","UTAHDWQ_WQX-UTLK220606-4917365-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917365-0608-2-C/results/970068353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10129","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","10:40:00","MST","2022-06-08 17:40:00",NA,"0.866",866,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.15",2.15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068386","UTAHDWQ_WQX-UTLK220606-4917365-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917365-0608-29-C/results/970068386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10130","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","10:40:00","MST","2022-06-08 17:40:00",NA,"0.691",691,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.15",2.15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068387","UTAHDWQ_WQX-UTLK220606-4917365-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917365-0608-29-C/results/970068387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10131","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:00:00","MST","2022-07-18 18:00:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068406","UTAHDWQ_WQX-UTLK220718-4917365-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917365-0718-2-C/results/970068406/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10132","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:00:00","MST","2022-07-18 18:00:00",NA,"2.96",2960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068408","UTAHDWQ_WQX-UTLK220718-4917365-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917365-0718-2-C/results/970068408/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10133","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:10:00","MST","2022-07-18 18:10:00",NA,"0.674",674,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.82",1.82,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068416","UTAHDWQ_WQX-UTLK220718-4917365-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917365-0718-29-C/results/970068416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10134","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:10:00","MST","2022-07-18 18:10:00",NA,"0.807",807,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.82",1.82,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068440","UTAHDWQ_WQX-UTLK220718-4917365-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917365-0718-29-C/results/970068440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10135","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","10:40:00","MST","2022-08-15 17:40:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068448","UTAHDWQ_WQX-UTLK220815-4917365-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917365-0815-2-C/results/970068448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10136","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","10:40:00","MST","2022-08-15 17:40:00",NA,"0.916",916,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068458","UTAHDWQ_WQX-UTLK220815-4917365-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917365-0815-2-C/results/970068458/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10137","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","10:45:00","MST","2022-08-15 17:45:00",NA,"0.936",936,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.646",1.646,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068468","UTAHDWQ_WQX-UTLK220815-4917365-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917365-0815-29-C/results/970068468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10138","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","10:45:00","MST","2022-08-15 17:45:00",NA,"0.965",965,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.646",1.646,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068500","UTAHDWQ_WQX-UTLK220815-4917365-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917365-0815-29-C/results/970068500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10139","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:40:00","MST","2022-09-19 20:40:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068507","UTAHDWQ_WQX-UTLK220919-4917365-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917365-0919-2-C/results/970068507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10140","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","13:40:00","MST","2022-09-19 20:40:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068516","UTAHDWQ_WQX-UTLK220919-4917365-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917365-0919-2-C/results/970068516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10141","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","13:50:00","MST","2022-09-19 20:50:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.846",1.846,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068530","UTAHDWQ_WQX-UTLK220919-4917365-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917365-0919-29-C/results/970068530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10142","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:50:00","MST","2022-09-19 20:50:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.846",1.846,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068555","UTAHDWQ_WQX-UTLK220919-4917365-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 2 miles west of Vineyard","Lake",NA,"40.2956900000",40.29569,"-111.8028200000",-111.80282,"OK","16020201","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2956900000","-111.8028200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917365-0919-29-C/results/970068555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10143","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","13:50:00","MST","2022-04-18 20:50:00",NA,"0.717",717,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068557","UTAHDWQ_WQX-UTLK220404-4917370-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917370-0418-2-C/results/970068557/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10144","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","13:50:00","MST","2022-04-18 20:50:00",NA,"0.816",816,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068566","UTAHDWQ_WQX-UTLK220404-4917370-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917370-0418-2-C/results/970068566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10145","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","13:55:00","MST","2022-04-18 20:55:00",NA,"0.718",718,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.421",2.421,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068586","UTAHDWQ_WQX-UTLK220404-4917370-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917370-0418-29-C/results/970068586/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10146","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","13:55:00","MST","2022-04-18 20:55:00",NA,"0.721",721,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.421",2.421,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068606","UTAHDWQ_WQX-UTLK220404-4917370-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917370-0418-29-C/results/970068606/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10147","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","14:20:00","MST","2022-05-16 21:20:00",NA,"0.7",700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068625","UTAHDWQ_WQX-UTLK220516-4917370-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917370-0516-2-C/results/970068625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10148","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","14:20:00","MST","2022-05-16 21:20:00",NA,"0.755",755,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068626","UTAHDWQ_WQX-UTLK220516-4917370-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917370-0516-2-C/results/970068626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10149","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","14:20:00","MST","2022-05-16 21:20:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.478",2.478,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068631","UTAHDWQ_WQX-UTLK220516-4917370-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917370-0516-29-C/results/970068631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10150","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","14:20:00","MST","2022-05-16 21:20:00",NA,"0.694",694,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.478",2.478,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068661","UTAHDWQ_WQX-UTLK220516-4917370-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917370-0516-29-C/results/970068661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10151","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","12:50:00","MST","2022-06-08 19:50:00",NA,"0.87",870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068681","UTAHDWQ_WQX-UTLK220606-4917370-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917370-0608-2-C/results/970068681/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10152","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","12:50:00","MST","2022-06-08 19:50:00",NA,"0.874",874,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068683","UTAHDWQ_WQX-UTLK220606-4917370-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917370-0608-2-C/results/970068683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10153","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","12:55:00","MST","2022-06-08 19:55:00",NA,"0.71",710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.952",1.952,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068692","UTAHDWQ_WQX-UTLK220606-4917370-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917370-0608-29-C/results/970068692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10154","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","12:55:00","MST","2022-06-08 19:55:00",NA,"0.831",831,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.952",1.952,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068696","UTAHDWQ_WQX-UTLK220606-4917370-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917370-0608-29-C/results/970068696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10155","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","14:00:00","MST","2022-07-18 21:00:00",NA,"0.803",803,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068726","UTAHDWQ_WQX-UTLK220718-4917370-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917370-0718-2-C/results/970068726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10156","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","14:00:00","MST","2022-07-18 21:00:00",NA,"0.906",906,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068733","UTAHDWQ_WQX-UTLK220718-4917370-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917370-0718-2-C/results/970068733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10157","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","14:20:00","MST","2022-07-18 21:20:00",NA,"0.736",736,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.625",1.625,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068744","UTAHDWQ_WQX-UTLK220718-4917370-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917370-0718-29-C/results/970068744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10158","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","14:20:00","MST","2022-07-18 21:20:00",NA,"0.661",661,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.625",1.625,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068765","UTAHDWQ_WQX-UTLK220718-4917370-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917370-0718-29-C/results/970068765/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10159","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","12:45:00","MST","2022-08-15 19:45:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068782","UTAHDWQ_WQX-UTLK220815-4917370-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917370-0815-2-C/results/970068782/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10160","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","12:45:00","MST","2022-08-15 19:45:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068792","UTAHDWQ_WQX-UTLK220815-4917370-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917370-0815-2-C/results/970068792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10161","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","13:00:00","MST","2022-08-15 20:00:00",NA,"0.98",980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.466",1.466,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068815","UTAHDWQ_WQX-UTLK220815-4917370-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917370-0815-29-C/results/970068815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10162","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","13:00:00","MST","2022-08-15 20:00:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.466",1.466,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068826","UTAHDWQ_WQX-UTLK220815-4917370-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917370-0815-29-C/results/970068826/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10163","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","12:30:00","MST","2022-09-19 19:30:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068836","UTAHDWQ_WQX-UTLK220919-4917370-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917370-0919-2-C/results/970068836/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10164","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","12:30:00","MST","2022-09-19 19:30:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068842","UTAHDWQ_WQX-UTLK220919-4917370-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917370-0919-2-C/results/970068842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10165","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","12:40:00","MST","2022-09-19 19:40:00",NA,"0.957",957,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.406",1.406,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068866","UTAHDWQ_WQX-UTLK220919-4917370-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917370-0919-29-C/results/970068866/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10166","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","12:40:00","MST","2022-09-19 19:40:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.406",1.406,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068869","UTAHDWQ_WQX-UTLK220919-4917370-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"40.2682800000",40.26828,"-111.8299300000",-111.82993,"OK","16020201","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2682800000","-111.8299300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917370-0919-29-C/results/970068869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10167","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","12:00:00","MST","2022-04-18 19:00:00",NA,"0.778",778,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068894","UTAHDWQ_WQX-UTLK220404-4917390-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917390-0418-2-C/results/970068894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10168","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","12:00:00","MST","2022-04-18 19:00:00",NA,"0.758",758,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068903","UTAHDWQ_WQX-UTLK220404-4917390-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917390-0418-2-C/results/970068903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10169","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","12:15:00","MST","2022-04-18 19:15:00",NA,"0.743",743,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.984",2.984,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068921","UTAHDWQ_WQX-UTLK220404-4917390-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917390-0418-29-C/results/970068921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10170","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","12:15:00","MST","2022-04-18 19:15:00",NA,"0.777",777,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.984",2.984,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068926","UTAHDWQ_WQX-UTLK220404-4917390-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917390-0418-29-C/results/970068926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10171","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","12:30:00","MST","2022-05-16 19:30:00",NA,"0.796",796,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068946","UTAHDWQ_WQX-UTLK220516-4917390-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917390-0516-2-C/results/970068946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10172","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","12:30:00","MST","2022-05-16 19:30:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068955","UTAHDWQ_WQX-UTLK220516-4917390-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917390-0516-2-C/results/970068955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10173","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","12:30:00","MST","2022-05-16 19:30:00",NA,"0.579",579,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.744",2.744,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068972","UTAHDWQ_WQX-UTLK220516-4917390-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917390-0516-29-C/results/970068972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10174","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","12:30:00","MST","2022-05-16 19:30:00",NA,"0.707",707,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.744",2.744,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068981","UTAHDWQ_WQX-UTLK220516-4917390-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917390-0516-29-C/results/970068981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10175","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","11:00:00","MST","2022-06-08 18:00:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970068997","UTAHDWQ_WQX-UTLK220606-4917390-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917390-0608-2-C/results/970068997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10176","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","11:00:00","MST","2022-06-08 18:00:00",NA,"0.795",795,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069009","UTAHDWQ_WQX-UTLK220606-4917390-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917390-0608-2-C/results/970069009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10177","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","11:05:00","MST","2022-06-08 18:05:00",NA,"0.735",735,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.395",2.395,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069022","UTAHDWQ_WQX-UTLK220606-4917390-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917390-0608-29-C/results/970069022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10178","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","11:05:00","MST","2022-06-08 18:05:00",NA,"0.817",817,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.395",2.395,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069050","UTAHDWQ_WQX-UTLK220606-4917390-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917390-0608-29-C/results/970069050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10179","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:00:00","MST","2022-07-18 19:00:00",NA,"2.43",2430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069054","UTAHDWQ_WQX-UTLK220718-4917390-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917390-0718-2-C/results/970069054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10180","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:00:00","MST","2022-07-18 19:00:00",NA,"0.623",623,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069058","UTAHDWQ_WQX-UTLK220718-4917390-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917390-0718-2-C/results/970069058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10181","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:10:00","MST","2022-07-18 19:10:00",NA,"0.855",855,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.137",2.137,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069085","UTAHDWQ_WQX-UTLK220718-4917390-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917390-0718-29-C/results/970069085/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10182","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:10:00","MST","2022-07-18 19:10:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.137",2.137,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069099","UTAHDWQ_WQX-UTLK220718-4917390-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917390-0718-29-C/results/970069099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10183","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","11:30:00","MST","2022-08-15 18:30:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069107","UTAHDWQ_WQX-UTLK220815-4917390-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917390-0815-2-C/results/970069107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10184","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","11:30:00","MST","2022-08-15 18:30:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069123","UTAHDWQ_WQX-UTLK220815-4917390-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917390-0815-2-C/results/970069123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10185","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","11:35:00","MST","2022-08-15 18:35:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.958",1.958,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069135","UTAHDWQ_WQX-UTLK220815-4917390-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917390-0815-29-C/results/970069135/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10186","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","11:35:00","MST","2022-08-15 18:35:00",NA,"0.854",854,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.958",1.958,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069151","UTAHDWQ_WQX-UTLK220815-4917390-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917390-0815-29-C/results/970069151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10187","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:05:00","MST","2022-09-19 18:05:00",NA,"0.935",935,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069161","UTAHDWQ_WQX-UTLK220919-4917390-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917390-0919-2-C/results/970069161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10188","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","11:05:00","MST","2022-09-19 18:05:00",NA,"0.759",759,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069170","UTAHDWQ_WQX-UTLK220919-4917390-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917390-0919-2-C/results/970069170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10189","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","11:15:00","MST","2022-09-19 18:15:00",NA,"0.77",770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.711",1.711,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069201","UTAHDWQ_WQX-UTLK220919-4917390-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917390-0919-29-C/results/970069201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10190","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:15:00","MST","2022-09-19 18:15:00",NA,"0.882",882,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.711",1.711,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069214","UTAHDWQ_WQX-UTLK220919-4917390-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"40.2371700000",40.23717,"-111.7646500000",-111.76465,"OK","16020201","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2371700000","-111.7646500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917390-0919-29-C/results/970069214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10191","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","14:15:00","MST","2022-04-18 21:15:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069218","UTAHDWQ_WQX-UTLK220404-4917414-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917414-0418-2-C/results/970069218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10192","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","14:15:00","MST","2022-04-18 21:15:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069232","UTAHDWQ_WQX-UTLK220404-4917414-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917414-0418-2-C/results/970069232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10193","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","14:40:00","MST","2022-05-16 21:40:00",NA,"0.654",654,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069239","UTAHDWQ_WQX-UTLK220516-4917414-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917414-0516-2-C/results/970069239/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10194","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","14:40:00","MST","2022-05-16 21:40:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069245","UTAHDWQ_WQX-UTLK220516-4917414-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917414-0516-2-C/results/970069245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10195","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","13:10:00","MST","2022-06-08 20:10:00",NA,"0.849",849,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069263","UTAHDWQ_WQX-UTLK220606-4917414-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917414-0608-2-C/results/970069263/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10196","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","13:10:00","MST","2022-06-08 20:10:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069267","UTAHDWQ_WQX-UTLK220606-4917414-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917414-0608-2-C/results/970069267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10197","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","14:30:00","MST","2022-07-18 21:30:00",NA,"0.93",930,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069276","UTAHDWQ_WQX-UTLK220718-4917414-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917414-0718-2-C/results/970069276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10198","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","14:30:00","MST","2022-07-18 21:30:00",NA,"0.772",772,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069291","UTAHDWQ_WQX-UTLK220718-4917414-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917414-0718-2-C/results/970069291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10199","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","13:15:00","MST","2022-08-15 20:15:00",NA,"0.971",971,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069296","UTAHDWQ_WQX-UTLK220815-4917414-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917414-0815-2-C/results/970069296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10200","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","13:15:00","MST","2022-08-15 20:15:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069305","UTAHDWQ_WQX-UTLK220815-4917414-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"40.2898700000",40.28987,"-111.8699600000",-111.86996,"OK","16020201","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2898700000","-111.8699600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917414-0815-2-C/results/970069305/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10201","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","11:40:00","MST","2022-04-18 18:40:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069328","UTAHDWQ_WQX-UTLK220404-4917433-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917433-0418-2-C/results/970069328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10202","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","11:40:00","MST","2022-04-18 18:40:00",NA,"0.914",914,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069331","UTAHDWQ_WQX-UTLK220404-4917433-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917433-0418-2-C/results/970069331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10203","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","12:00:00","MST","2022-05-16 19:00:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069341","UTAHDWQ_WQX-UTLK220516-4917433-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917433-0516-2-C/results/970069341/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10204","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","12:00:00","MST","2022-05-16 19:00:00",NA,"0.601",601,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069342","UTAHDWQ_WQX-UTLK220516-4917433-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917433-0516-2-C/results/970069342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10205","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","10:50:00","MST","2022-06-08 17:50:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069362","UTAHDWQ_WQX-UTLK220606-4917433-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917433-0608-2-C/results/970069362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10206","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","10:50:00","MST","2022-06-08 17:50:00",NA,"0.68",680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069368","UTAHDWQ_WQX-UTLK220606-4917433-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917433-0608-2-C/results/970069368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10207","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:30:00","MST","2022-07-18 18:30:00",NA,"0.954",954,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069379","UTAHDWQ_WQX-UTLK220718-4917433-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917433-0718-2-C/results/970069379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10208","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:30:00","MST","2022-07-18 18:30:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069390","UTAHDWQ_WQX-UTLK220718-4917433-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917433-0718-2-C/results/970069390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10209","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","11:15:00","MST","2022-08-15 18:15:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069404","UTAHDWQ_WQX-UTLK220815-4917433-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917433-0815-2-C/results/970069404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10210","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","11:15:00","MST","2022-08-15 18:15:00",NA,"0.851",851,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069412","UTAHDWQ_WQX-UTLK220815-4917433-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:13:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917433-0815-2-C/results/970069412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10211","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","11:00:00","MST","2022-09-19 18:00:00",NA,"0.837",837,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069424","UTAHDWQ_WQX-UTLK220919-4917433-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917433-0919-2-C/results/970069424/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10212","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:00:00","MST","2022-09-19 18:00:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069428","UTAHDWQ_WQX-UTLK220919-4917433-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake SP @ Marina","Lake",NA,"40.2384300000",40.23843,"-111.7388300000",-111.73883,"OK","16020201","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2384300000","-111.7388300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917433-0919-2-C/results/970069428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10213","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","09:50:00","MST","2022-04-19 16:50:00",NA,"0.816",816,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069451","UTAHDWQ_WQX-UTLK220404-4917450-0419-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management;Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917450-0419-2-C/results/970069451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10214","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","09:50:00","MST","2022-04-19 16:50:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069452","UTAHDWQ_WQX-UTLK220404-4917450-0419-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management;Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917450-0419-2-C/results/970069452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10215","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","10:45:00","MST","2022-05-18 17:45:00",NA,"0.374",374,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069458","UTAHDWQ_WQX-UTLK220516-4917450-0518-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917450-0518-2-C/results/970069458/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10216","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","10:45:00","MST","2022-05-18 17:45:00",NA,"0.82",820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069461","UTAHDWQ_WQX-UTLK220516-4917450-0518-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917450-0518-2-C/results/970069461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10217","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-07","11:10:00","MST","2022-06-07 18:10:00",NA,"0.509",509,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069485","UTAHDWQ_WQX-UTLK220606-4917450-0607-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917450-0607-2-C/results/970069485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10218","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-07","11:10:00","MST","2022-06-07 18:10:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069487","UTAHDWQ_WQX-UTLK220606-4917450-0607-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917450-0607-2-C/results/970069487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10219","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:30:00","MST","2022-07-19 18:30:00",NA,"3.76",3760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069491","UTAHDWQ_WQX-UTLK220718-4917450-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917450-0719-2-C/results/970069491/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10220","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","11:30:00","MST","2022-07-19 18:30:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069499","UTAHDWQ_WQX-UTLK220718-4917450-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917450-0719-2-C/results/970069499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10221","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","12:00:00","MST","2022-08-16 19:00:00",NA,"0.731",731,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069514","UTAHDWQ_WQX-UTLK220815-4917450-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917450-0816-2-C/results/970069514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10222","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-16","12:00:00","MST","2022-08-16 19:00:00",NA,"0.688",688,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069518","UTAHDWQ_WQX-UTLK220815-4917450-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917450-0816-2-C/results/970069518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10223","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:20:00","MST","2022-09-20 18:20:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069526","UTAHDWQ_WQX-UTLK220919-4917450-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917450-0920-2-C/results/970069526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10224","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:20:00","MST","2022-09-20 18:20:00",NA,"1.97",1970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069541","UTAHDWQ_WQX-UTLK220919-4917450-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"40.1891400000",40.18914,"-111.6999300000",-111.69993,"OK","16020201","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1891400000","-111.6999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917450-0920-2-C/results/970069541/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10225","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","13:30:00","MST","2022-04-18 20:30:00",NA,"0.839",839,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069554","UTAHDWQ_WQX-UTLK220404-4917500-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917500-0418-2-C/results/970069554/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10226","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","13:30:00","MST","2022-04-18 20:30:00",NA,"0.858",858,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069555","UTAHDWQ_WQX-UTLK220404-4917500-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917500-0418-2-C/results/970069555/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10227","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","13:35:00","MST","2022-04-18 20:35:00",NA,"0.837",837,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.603",2.603,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069567","UTAHDWQ_WQX-UTLK220404-4917500-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917500-0418-29-C/results/970069567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10228","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","13:35:00","MST","2022-04-18 20:35:00",NA,"0.878",878,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.603",2.603,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069589","UTAHDWQ_WQX-UTLK220404-4917500-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917500-0418-29-C/results/970069589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10229","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","13:50:00","MST","2022-05-16 20:50:00",NA,"0.786",786,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069599","UTAHDWQ_WQX-UTLK220516-4917500-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917500-0516-2-C/results/970069599/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10230","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","13:50:00","MST","2022-05-16 20:50:00",NA,"0.792",792,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069610","UTAHDWQ_WQX-UTLK220516-4917500-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917500-0516-2-C/results/970069610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10231","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","13:50:00","MST","2022-05-16 20:50:00",NA,"0.725",725,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.79",2.79,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069623","UTAHDWQ_WQX-UTLK220516-4917500-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917500-0516-29-C/results/970069623/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10232","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","13:50:00","MST","2022-05-16 20:50:00",NA,"0.718",718,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.79",2.79,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069642","UTAHDWQ_WQX-UTLK220516-4917500-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917500-0516-29-C/results/970069642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10233","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","12:20:00","MST","2022-06-08 19:20:00",NA,"0.805",805,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069659","UTAHDWQ_WQX-UTLK220606-4917500-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917500-0608-2-C/results/970069659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10234","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","12:20:00","MST","2022-06-08 19:20:00",NA,"0.747",747,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069663","UTAHDWQ_WQX-UTLK220606-4917500-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917500-0608-2-C/results/970069663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10235","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","12:25:00","MST","2022-06-08 19:25:00",NA,"0.823",823,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.1",2.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069685","UTAHDWQ_WQX-UTLK220606-4917500-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917500-0608-29-C/results/970069685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10236","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","12:25:00","MST","2022-06-08 19:25:00",NA,"0.766",766,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.1",2.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069696","UTAHDWQ_WQX-UTLK220606-4917500-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917500-0608-29-C/results/970069696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10237","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:40:00","MST","2022-07-18 20:40:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069711","UTAHDWQ_WQX-UTLK220718-4917500-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917500-0718-2-C/results/970069711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10238","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:40:00","MST","2022-07-18 20:40:00",NA,"0.659",659,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069717","UTAHDWQ_WQX-UTLK220718-4917500-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917500-0718-2-C/results/970069717/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10239","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:45:00","MST","2022-07-18 20:45:00",NA,"0.907",907,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.047",2.047,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069744","UTAHDWQ_WQX-UTLK220718-4917500-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917500-0718-29-C/results/970069744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10240","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:45:00","MST","2022-07-18 20:45:00",NA,"0.746",746,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.047",2.047,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069756","UTAHDWQ_WQX-UTLK220718-4917500-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917500-0718-29-C/results/970069756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10241","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","12:25:00","MST","2022-08-15 19:25:00",NA,"0.989",989,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069765","UTAHDWQ_WQX-UTLK220815-4917500-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917500-0815-2-C/results/970069765/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10242","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","12:25:00","MST","2022-08-15 19:25:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069769","UTAHDWQ_WQX-UTLK220815-4917500-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917500-0815-2-C/results/970069769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10243","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","12:30:00","MST","2022-08-15 19:30:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.561",1.561,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069789","UTAHDWQ_WQX-UTLK220815-4917500-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917500-0815-29-C/results/970069789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10244","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","12:30:00","MST","2022-08-15 19:30:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.561",1.561,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069795","UTAHDWQ_WQX-UTLK220815-4917500-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917500-0815-29-C/results/970069795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10245","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","12:05:00","MST","2022-09-19 19:05:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069828","UTAHDWQ_WQX-UTLK220919-4917500-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917500-0919-2-C/results/970069828/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10246","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","12:05:00","MST","2022-09-19 19:05:00",NA,"0.944",944,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069830","UTAHDWQ_WQX-UTLK220919-4917500-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917500-0919-2-C/results/970069830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10247","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","12:15:00","MST","2022-09-19 19:15:00",NA,"0.901",901,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.429",1.429,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069865","UTAHDWQ_WQX-UTLK220919-4917500-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917500-0919-29-C/results/970069865/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10248","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","12:15:00","MST","2022-09-19 19:15:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.429",1.429,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069868","UTAHDWQ_WQX-UTLK220919-4917500-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"40.1696800000",40.16968,"-111.8716100000",-111.87161,"OK","16020201","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1696800000","-111.8716100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917500-0919-29-C/results/970069868/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10249","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","14:25:00","MST","2022-04-18 21:25:00",NA,"0.782",782,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069883","UTAHDWQ_WQX-UTLK220404-4917520-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917520-0418-2-C/results/970069883/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10250","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","14:25:00","MST","2022-04-18 21:25:00",NA,"0.806",806,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069884","UTAHDWQ_WQX-UTLK220404-4917520-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917520-0418-2-C/results/970069884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10251","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","14:30:00","MST","2022-04-18 21:30:00",NA,"0.764",764,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.411",2.411,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069908","UTAHDWQ_WQX-UTLK220404-4917520-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917520-0418-29-C/results/970069908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10252","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","14:30:00","MST","2022-04-18 21:30:00",NA,"0.754",754,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.411",2.411,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069926","UTAHDWQ_WQX-UTLK220404-4917520-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917520-0418-29-C/results/970069926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10253","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","15:30:00","MST","2022-05-16 22:30:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069932","UTAHDWQ_WQX-UTLK220516-4917520-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917520-0516-2-C/results/970069932/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10254","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","15:30:00","MST","2022-05-16 22:30:00",NA,"0.712",712,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069938","UTAHDWQ_WQX-UTLK220516-4917520-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917520-0516-2-C/results/970069938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10255","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","15:30:00","MST","2022-05-16 22:30:00",NA,"0.636",636,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.263",2.263,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069980","UTAHDWQ_WQX-UTLK220516-4917520-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917520-0516-29-C/results/970069980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10256","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","15:30:00","MST","2022-05-16 22:30:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.263",2.263,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069982","UTAHDWQ_WQX-UTLK220516-4917520-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917520-0516-29-C/results/970069982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10257","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","13:20:00","MST","2022-06-08 20:20:00",NA,"0.69",690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069988","UTAHDWQ_WQX-UTLK220606-4917520-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917520-0608-2-C/results/970069988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10258","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","13:20:00","MST","2022-06-08 20:20:00",NA,"0.78",780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970069992","UTAHDWQ_WQX-UTLK220606-4917520-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917520-0608-2-C/results/970069992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10259","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","13:25:00","MST","2022-06-08 20:25:00",NA,"0.648",648,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.548",1.548,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070014","UTAHDWQ_WQX-UTLK220606-4917520-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917520-0608-29-C/results/970070014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10260","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","13:25:00","MST","2022-06-08 20:25:00",NA,"0.804",804,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.548",1.548,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070034","UTAHDWQ_WQX-UTLK220606-4917520-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917520-0608-29-C/results/970070034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10261","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","14:50:00","MST","2022-07-18 21:50:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070042","UTAHDWQ_WQX-UTLK220718-4917520-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917520-0718-2-C/results/970070042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10262","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","14:50:00","MST","2022-07-18 21:50:00",NA,"0.654",654,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070046","UTAHDWQ_WQX-UTLK220718-4917520-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917520-0718-2-C/results/970070046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10263","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","15:00:00","MST","2022-07-18 22:00:00",NA,"0.705",705,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.438",1.438,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070074","UTAHDWQ_WQX-UTLK220718-4917520-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917520-0718-29-C/results/970070074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10264","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","15:00:00","MST","2022-07-18 22:00:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.438",1.438,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070080","UTAHDWQ_WQX-UTLK220718-4917520-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917520-0718-29-C/results/970070080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10265","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","13:30:00","MST","2022-08-15 20:30:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070100","UTAHDWQ_WQX-UTLK220815-4917520-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917520-0815-2-C/results/970070100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10266","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","13:30:00","MST","2022-08-15 20:30:00",NA,"0.899",899,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070103","UTAHDWQ_WQX-UTLK220815-4917520-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917520-0815-2-C/results/970070103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10267","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","13:40:00","MST","2022-08-15 20:40:00",NA,"0.94",940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.217",1.217,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070137","UTAHDWQ_WQX-UTLK220815-4917520-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917520-0815-29-C/results/970070137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10268","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","13:40:00","MST","2022-08-15 20:40:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.217",1.217,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070139","UTAHDWQ_WQX-UTLK220815-4917520-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917520-0815-29-C/results/970070139/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10269","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:00:00","MST","2022-09-19 20:00:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070149","UTAHDWQ_WQX-UTLK220919-4917520-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917520-0919-2-C/results/970070149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10270","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","13:00:00","MST","2022-09-19 20:00:00",NA,"0.857",857,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070160","UTAHDWQ_WQX-UTLK220919-4917520-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917520-0919-2-C/results/970070160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10271","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","13:10:00","MST","2022-09-19 20:10:00",NA,"0.792",792,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.3",1.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070167","UTAHDWQ_WQX-UTLK220919-4917520-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917520-0919-29-C/results/970070167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10272","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:10:00","MST","2022-09-19 20:10:00",NA,"0.975",975,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.3",1.3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070201","UTAHDWQ_WQX-UTLK220919-4917520-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"40.3421700000",40.34217,"-111.8713300000",-111.87133,"OK","16020201","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3421700000","-111.8713300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917520-0919-29-C/results/970070201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10273","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","09:50:00","MST","2022-05-18 16:50:00",NA,"0.743",743,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070208","UTAHDWQ_WQX-UTLK220516-4917600-0518-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917600-0518-2-C/results/970070208/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10274","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","09:50:00","MST","2022-05-18 16:50:00",NA,"0.957",957,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070218","UTAHDWQ_WQX-UTLK220516-4917600-0518-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917600-0518-2-C/results/970070218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10275","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-07","10:10:00","MST","2022-06-07 17:10:00",NA,"0.845",845,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070227","UTAHDWQ_WQX-UTLK220606-4917600-0607-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917600-0607-2-C/results/970070227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10276","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-07","10:10:00","MST","2022-06-07 17:10:00",NA,"0.708",708,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070231","UTAHDWQ_WQX-UTLK220606-4917600-0607-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917600-0607-2-C/results/970070231/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10277","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:50:00","MST","2022-07-19 17:50:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070249","UTAHDWQ_WQX-UTLK220718-4917600-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917600-0719-2-C/results/970070249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10278","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:50:00","MST","2022-07-19 17:50:00",NA,"1.9",1900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070250","UTAHDWQ_WQX-UTLK220718-4917600-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917600-0719-2-C/results/970070250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10279","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-16","10:45:00","MST","2022-08-16 17:45:00",NA,"1.74",1740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070273","UTAHDWQ_WQX-UTLK220815-4917600-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917600-0816-2-C/results/970070273/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10280","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","10:45:00","MST","2022-08-16 17:45:00",NA,"2.36",2360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070275","UTAHDWQ_WQX-UTLK220815-4917600-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917600-0816-2-C/results/970070275/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10281","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","10:20:00","MST","2022-09-20 17:20:00",NA,"2.76",2760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070278","UTAHDWQ_WQX-UTLK220919-4917600-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917600-0920-2-C/results/970070278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10282","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","10:20:00","MST","2022-09-20 17:20:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070281","UTAHDWQ_WQX-UTLK220919-4917600-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"40.0602400000",40.06024,"-111.8743800000",-111.87438,"OK","16020201","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0602400000","-111.8743800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917600-0920-2-C/results/970070281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10283","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","13:15:00","MST","2022-04-18 20:15:00",NA,"0.863",863,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070306","UTAHDWQ_WQX-UTLK220404-4917708-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917708-0418-2-C/results/970070306/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10284","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","13:15:00","MST","2022-04-18 20:15:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070313","UTAHDWQ_WQX-UTLK220404-4917708-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917708-0418-2-C/results/970070313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10285","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","13:30:00","MST","2022-05-16 20:30:00",NA,"0.859",859,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070327","UTAHDWQ_WQX-UTLK220516-4917708-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917708-0516-2-C/results/970070327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10286","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","13:30:00","MST","2022-05-16 20:30:00",NA,"0.555",555,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070329","UTAHDWQ_WQX-UTLK220516-4917708-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917708-0516-2-C/results/970070329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10287","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","12:00:00","MST","2022-06-08 19:00:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070334","UTAHDWQ_WQX-UTLK220606-4917708-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917708-0608-2-C/results/970070334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10288","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","12:00:00","MST","2022-06-08 19:00:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070335","UTAHDWQ_WQX-UTLK220606-4917708-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917708-0608-2-C/results/970070335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10289","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:15:00","MST","2022-07-18 20:15:00",NA,"1.53",1530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070362","UTAHDWQ_WQX-UTLK220718-4917708-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917708-0718-2-C/results/970070362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10290","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:15:00","MST","2022-07-18 20:15:00",NA,"0.95",950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070370","UTAHDWQ_WQX-UTLK220718-4917708-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917708-0718-2-C/results/970070370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10291","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","11:20:00","MST","2022-08-16 18:20:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070380","UTAHDWQ_WQX-UTLK220815-4917708-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917708-0816-2-C/results/970070380/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10292","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-16","11:20:00","MST","2022-08-16 18:20:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070393","UTAHDWQ_WQX-UTLK220815-4917708-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake at Lincoln Marina (Beach)","Lake",NA,"40.1426000000",40.1426,"-111.8020300000",-111.80203,"OK","16020201","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1426000000","-111.8020300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917708-0816-2-C/results/970070393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10293","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","13:00:00","MST","2022-04-18 20:00:00",NA,"0.831",831,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070409","UTAHDWQ_WQX-UTLK220404-4917710-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917710-0418-2-C/results/970070409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10294","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","13:00:00","MST","2022-04-18 20:00:00",NA,"0.89",890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070410","UTAHDWQ_WQX-UTLK220404-4917710-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917710-0418-2-C/results/970070410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10295","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","13:05:00","MST","2022-04-18 20:05:00",NA,"0.911",911,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.597",2.597,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070420","UTAHDWQ_WQX-UTLK220404-4917710-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917710-0418-29-C/results/970070420/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10296","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","13:05:00","MST","2022-04-18 20:05:00",NA,"0.835",835,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.597",2.597,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070445","UTAHDWQ_WQX-UTLK220404-4917710-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917710-0418-29-C/results/970070445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10297","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","13:15:00","MST","2022-05-16 20:15:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070459","UTAHDWQ_WQX-UTLK220516-4917710-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917710-0516-2-C/results/970070459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10298","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","13:15:00","MST","2022-05-16 20:15:00",NA,"0.775",775,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070463","UTAHDWQ_WQX-UTLK220516-4917710-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917710-0516-2-C/results/970070463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10299","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","13:15:00","MST","2022-05-16 20:15:00",NA,"0.631",631,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.645",2.645,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070474","UTAHDWQ_WQX-UTLK220516-4917710-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917710-0516-29-C/results/970070474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10300","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","13:15:00","MST","2022-05-16 20:15:00",NA,"0.734",734,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.645",2.645,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070498","UTAHDWQ_WQX-UTLK220516-4917710-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917710-0516-29-C/results/970070498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10301","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","11:40:00","MST","2022-06-08 18:40:00",NA,"0.78",780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070505","UTAHDWQ_WQX-UTLK220606-4917710-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917710-0608-2-C/results/970070505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10302","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","11:40:00","MST","2022-06-08 18:40:00",NA,"0.828",828,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070511","UTAHDWQ_WQX-UTLK220606-4917710-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917710-0608-2-C/results/970070511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10303","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","11:45:00","MST","2022-06-08 18:45:00",NA,"0.839",839,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.322",2.322,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070546","UTAHDWQ_WQX-UTLK220606-4917710-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917710-0608-29-C/results/970070546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10304","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","11:45:00","MST","2022-06-08 18:45:00",NA,"0.777",777,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.322",2.322,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070551","UTAHDWQ_WQX-UTLK220606-4917710-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917710-0608-29-C/results/970070551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10305","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:00:00","MST","2022-07-18 20:00:00",NA,"0.718",718,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070559","UTAHDWQ_WQX-UTLK220718-4917710-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917710-0718-2-C/results/970070559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10306","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:00:00","MST","2022-07-18 20:00:00",NA,"0.828",828,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070563","UTAHDWQ_WQX-UTLK220718-4917710-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917710-0718-2-C/results/970070563/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10307","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:10:00","MST","2022-07-18 20:10:00",NA,"0.772",772,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.066",2.066,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070597","UTAHDWQ_WQX-UTLK220718-4917710-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917710-0718-29-C/results/970070597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10308","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:10:00","MST","2022-07-18 20:10:00",NA,"0.788",788,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.066",2.066,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070612","UTAHDWQ_WQX-UTLK220718-4917710-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917710-0718-29-C/results/970070612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10309","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","12:15:00","MST","2022-08-15 19:15:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070617","UTAHDWQ_WQX-UTLK220815-4917710-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917710-0815-2-C/results/970070617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10310","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","12:15:00","MST","2022-08-15 19:15:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070630","UTAHDWQ_WQX-UTLK220815-4917710-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917710-0815-2-C/results/970070630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10311","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","12:25:00","MST","2022-08-15 19:25:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.85",1.85,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070652","UTAHDWQ_WQX-UTLK220815-4917710-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917710-0815-29-C/results/970070652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10312","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","12:25:00","MST","2022-08-15 19:25:00",NA,"0.877",877,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.85",1.85,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070668","UTAHDWQ_WQX-UTLK220815-4917710-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917710-0815-29-C/results/970070668/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10313","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:50:00","MST","2022-09-19 18:50:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070672","UTAHDWQ_WQX-UTLK220919-4917710-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917710-0919-2-C/results/970070672/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10314","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","11:50:00","MST","2022-09-19 18:50:00",NA,"0.853",853,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070681","UTAHDWQ_WQX-UTLK220919-4917710-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917710-0919-2-C/results/970070681/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10315","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","11:55:00","MST","2022-09-19 18:55:00",NA,"0.863",863,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.608",1.608,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070715","UTAHDWQ_WQX-UTLK220919-4917710-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917710-0919-29-C/results/970070715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10316","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:55:00","MST","2022-09-19 18:55:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.608",1.608,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070719","UTAHDWQ_WQX-UTLK220919-4917710-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"40.1577300000",40.15773,"-111.7913300000",-111.79133,"OK","16020201","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577300000","-111.7913300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917710-0919-29-C/results/970070719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10317","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","12:30:00","MST","2022-04-18 19:30:00",NA,"0.865",865,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070724","UTAHDWQ_WQX-UTLK220404-4917715-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917715-0418-2-C/results/970070724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10318","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","12:30:00","MST","2022-04-18 19:30:00",NA,"0.814",814,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070730","UTAHDWQ_WQX-UTLK220404-4917715-0418-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917715-0418-2-C/results/970070730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10319","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","12:35:00","MST","2022-04-18 19:35:00",NA,"0.848",848,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.814",2.814,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070762","UTAHDWQ_WQX-UTLK220404-4917715-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917715-0418-29-C/results/970070762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10320","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","12:35:00","MST","2022-04-18 19:35:00",NA,"0.764",764,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.814",2.814,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070767","UTAHDWQ_WQX-UTLK220404-4917715-0418-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:14:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917715-0418-29-C/results/970070767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10321","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","12:45:00","MST","2022-05-16 19:45:00",NA,"0.733",733,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070786","UTAHDWQ_WQX-UTLK220516-4917715-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917715-0516-2-C/results/970070786/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10322","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","12:45:00","MST","2022-05-16 19:45:00",NA,"0.835",835,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070792","UTAHDWQ_WQX-UTLK220516-4917715-0516-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917715-0516-2-C/results/970070792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10323","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","12:45:00","MST","2022-05-16 19:45:00",NA,"0.684",684,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.42",3.42,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070821","UTAHDWQ_WQX-UTLK220516-4917715-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917715-0516-29-C/results/970070821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10324","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","12:45:00","MST","2022-05-16 19:45:00",NA,"0.734",734,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.42",3.42,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070823","UTAHDWQ_WQX-UTLK220516-4917715-0516-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917715-0516-29-C/results/970070823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10325","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","11:25:00","MST","2022-06-08 18:25:00",NA,"0.914",914,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070837","UTAHDWQ_WQX-UTLK220606-4917715-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917715-0608-2-C/results/970070837/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10326","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","11:25:00","MST","2022-06-08 18:25:00",NA,"0.801",801,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070851","UTAHDWQ_WQX-UTLK220606-4917715-0608-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917715-0608-2-C/results/970070851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10327","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","11:30:00","MST","2022-06-08 18:30:00",NA,"0.751",751,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.422",2.422,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070879","UTAHDWQ_WQX-UTLK220606-4917715-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917715-0608-29-C/results/970070879/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10328","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","11:30:00","MST","2022-06-08 18:30:00",NA,"0.856",856,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.422",2.422,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070887","UTAHDWQ_WQX-UTLK220606-4917715-0608-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917715-0608-29-C/results/970070887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10329","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:40:00","MST","2022-07-18 19:40:00",NA,"0.678",678,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070896","UTAHDWQ_WQX-UTLK220718-4917715-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917715-0718-2-C/results/970070896/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10330","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:40:00","MST","2022-07-18 19:40:00",NA,"0.756",756,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070903","UTAHDWQ_WQX-UTLK220718-4917715-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917715-0718-2-C/results/970070903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10331","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:45:00","MST","2022-07-18 19:45:00",NA,"0.823",823,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.069",2.069,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070910","UTAHDWQ_WQX-UTLK220718-4917715-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917715-0718-29-C/results/970070910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10332","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:45:00","MST","2022-07-18 19:45:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.069",2.069,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070943","UTAHDWQ_WQX-UTLK220718-4917715-0718-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917715-0718-29-C/results/970070943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10333","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","11:50:00","MST","2022-08-15 18:50:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070955","UTAHDWQ_WQX-UTLK220815-4917715-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917715-0815-2-C/results/970070955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10334","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","11:50:00","MST","2022-08-15 18:50:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070960","UTAHDWQ_WQX-UTLK220815-4917715-0815-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917715-0815-2-C/results/970070960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10335","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","12:00:00","MST","2022-08-15 19:00:00",NA,"0.876",876,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.879",1.879,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070969","UTAHDWQ_WQX-UTLK220815-4917715-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917715-0815-29-C/results/970070969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10336","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","12:00:00","MST","2022-08-15 19:00:00",NA,"0.967",967,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.879",1.879,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970070994","UTAHDWQ_WQX-UTLK220815-4917715-0815-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917715-0815-29-C/results/970070994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10337","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:30:00","MST","2022-09-19 18:30:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071005","UTAHDWQ_WQX-UTLK220919-4917715-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917715-0919-2-C/results/970071005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10338","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","11:30:00","MST","2022-09-19 18:30:00",NA,"0.939",939,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071010","UTAHDWQ_WQX-UTLK220919-4917715-0919-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917715-0919-2-C/results/970071010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10339","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","11:40:00","MST","2022-09-19 18:40:00",NA,"0.953",953,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.604",1.604,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071019","UTAHDWQ_WQX-UTLK220919-4917715-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917715-0919-29-C/results/970071019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10340","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:40:00","MST","2022-09-19 18:40:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.604",1.604,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071031","UTAHDWQ_WQX-UTLK220919-4917715-0919-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Utah Lake 1 mile southeast of Bird Island","Lake",NA,"40.1691600000",40.16916,"-111.7772900000",-111.77729,"OK","16020201","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1691600000","-111.7772900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917715-0919-29-C/results/970071031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10341","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","11:00:00","MST","2022-05-18 18:00:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071054","UTAHDWQ_WQX-UTLK220516-4917770-0518-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917770-0518-2-C/results/970071054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10342","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","11:00:00","MST","2022-05-18 18:00:00",NA,"0.601",601,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071065","UTAHDWQ_WQX-UTLK220516-4917770-0518-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917770-0518-2-C/results/970071065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10343","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","11:00:00","MST","2022-05-18 18:00:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.2",1.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071074","UTAHDWQ_WQX-UTLK220516-4917770-0518-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917770-0518-29-C/results/970071074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10344","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","11:00:00","MST","2022-05-18 18:00:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","1.2",1.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071103","UTAHDWQ_WQX-UTLK220516-4917770-0518-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917770-0518-29-C/results/970071103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10345","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-07","11:40:00","MST","2022-06-07 18:40:00",NA,"0.724",724,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071116","UTAHDWQ_WQX-UTLK220606-4917770-0607-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917770-0607-2-C/results/970071116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10346","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-07","11:40:00","MST","2022-06-07 18:40:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071120","UTAHDWQ_WQX-UTLK220606-4917770-0607-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917770-0607-2-C/results/970071120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10347","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:15:00","MST","2022-07-18 19:15:00",NA,"0.813",813,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071128","UTAHDWQ_WQX-UTLK220718-4917770-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917770-0718-2-C/results/970071128/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10348","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:15:00","MST","2022-07-18 19:15:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071134","UTAHDWQ_WQX-UTLK220718-4917770-0718-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917770-0718-2-C/results/970071134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10349","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","12:45:00","MST","2022-09-13 19:45:00",NA,"3.84",3840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071149","UTAHDWQ_WQX-WRI220912-4920010-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","IRRIGATION CANAL AB WEBER R","Canal Irrigation",NA,"41.2835800000",41.28358,"-112.0896600000",-112.08966,"OK","16020102","UTAHDWQ_WQX-4920010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2835800000","-112.0896600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920010-0913-4-C/results/970071149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10350","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","12:45:00","MST","2022-09-13 19:45:00",NA,"3.45",3450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071167","UTAHDWQ_WQX-WRI220912-4920010-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","IRRIGATION CANAL AB WEBER R","Canal Irrigation",NA,"41.2835800000",41.28358,"-112.0896600000",-112.08966,"OK","16020102","UTAHDWQ_WQX-4920010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2835800000","-112.0896600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920010-0913-4-C/results/970071167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10351","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","12:15:00","MST","2022-08-16 19:15:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071381","UTAHDWQ_WQX-UTLK220815-4917770-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917770-0816-2-C/results/970071381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10352","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-16","12:15:00","MST","2022-08-16 19:15:00",NA,"0.793",793,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071387","UTAHDWQ_WQX-UTLK220815-4917770-0816-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917770-0816-2-C/results/970071387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10353","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:40:00","MST","2022-09-20 18:40:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071400","UTAHDWQ_WQX-UTLK220919-4917770-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917770-0920-2-C/results/970071400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10354","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:40:00","MST","2022-09-20 18:40:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071405","UTAHDWQ_WQX-UTLK220919-4917770-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"40.1885700000",40.18857,"-111.7313100000",-111.73131,"OK","16020201","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1885700000","-111.7313100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917770-0920-2-C/results/970071405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10355","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","12:55:00","MST","2022-05-23 19:55:00",NA,"17.1",17100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071416","UTAHDWQ_WQX-WRI220509-4920030-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920030-0523-4-C/results/970071416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10356","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","12:55:00","MST","2022-05-23 19:55:00",NA,"18.8",18800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071423","UTAHDWQ_WQX-WRI220509-4920030-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920030-0523-4-C/results/970071423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10357","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","12:35:00","MST","2022-07-11 19:35:00",NA,"4.74",4740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071430","UTAHDWQ_WQX-WRI220711-4920030-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920030-0711-4-C/results/970071430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10358","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","12:35:00","MST","2022-07-11 19:35:00",NA,"7.57",7570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071433","UTAHDWQ_WQX-WRI220711-4920030-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920030-0711-4-C/results/970071433/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10359","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","13:10:00","MST","2022-09-13 20:10:00",NA,"8.77",8770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071438","UTAHDWQ_WQX-WRI220912-4920030-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920030-0913-4-C/results/970071438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10360","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","13:10:00","MST","2022-09-13 20:10:00",NA,"7.22",7220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071442","UTAHDWQ_WQX-WRI220912-4920030-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PLAIN CITY LAGOONS","Facility Other",NA,"41.3105500000",41.31055,"-112.1013500000",-112.10135,"OK","16020102","UTAHDWQ_WQX-4920030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3105500000","-112.1013500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920030-0913-4-C/results/970071442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10361","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","12:10:00","MST","2022-04-04 19:10:00",NA,"8.54",8540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071523","UTAHDWQ_WQX-WRI220404-4920048-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920048-0404-4-C/results/970071523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10362","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","12:10:00","MST","2022-04-04 19:10:00",NA,"8.91",8910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071545","UTAHDWQ_WQX-WRI220404-4920048-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920048-0404-4-C/results/970071545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","12:30:00","MST","2022-05-23 19:30:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071565","UTAHDWQ_WQX-WRI220509-4920048-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920048-0523-4-C/results/970071565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10364","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","12:30:00","MST","2022-05-23 19:30:00",NA,"0.665",665,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071579","UTAHDWQ_WQX-WRI220509-4920048-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920048-0523-4-C/results/970071579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10365","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","15:00:00","MST","2022-06-13 22:00:00",NA,"0.738",738,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071607","UTAHDWQ_WQX-WRI220613-4920048-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920048-0613-4-C/results/970071607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10366","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","15:00:00","MST","2022-06-13 22:00:00",NA,"0.697",697,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071617","UTAHDWQ_WQX-WRI220613-4920048-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920048-0613-4-C/results/970071617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10367","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","12:10:00","MST","2022-07-11 19:10:00",NA,"0.559",559,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071639","UTAHDWQ_WQX-WRI220711-4920048-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920048-0711-4-C/results/970071639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10368","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","12:10:00","MST","2022-07-11 19:10:00",NA,"0.387",387,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071652","UTAHDWQ_WQX-WRI220711-4920048-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920048-0711-4-C/results/970071652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10369","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","11:50:00","MST","2022-08-01 18:50:00",NA,"0.751",751,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071684","UTAHDWQ_WQX-WRI220801-4920048-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920048-0801-4-C/results/970071684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10370","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","11:50:00","MST","2022-08-01 18:50:00",NA,"0.693",693,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071721","UTAHDWQ_WQX-WRI220801-4920048-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920048-0801-4-C/results/970071721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10371","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","12:30:00","MST","2022-09-13 19:30:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071735","UTAHDWQ_WQX-WRI220912-4920048-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920048-0913-4-C/results/970071735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10372","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","12:30:00","MST","2022-09-13 19:30:00",NA,"1.27",1270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071747","UTAHDWQ_WQX-WRI220912-4920048-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY Replicate of 4920050","River/Stream","Replicate of 4920050","41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920048-0913-4-C/results/970071747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10373","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","12:05:00","MST","2022-04-04 19:05:00",NA,"8.91",8910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071764","UTAHDWQ_WQX-WRI220404-4920050-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920050-0404-4-C/results/970071764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10374","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","12:05:00","MST","2022-04-04 19:05:00",NA,"8.7",8700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071772","UTAHDWQ_WQX-WRI220404-4920050-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920050-0404-4-C/results/970071772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10375","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","12:25:00","MST","2022-05-23 19:25:00",NA,"0.6",600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071830","UTAHDWQ_WQX-WRI220509-4920050-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920050-0523-4-C/results/970071830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10376","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","12:25:00","MST","2022-05-23 19:25:00",NA,"0.52",520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071834","UTAHDWQ_WQX-WRI220509-4920050-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920050-0523-4-C/results/970071834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10377","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","14:55:00","MST","2022-06-13 21:55:00",NA,"0.754",754,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071883","UTAHDWQ_WQX-WRI220613-4920050-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920050-0613-4-C/results/970071883/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10378","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","14:55:00","MST","2022-06-13 21:55:00",NA,"0.894",894,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071888","UTAHDWQ_WQX-WRI220613-4920050-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920050-0613-4-C/results/970071888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10379","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","12:00:00","MST","2022-07-11 19:00:00",NA,"2.18",2180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071904","UTAHDWQ_WQX-WRI220711-4920050-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920050-0711-4-C/results/970071904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10380","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","12:00:00","MST","2022-07-11 19:00:00",NA,"1.65",1650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071922","UTAHDWQ_WQX-WRI220711-4920050-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920050-0711-4-C/results/970071922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10381","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","11:40:00","MST","2022-08-01 18:40:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071937","UTAHDWQ_WQX-WRI220801-4920050-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920050-0801-4-C/results/970071937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10382","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","11:40:00","MST","2022-08-01 18:40:00",NA,"0.584",584,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071966","UTAHDWQ_WQX-WRI220801-4920050-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920050-0801-4-C/results/970071966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10383","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","12:15:00","MST","2022-09-13 19:15:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970071998","UTAHDWQ_WQX-WRI220912-4920050-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920050-0913-4-C/results/970071998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10384","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","12:15:00","MST","2022-09-13 19:15:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072010","UTAHDWQ_WQX-WRI220912-4920050-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R S OF PLAIN CITY","River/Stream",NA,"41.2780000000",41.278,"-112.0924500000",-112.09245,"OK","16020102","UTAHDWQ_WQX-4920050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2780000000","-112.0924500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920050-0913-4-C/results/970072010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10385","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","13:00:00","MST","2022-04-04 20:00:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072154","UTAHDWQ_WQX-WRI220404-4920062-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920062-0404-4-C/results/970072154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10386","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","13:00:00","MST","2022-04-04 20:00:00",NA,"0.757",757,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072171","UTAHDWQ_WQX-WRI220404-4920062-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920062-0404-4-C/results/970072171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10387","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","13:30:00","MST","2022-05-23 20:30:00",NA,"0.533",533,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072181","UTAHDWQ_WQX-WRI220509-4920062-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920062-0523-4-C/results/970072181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10388","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","13:30:00","MST","2022-05-23 20:30:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072182","UTAHDWQ_WQX-WRI220509-4920062-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920062-0523-4-C/results/970072182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10389","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","16:00:00","MST","2022-06-13 23:00:00",NA,"0.831",831,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072187","UTAHDWQ_WQX-WRI220613-4920062-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920062-0613-4-C/results/970072187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10390","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","16:00:00","MST","2022-06-13 23:00:00",NA,"2.22",2220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072204","UTAHDWQ_WQX-WRI220613-4920062-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920062-0613-4-C/results/970072204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10391","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","13:15:00","MST","2022-07-11 20:15:00",NA,"0.537",537,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072214","UTAHDWQ_WQX-WRI220711-4920062-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920062-0711-4-C/results/970072214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10392","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","13:15:00","MST","2022-07-11 20:15:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072215","UTAHDWQ_WQX-WRI220711-4920062-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920062-0711-4-C/results/970072215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10393","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","12:50:00","MST","2022-08-01 19:50:00",NA,"0.698",698,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072226","UTAHDWQ_WQX-WRI220801-4920062-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920062-0801-4-C/results/970072226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10394","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","12:50:00","MST","2022-08-01 19:50:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072246","UTAHDWQ_WQX-WRI220801-4920062-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920062-0801-4-C/results/970072246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10395","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","13:50:00","MST","2022-09-13 20:50:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072249","UTAHDWQ_WQX-WRI220912-4920062-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920062-0913-4-C/results/970072249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10396","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","13:50:00","MST","2022-09-13 20:50:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072252","UTAHDWQ_WQX-WRI220912-4920062-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville","River/Stream",NA,"41.2692500000",41.26925,"-112.0284500000",-112.02845,"OK","16020102","UTAHDWQ_WQX-4920062",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2692500000","-112.0284500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920062-0913-4-C/results/970072252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10397","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","08:00:00","MST","2022-04-05 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072269","UTAHDWQ_WQX-WRI220404-4920097-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0405-4-C/results/970072269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10398","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","08:00:00","MST","2022-04-05 15:00:00",NA,"0.495",495,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072293","UTAHDWQ_WQX-WRI220404-4920097-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0405-4-C/results/970072293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10399","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","15:30:00","MST","2022-04-05 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072303","UTAHDWQ_WQX-WRI220404-4920097-0405-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0405-4%2F1-C/results/970072303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10400","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","15:30:00","MST","2022-04-05 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072313","UTAHDWQ_WQX-WRI220404-4920097-0405-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0405-4%2F1-C/results/970072313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10401","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","14:40:00","MST","2022-04-06 21:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072332","UTAHDWQ_WQX-WRI220404-4920097-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0406-4-C/results/970072332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10402","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","14:40:00","MST","2022-04-06 21:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072345","UTAHDWQ_WQX-WRI220404-4920097-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0406-4-C/results/970072345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10403","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","15:45:00","MST","2022-05-23 22:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072371","UTAHDWQ_WQX-WRI220509-4920097-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0523-4-C/results/970072371/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10404","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","15:45:00","MST","2022-05-23 22:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072391","UTAHDWQ_WQX-WRI220509-4920097-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0523-4-C/results/970072391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10405","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","16:00:00","MST","2022-05-24 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072397","UTAHDWQ_WQX-WRI220509-4920097-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0524-4-C/results/970072397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10406","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","16:00:00","MST","2022-05-24 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072398","UTAHDWQ_WQX-WRI220509-4920097-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0524-4-C/results/970072398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10407","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","16:00:00","MST","2022-05-25 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072403","UTAHDWQ_WQX-WRI220509-4920097-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0525-4-C/results/970072403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10408","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","16:00:00","MST","2022-05-25 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072410","UTAHDWQ_WQX-WRI220509-4920097-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0525-4-C/results/970072410/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10409","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","08:10:00","MST","2022-06-14 15:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072431","UTAHDWQ_WQX-WRI220613-4920097-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0614-4-C/results/970072431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10410","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","08:10:00","MST","2022-06-14 15:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072451","UTAHDWQ_WQX-WRI220613-4920097-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0614-4-C/results/970072451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10411","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","17:00:00","MST","2022-06-16 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072457","UTAHDWQ_WQX-WRI220613-4920097-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0615-4-C/results/970072457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10412","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","17:00:00","MST","2022-06-16 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072459","UTAHDWQ_WQX-WRI220613-4920097-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0615-4-C/results/970072459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10413","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","17:00:00","MST","2022-06-17 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072483","UTAHDWQ_WQX-WRI220613-4920097-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0616-4-C/results/970072483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10414","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","17:00:00","MST","2022-06-17 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072492","UTAHDWQ_WQX-WRI220613-4920097-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:15:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0616-4-C/results/970072492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10415","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-23","15:30:00","MST","2022-06-23 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072517","UTAHDWQ_WQX-WRI220613-4920097-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0623-4-C/results/970072517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10416","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","15:30:00","MST","2022-06-23 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072522","UTAHDWQ_WQX-WRI220613-4920097-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0623-4-C/results/970072522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10417","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","14:30:00","MST","2022-06-29 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072537","UTAHDWQ_WQX-WRI220629-4920097-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920097-0629-4-C/results/970072537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10418","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","14:30:00","MST","2022-06-29 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072543","UTAHDWQ_WQX-WRI220629-4920097-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920097-0629-4-C/results/970072543/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10419","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","16:00:00","MST","2022-06-30 23:00:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Results verified by reanalysis",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072562","UTAHDWQ_WQX-WRI220629-4920097-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920097-0630-4-C/results/970072562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10420","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","16:00:00","MST","2022-06-30 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072578","UTAHDWQ_WQX-WRI220629-4920097-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920097-0630-4-C/results/970072578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10421","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","15:15:00","MST","2022-07-11 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072596","UTAHDWQ_WQX-WRI220711-4920097-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0711-4-C/results/970072596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10422","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","15:15:00","MST","2022-07-11 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072608","UTAHDWQ_WQX-WRI220711-4920097-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0711-4-C/results/970072608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10423","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","15:30:00","MST","2022-07-12 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072629","UTAHDWQ_WQX-WRI220711-4920097-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0712-4-C/results/970072629/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10424","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","15:30:00","MST","2022-07-12 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072635","UTAHDWQ_WQX-WRI220711-4920097-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0712-4-C/results/970072635/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10425","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","14:30:00","MST","2022-07-13 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072637","UTAHDWQ_WQX-WRI220711-4920097-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0713-4-C/results/970072637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10426","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","14:30:00","MST","2022-07-13 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072638","UTAHDWQ_WQX-WRI220711-4920097-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0713-4-C/results/970072638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10427","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","15:00:00","MST","2022-08-01 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072662","UTAHDWQ_WQX-WRI220801-4920097-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0801-4-C/results/970072662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10428","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","15:00:00","MST","2022-08-01 22:00:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072672","UTAHDWQ_WQX-WRI220801-4920097-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0801-4-C/results/970072672/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10429","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","16:00:00","MST","2022-08-02 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072688","UTAHDWQ_WQX-WRI220801-4920097-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0802-4-C/results/970072688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10430","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","16:00:00","MST","2022-08-02 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072703","UTAHDWQ_WQX-WRI220801-4920097-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0802-4-C/results/970072703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10431","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","16:00:00","MST","2022-08-03 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072731","UTAHDWQ_WQX-WRI220801-4920097-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0803-4-C/results/970072731/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10432","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","16:00:00","MST","2022-08-03 23:00:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072733","UTAHDWQ_WQX-WRI220801-4920097-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0803-4-C/results/970072733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10433","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-22","15:30:00","MST","2022-08-22 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072748","UTAHDWQ_WQX-WRI220829-4920097-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4920097-0822-4-C/results/970072748/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10434","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-22","15:30:00","MST","2022-08-22 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072763","UTAHDWQ_WQX-WRI220829-4920097-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4920097-0822-4-C/results/970072763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10435","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-23","18:20:00","MST","2022-08-24 01:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072770","UTAHDWQ_WQX-WRI220829-4920097-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4920097-0823-4-C/results/970072770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10436","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","18:20:00","MST","2022-08-24 01:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072789","UTAHDWQ_WQX-WRI220829-4920097-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4920097-0823-4-C/results/970072789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10437","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","15:30:00","MST","2022-09-13 22:30:00",NA,"0.35",350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072793","UTAHDWQ_WQX-WRI220912-4920097-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0913-4-C/results/970072793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10438","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","15:30:00","MST","2022-09-13 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072828","UTAHDWQ_WQX-WRI220912-4920097-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0913-4-C/results/970072828/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10439","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","15:00:00","MST","2022-09-14 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072835","UTAHDWQ_WQX-WRI220912-4920097-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0914-4-C/results/970072835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10440","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","15:00:00","MST","2022-09-14 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072843","UTAHDWQ_WQX-WRI220912-4920097-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0914-4-C/results/970072843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10441","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","15:05:00","MST","2022-09-15 22:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072845","UTAHDWQ_WQX-WRI220912-4920097-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0915-4-C/results/970072845/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10442","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","15:05:00","MST","2022-09-15 22:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072850","UTAHDWQ_WQX-WRI220912-4920097-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0915-4-C/results/970072850/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10443","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","17:15:00","MST","2022-09-21 00:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072896","UTAHDWQ_WQX-WLA2022-4920097-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0920-4-C/results/970072896/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10444","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","17:15:00","MST","2022-09-21 00:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072900","UTAHDWQ_WQX-WLA2022-4920097-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0920-4-C/results/970072900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10445","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","16:00:00","MST","2022-09-21 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072935","UTAHDWQ_WQX-WLA2022-4920097-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0921-4-C/results/970072935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10446","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","16:00:00","MST","2022-09-21 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072950","UTAHDWQ_WQX-WLA2022-4920097-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0921-4-C/results/970072950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10447","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","16:00:00","MST","2022-09-26 23:00:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072958","UTAHDWQ_WQX-WLA2022-4920097-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0926-4-C/results/970072958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10448","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","16:00:00","MST","2022-09-26 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072966","UTAHDWQ_WQX-WLA2022-4920097-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0926-4-C/results/970072966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10449","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","12:30:00","MST","2022-09-27 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072976","UTAHDWQ_WQX-WLA2022-4920097-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0927-4-C/results/970072976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10450","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","12:30:00","MST","2022-09-27 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072978","UTAHDWQ_WQX-WLA2022-4920097-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0927-4-C/results/970072978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10451","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","16:00:00","MST","2022-09-28 23:00:00",NA,"0.688",688,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072981","UTAHDWQ_WQX-WLA2022-4920097-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0928-4-C/results/970072981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10452","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","16:00:00","MST","2022-09-28 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072988","UTAHDWQ_WQX-WLA2022-4920097-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0928-4-C/results/970072988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10453","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","14:00:00","MST","2022-09-29 21:00:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970072995","UTAHDWQ_WQX-WRI220926-4920097-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4920097-0929-4-C/results/970072995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10454","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-29","14:00:00","MST","2022-09-29 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073003","UTAHDWQ_WQX-WRI220926-4920097-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920097",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4920097-0929-4-C/results/970073003/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10455","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","15:30:00","MST","2022-04-04 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073043","UTAHDWQ_WQX-WRI220404-4920098-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0404-4-C/results/970073043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10456","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","15:30:00","MST","2022-04-04 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073054","UTAHDWQ_WQX-WRI220404-4920098-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0404-4-C/results/970073054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10457","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","16:00:00","MST","2022-04-05 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073082","UTAHDWQ_WQX-WRI220404-4920098-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0405-4-C/results/970073082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10458","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","16:00:00","MST","2022-04-05 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073096","UTAHDWQ_WQX-WRI220404-4920098-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0405-4-C/results/970073096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10459","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","13:40:00","MST","2022-04-06 20:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073104","UTAHDWQ_WQX-WRI220404-4920098-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0406-4-C/results/970073104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10460","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","13:40:00","MST","2022-04-06 20:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073105","UTAHDWQ_WQX-WRI220404-4920098-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0406-4-C/results/970073105/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10461","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","16:15:00","MST","2022-05-09 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073130","UTAHDWQ_WQX-WRI220509-4920098-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0509-4-C/results/970073130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10462","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","16:15:00","MST","2022-05-09 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073137","UTAHDWQ_WQX-WRI220509-4920098-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0509-4-C/results/970073137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10463","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","16:15:00","MST","2022-05-10 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073170","UTAHDWQ_WQX-WRI220509-4920098-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0510-4-C/results/970073170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10464","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","16:15:00","MST","2022-05-10 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073179","UTAHDWQ_WQX-WRI220509-4920098-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0510-4-C/results/970073179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10465","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","14:20:00","MST","2022-05-11 21:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073182","UTAHDWQ_WQX-WRI220509-4920098-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0511-4-C/results/970073182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10466","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","14:20:00","MST","2022-05-11 21:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073185","UTAHDWQ_WQX-WRI220509-4920098-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0511-4-C/results/970073185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10467","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","15:00:00","MST","2022-06-13 22:00:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073223","UTAHDWQ_WQX-WRI220613-4920098-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0613-4-C/results/970073223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10468","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","15:00:00","MST","2022-06-13 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073224","UTAHDWQ_WQX-WRI220613-4920098-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0613-4-C/results/970073224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10469","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","15:30:00","MST","2022-06-14 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073269","UTAHDWQ_WQX-WRI220613-4920098-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0614-4-C/results/970073269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10470","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","15:30:00","MST","2022-06-14 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073285","UTAHDWQ_WQX-WRI220613-4920098-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0614-4-C/results/970073285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10471","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","15:00:00","MST","2022-06-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073316","UTAHDWQ_WQX-WRI220613-4920098-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0616-4-C/results/970073316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10472","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","15:00:00","MST","2022-06-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073322","UTAHDWQ_WQX-WRI220613-4920098-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0616-4-C/results/970073322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10473","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","16:50:00","MST","2022-07-18 23:50:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073357","UTAHDWQ_WQX-WRI220711-4920098-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0718-4-C/results/970073357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10474","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","16:50:00","MST","2022-07-18 23:50:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073369","UTAHDWQ_WQX-WRI220711-4920098-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0718-4-C/results/970073369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10475","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","16:45:00","MST","2022-07-19 23:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073378","UTAHDWQ_WQX-WRI220711-4920098-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0719-4-C/results/970073378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10476","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","16:45:00","MST","2022-07-19 23:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073390","UTAHDWQ_WQX-WRI220711-4920098-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0719-4-C/results/970073390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10477","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","14:30:00","MST","2022-07-20 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073417","UTAHDWQ_WQX-WRI220711-4920098-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0720-4-C/results/970073417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10478","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","14:30:00","MST","2022-07-20 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073425","UTAHDWQ_WQX-WRI220711-4920098-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0720-4-C/results/970073425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10479","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","16:15:00","MST","2022-08-08 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073454","UTAHDWQ_WQX-WRI220801-4920098-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0808-4-C/results/970073454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10480","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","16:15:00","MST","2022-08-08 23:15:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073463","UTAHDWQ_WQX-WRI220801-4920098-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0808-4-C/results/970073463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10481","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","15:00:00","MST","2022-08-09 22:00:00",NA,"0.652",652,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073468","UTAHDWQ_WQX-WRI220801-4920098-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0809-4-C/results/970073468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10482","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","15:00:00","MST","2022-08-09 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073493","UTAHDWQ_WQX-WRI220801-4920098-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0809-4-C/results/970073493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10483","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-10","12:30:00","MST","2022-08-10 19:30:00",NA,"0.31",310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073517","UTAHDWQ_WQX-WRI220801-4920098-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0810-4-C/results/970073517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10484","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-10","12:30:00","MST","2022-08-10 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073520","UTAHDWQ_WQX-WRI220801-4920098-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0810-4-C/results/970073520/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10485","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","15:00:00","MST","2022-09-12 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073537","UTAHDWQ_WQX-WRI220912-4920098-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0912-4-C/results/970073537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10486","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","15:00:00","MST","2022-09-12 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073559","UTAHDWQ_WQX-WRI220912-4920098-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0912-4-C/results/970073559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10487","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","15:30:00","MST","2022-09-13 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073580","UTAHDWQ_WQX-WRI220912-4920098-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0913-4-C/results/970073580/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10488","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","15:30:00","MST","2022-09-13 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073586","UTAHDWQ_WQX-WRI220912-4920098-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0913-4-C/results/970073586/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10489","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","14:40:00","MST","2022-09-14 21:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073622","UTAHDWQ_WQX-WRI220912-4920098-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0914-4-C/results/970073622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10490","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","14:40:00","MST","2022-09-14 21:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073627","UTAHDWQ_WQX-WRI220912-4920098-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4920098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0914-4-C/results/970073627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10491","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","12:45:00","MST","2022-04-04 19:45:00",NA,"10.3",10300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073637","UTAHDWQ_WQX-WRI220404-4920110-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920110-0404-4-C/results/970073637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10492","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","12:45:00","MST","2022-04-04 19:45:00",NA,"10.7",10700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073647","UTAHDWQ_WQX-WRI220404-4920110-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920110-0404-4-C/results/970073647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10493","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","13:10:00","MST","2022-05-23 20:10:00",NA,"8.9",8900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073687","UTAHDWQ_WQX-WRI220509-4920110-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920110-0523-4-C/results/970073687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10494","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","13:10:00","MST","2022-05-23 20:10:00",NA,"8.85",8850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073711","UTAHDWQ_WQX-WRI220509-4920110-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920110-0523-4-C/results/970073711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10495","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","15:50:00","MST","2022-06-13 22:50:00",NA,"8.13",8130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073719","UTAHDWQ_WQX-WRI220613-4920110-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920110-0613-4-C/results/970073719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10496","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","15:50:00","MST","2022-06-13 22:50:00",NA,"7.59",7590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073732","UTAHDWQ_WQX-WRI220613-4920110-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920110-0613-4-C/results/970073732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10497","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","13:00:00","MST","2022-07-11 20:00:00",NA,"8.88",8880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073796","UTAHDWQ_WQX-WRI220711-4920110-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920110-0711-4-C/results/970073796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10498","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","13:00:00","MST","2022-07-11 20:00:00",NA,"9.36",9360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073799","UTAHDWQ_WQX-WRI220711-4920110-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920110-0711-4-C/results/970073799/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10499","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","12:25:00","MST","2022-08-01 19:25:00",NA,"8.3",8300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073811","UTAHDWQ_WQX-WRI220801-4920110-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920110-0801-4-C/results/970073811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10500","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","12:25:00","MST","2022-08-01 19:25:00",NA,"8.12",8120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073813","UTAHDWQ_WQX-WRI220801-4920110-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920110-0801-4-C/results/970073813/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10501","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","13:30:00","MST","2022-09-13 20:30:00",NA,"7.31",7310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073849","UTAHDWQ_WQX-WRI220912-4920110-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920110-0913-4-C/results/970073849/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10502","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","13:30:00","MST","2022-09-13 20:30:00",NA,"6.98",6980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073886","UTAHDWQ_WQX-WRI220912-4920110-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CENTRAL WEBER WWTP 002","Facility Other",NA,"41.2724400000",41.27244,"-112.0459600000",-112.04596,"OK","16020102","UTAHDWQ_WQX-4920110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2724400000","-112.0459600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920110-0913-4-C/results/970073886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10503","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","11:40:00","MST","2022-04-04 18:40:00",NA,"0.696",696,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073952","UTAHDWQ_WQX-WRI220404-4920120-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920120-0404-4-C/results/970073952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10504","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","11:40:00","MST","2022-04-04 18:40:00",NA,"0.883",883,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970073959","UTAHDWQ_WQX-WRI220404-4920120-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:16:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920120-0404-4-C/results/970073959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10505","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","12:05:00","MST","2022-05-23 19:05:00",NA,"0.493",493,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074002","UTAHDWQ_WQX-WRI220509-4920120-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920120-0523-4-C/results/970074002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10506","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","12:05:00","MST","2022-05-23 19:05:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074009","UTAHDWQ_WQX-WRI220509-4920120-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920120-0523-4-C/results/970074009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10507","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","14:00:00","MST","2022-06-13 21:00:00",NA,"0.589",589,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074070","UTAHDWQ_WQX-WRI220613-4920120-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920120-0613-4-C/results/970074070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10508","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","14:00:00","MST","2022-06-13 21:00:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074079","UTAHDWQ_WQX-WRI220613-4920120-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920120-0613-4-C/results/970074079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10509","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","11:35:00","MST","2022-07-11 18:35:00",NA,"0.399",399,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074096","UTAHDWQ_WQX-WRI220711-4920120-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920120-0711-4-C/results/970074096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10510","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","11:15:00","MST","2022-08-01 18:15:00",NA,"0.571",571,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074132","UTAHDWQ_WQX-WRI220801-4920120-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920120-0801-4-C/results/970074132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10511","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","11:15:00","MST","2022-08-01 18:15:00",NA,"0.838",838,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074154","UTAHDWQ_WQX-WRI220801-4920120-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920120-0801-4-C/results/970074154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10512","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","11:40:00","MST","2022-09-13 18:40:00",NA,"0.477",477,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074168","UTAHDWQ_WQX-WRI220912-4920120-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920120-0913-4-C/results/970074168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10513","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","11:40:00","MST","2022-09-13 18:40:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074202","UTAHDWQ_WQX-WRI220912-4920120-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CENTRAL WEBER WWTP","River/Stream",NA,"41.2513300000",41.25133,"-112.0457800000",-112.04578,"OK","16020102","UTAHDWQ_WQX-4920120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2513300000","-112.0457800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920120-0913-4-C/results/970074202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10514","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-05","13:30:00","MST","2022-07-05 20:30:00",NA,"0.353",353,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074397","UTAHDWQ_WQX-LAKES220705-4920350-0705-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"41.3505000000",41.3505,"-112.0680000000",-112.068,"OK","16020102","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3505000000","-112.0680000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920350-0705-4-C/results/970074397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10515","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-05","13:30:00","MST","2022-07-05 20:30:00",NA,"0.394",394,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074401","UTAHDWQ_WQX-LAKES220705-4920350-0705-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"41.3505000000",41.3505,"-112.0680000000",-112.068,"OK","16020102","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3505000000","-112.0680000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920350-0705-4-C/results/970074401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10516","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-05","10:20:00","MST","2022-07-05 17:20:00",NA,"0.703",703,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074432","UTAHDWQ_WQX-LAKES220705-4920440-0705-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920440-0705-2-C/results/970074432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10517","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-05","10:20:00","MST","2022-07-05 17:20:00",NA,"0.395",395,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074436","UTAHDWQ_WQX-LAKES220705-4920440-0705-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920440-0705-2-C/results/970074436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10518","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-05","10:35:00","MST","2022-07-05 17:35:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074444","UTAHDWQ_WQX-LAKES220705-4920440-0705-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920440-0705-29-C/results/970074444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10519","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-05","10:35:00","MST","2022-07-05 17:35:00",NA,"0.429",429,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074446","UTAHDWQ_WQX-LAKES220705-4920440-0705-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"41.3574400000",41.35744,"-112.0832800000",-112.08328,"OK","16020102","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3574400000","-112.0832800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920440-0705-29-C/results/970074446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10520","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-05","11:25:00","MST","2022-07-05 18:25:00",NA,"0.39",390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074457","UTAHDWQ_WQX-LAKES220705-4920450-0705-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920450-0705-2-C/results/970074457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10521","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-05","11:25:00","MST","2022-07-05 18:25:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074460","UTAHDWQ_WQX-LAKES220705-4920450-0705-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920450-0705-2-C/results/970074460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10522","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-05","11:40:00","MST","2022-07-05 18:40:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074466","UTAHDWQ_WQX-LAKES220705-4920450-0705-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920450-0705-29-C/results/970074466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10523","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-05","11:40:00","MST","2022-07-05 18:40:00",NA,"0.513",513,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074469","UTAHDWQ_WQX-LAKES220705-4920450-0705-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"41.3513300000",41.35133,"-112.1188300000",-112.11883,"OK","16020102","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3513300000","-112.1188300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920450-0705-29-C/results/970074469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10524","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-05","12:05:00","MST","2022-07-05 19:05:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074473","UTAHDWQ_WQX-LAKES220705-4920460-0705-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920460-0705-2-C/results/970074473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10525","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-05","12:05:00","MST","2022-07-05 19:05:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074478","UTAHDWQ_WQX-LAKES220705-4920460-0705-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920460-0705-2-C/results/970074478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10526","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-05","12:20:00","MST","2022-07-05 19:20:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.5",3.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074487","UTAHDWQ_WQX-LAKES220705-4920460-0705-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920460-0705-29-C/results/970074487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10527","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-05","12:20:00","MST","2022-07-05 19:20:00",NA,"0.364",364,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.5",3.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074490","UTAHDWQ_WQX-LAKES220705-4920460-0705-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"41.3943800000",41.39438,"-112.0960600000",-112.09606,"OK","16020102","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3943800000","-112.0960600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920460-0705-29-C/results/970074490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10528","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-05","12:45:00","MST","2022-07-05 19:45:00",NA,"0.804",804,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074497","UTAHDWQ_WQX-LAKES220705-4920470-0705-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920470-0705-2-C/results/970074497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10529","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-05","12:45:00","MST","2022-07-05 19:45:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074503","UTAHDWQ_WQX-LAKES220705-4920470-0705-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920470-0705-2-C/results/970074503/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10530","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-05","12:55:00","MST","2022-07-05 19:55:00",NA,"0.387",387,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074524","UTAHDWQ_WQX-LAKES220705-4920470-0705-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920470-0705-29-C/results/970074524/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10531","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-05","12:55:00","MST","2022-07-05 19:55:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2.5",2.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074531","UTAHDWQ_WQX-LAKES220705-4920470-0705-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"41.4068800000",41.40688,"-112.0602200000",-112.06022,"OK","16020102","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.4068800000","-112.0602200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920470-0705-29-C/results/970074531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10532","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","09:15:00","MST","2022-04-04 16:15:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074545","UTAHDWQ_WQX-WRI220404-4920973-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920973-0404-4-C/results/970074545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10533","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","09:15:00","MST","2022-04-04 16:15:00",NA,"0.318",318,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074552","UTAHDWQ_WQX-WRI220404-4920973-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920973-0404-4-C/results/970074552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10534","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","09:25:00","MST","2022-05-23 16:25:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074561","UTAHDWQ_WQX-WRI220509-4920973-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920973-0523-4-C/results/970074561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13815","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","09:25:00","MST","2022-05-23 16:25:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074563","UTAHDWQ_WQX-WRI220509-4920973-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920973-0523-4-C/results/970074563/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13816","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","11:00:00","MST","2022-06-13 18:00:00",NA,"0.779",779,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074568","UTAHDWQ_WQX-WRI220613-4920973-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920973-0613-4-C/results/970074568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13817","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","11:00:00","MST","2022-06-13 18:00:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074572","UTAHDWQ_WQX-WRI220613-4920973-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920973-0613-4-C/results/970074572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13818","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","08:30:00","MST","2022-06-29 15:30:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074596","UTAHDWQ_WQX-WRI220629-4920973-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920973-0629-4-C/results/970074596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13819","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","08:30:00","MST","2022-06-29 15:30:00",NA,"0.284",284,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074610","UTAHDWQ_WQX-WRI220629-4920973-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920973-0629-4-C/results/970074610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13820","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","10:03:00","MST","2022-07-11 17:03:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074624","UTAHDWQ_WQX-WRI220711-4920973-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920973-0711-4-C/results/970074624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13821","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","10:03:00","MST","2022-07-11 17:03:00",NA,"0.633",633,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074627","UTAHDWQ_WQX-WRI220711-4920973-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920973-0711-4-C/results/970074627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13822","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","08:50:00","MST","2022-08-01 15:50:00",NA,"0.277",277,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074650","UTAHDWQ_WQX-WRI220801-4920973-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920973-0801-4-C/results/970074650/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13823","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","08:50:00","MST","2022-08-01 15:50:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074653","UTAHDWQ_WQX-WRI220801-4920973-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920973-0801-4-C/results/970074653/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13824","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","09:15:00","MST","2022-09-13 16:15:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074658","UTAHDWQ_WQX-WRI220912-4920973-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920973-0913-4-C/results/970074658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13825","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","09:15:00","MST","2022-09-13 16:15:00",NA,"0.314",314,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074662","UTAHDWQ_WQX-WRI220912-4920973-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Spring Creek at Bybee Dr Xing","River/Stream",NA,"41.1466200000",41.14662,"-111.9090000000",-111.909,"OK","16020102","UTAHDWQ_WQX-4920973",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1466200000","-111.9090000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920973-0913-4-C/results/970074662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13826","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:05:00","MST","2022-04-05 20:05:00",NA,"0.748",748,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074666","UTAHDWQ_WQX-WRI220404-4920990-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920990-0405-4-C/results/970074666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13827","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:05:00","MST","2022-04-05 20:05:00",NA,"0.747",747,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074683","UTAHDWQ_WQX-WRI220404-4920990-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920990-0405-4-C/results/970074683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13828","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","12:50:00","MST","2022-05-24 19:50:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074697","UTAHDWQ_WQX-WRI220509-4920990-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920990-0524-4-C/results/970074697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13829","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","12:50:00","MST","2022-05-24 19:50:00",NA,"0.684",684,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074700","UTAHDWQ_WQX-WRI220509-4920990-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920990-0524-4-C/results/970074700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13830","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","16:05:00","MST","2022-06-15 23:05:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074706","UTAHDWQ_WQX-WRI220613-4920990-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920990-0615-4-C/results/970074706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13831","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","16:05:00","MST","2022-06-15 23:05:00",NA,"0.661",661,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074723","UTAHDWQ_WQX-WRI220613-4920990-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920990-0615-4-C/results/970074723/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13832","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","12:20:00","MST","2022-07-12 19:20:00",NA,"0.675",675,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074728","UTAHDWQ_WQX-WRI220711-4920990-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920990-0712-4-C/results/970074728/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13833","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","12:20:00","MST","2022-07-12 19:20:00",NA,"0.907",907,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074732","UTAHDWQ_WQX-WRI220711-4920990-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920990-0712-4-C/results/970074732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13834","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","12:50:00","MST","2022-08-02 19:50:00",NA,"0.798",798,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074743","UTAHDWQ_WQX-WRI220801-4920990-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920990-0802-4-C/results/970074743/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13835","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","12:50:00","MST","2022-08-02 19:50:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074755","UTAHDWQ_WQX-WRI220801-4920990-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920990-0802-4-C/results/970074755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13836","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","12:30:00","MST","2022-09-14 19:30:00",NA,"0.88",880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074764","UTAHDWQ_WQX-WRI220912-4920990-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920990-0914-4-C/results/970074764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13837","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","12:30:00","MST","2022-09-14 19:30:00",NA,"0.699",699,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074773","UTAHDWQ_WQX-WRI220912-4920990-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4920990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920990-0914-4-C/results/970074773/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13838","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:00:00","MST","2022-04-05 20:00:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074783","UTAHDWQ_WQX-WRI220404-4921000-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921000-0405-4-C/results/970074783/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13839","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:00:00","MST","2022-04-05 20:00:00",NA,"0.76",760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074789","UTAHDWQ_WQX-WRI220404-4921000-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921000-0405-4-C/results/970074789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13840","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","12:40:00","MST","2022-05-24 19:40:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074801","UTAHDWQ_WQX-WRI220509-4921000-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921000-0524-4-C/results/970074801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13841","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","12:40:00","MST","2022-05-24 19:40:00",NA,"0.94",940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074810","UTAHDWQ_WQX-WRI220509-4921000-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921000-0524-4-C/results/970074810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13842","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","16:00:00","MST","2022-06-15 23:00:00",NA,"0.657",657,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074818","UTAHDWQ_WQX-WRI220613-4921000-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921000-0615-4-C/results/970074818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13843","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","16:00:00","MST","2022-06-15 23:00:00",NA,"0.928",928,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074828","UTAHDWQ_WQX-WRI220613-4921000-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921000-0615-4-C/results/970074828/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13844","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","12:15:00","MST","2022-07-12 19:15:00",NA,"0.831",831,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074840","UTAHDWQ_WQX-WRI220711-4921000-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921000-0712-4-C/results/970074840/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13845","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","12:15:00","MST","2022-07-12 19:15:00",NA,"0.927",927,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074843","UTAHDWQ_WQX-WRI220711-4921000-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921000-0712-4-C/results/970074843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13846","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","12:45:00","MST","2022-08-02 19:45:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074866","UTAHDWQ_WQX-WRI220801-4921000-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921000-0802-4-C/results/970074866/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13847","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","12:45:00","MST","2022-08-02 19:45:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074867","UTAHDWQ_WQX-WRI220801-4921000-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921000-0802-4-C/results/970074867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13848","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","12:20:00","MST","2022-09-14 19:20:00",NA,"0.799",799,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074879","UTAHDWQ_WQX-WRI220912-4921000-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921000-0914-4-C/results/970074879/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13849","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","12:20:00","MST","2022-09-14 19:20:00",NA,"0.732",732,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074883","UTAHDWQ_WQX-WRI220912-4921000-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921000-0914-4-C/results/970074883/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13850","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","16:00:00","MST","2022-09-20 23:00:00",NA,"0.889",889,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074900","UTAHDWQ_WQX-WLA2022-4921000-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0920-4-C/results/970074900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13851","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","16:00:00","MST","2022-09-20 23:00:00",NA,"0.826",826,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074906","UTAHDWQ_WQX-WLA2022-4921000-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0920-4-C/results/970074906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13852","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","15:10:00","MST","2022-09-26 22:10:00",NA,"0.788",788,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074939","UTAHDWQ_WQX-WLA2022-4921000-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0926-4-C/results/970074939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13853","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","15:10:00","MST","2022-09-26 22:10:00",NA,"0.746",746,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074940","UTAHDWQ_WQX-WLA2022-4921000-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0926-4-C/results/970074940/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13854","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","13:50:00","MST","2022-09-28 20:50:00",NA,"0.876",876,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074952","UTAHDWQ_WQX-WLA2022-4921000-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0928-4-C/results/970074952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13855","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","13:50:00","MST","2022-09-28 20:50:00",NA,"0.905",905,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074965","UTAHDWQ_WQX-WLA2022-4921000-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AT GATEWAY TO POWER HOUSE","River/Stream",NA,"41.1368900000",41.13689,"-111.8271700000",-111.82717,"OK","16020102","UTAHDWQ_WQX-4921000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1368900000","-111.8271700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0928-4-C/results/970074965/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13856","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","12:50:00","MST","2022-04-05 19:50:00",NA,"41.8",41800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074978","UTAHDWQ_WQX-WRI220404-4921010-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921010-0405-4-C/results/970074978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13857","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","12:50:00","MST","2022-04-05 19:50:00",NA,"44.6",44600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074979","UTAHDWQ_WQX-WRI220404-4921010-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921010-0405-4-C/results/970074979/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13858","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","12:20:00","MST","2022-05-24 19:20:00",NA,"31.9",31900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074993","UTAHDWQ_WQX-WRI220509-4921010-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921010-0524-4-C/results/970074993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13859","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","12:20:00","MST","2022-05-24 19:20:00",NA,"33.3",33300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970074995","UTAHDWQ_WQX-WRI220509-4921010-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921010-0524-4-C/results/970074995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13860","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","15:35:00","MST","2022-06-15 22:35:00",NA,"36.9",36900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075016","UTAHDWQ_WQX-WRI220613-4921010-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921010-0615-4-C/results/970075016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13861","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","15:35:00","MST","2022-06-15 22:35:00",NA,"35.5",35500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075017","UTAHDWQ_WQX-WRI220613-4921010-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921010-0615-4-C/results/970075017/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13862","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","12:00:00","MST","2022-07-12 19:00:00",NA,"39.2",39200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075035","UTAHDWQ_WQX-WRI220711-4921010-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921010-0712-4-C/results/970075035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13863","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","12:00:00","MST","2022-07-12 19:00:00",NA,"39.5",39500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075037","UTAHDWQ_WQX-WRI220711-4921010-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921010-0712-4-C/results/970075037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13864","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","12:30:00","MST","2022-08-02 19:30:00",NA,"43.6",43600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075054","UTAHDWQ_WQX-WRI220801-4921010-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921010-0802-4-C/results/970075054/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13865","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","12:30:00","MST","2022-08-02 19:30:00",NA,"40.5",40500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075063","UTAHDWQ_WQX-WRI220801-4921010-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921010-0802-4-C/results/970075063/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13866","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","12:00:00","MST","2022-09-14 19:00:00",NA,"10.8",10800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075076","UTAHDWQ_WQX-WRI220912-4921010-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921010-0914-4-C/results/970075076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13867","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","12:00:00","MST","2022-09-14 19:00:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075077","UTAHDWQ_WQX-WRI220912-4921010-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921010-0914-4-C/results/970075077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13868","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","15:00:00","MST","2022-09-20 22:00:00",NA,"11.2",11200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075084","UTAHDWQ_WQX-WLA2022-4921010-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921010-0920-4-C/results/970075084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13869","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","15:00:00","MST","2022-09-20 22:00:00",NA,"10.7",10700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075096","UTAHDWQ_WQX-WLA2022-4921010-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921010-0920-4-C/results/970075096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13870","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","13:15:00","MST","2022-09-28 20:15:00",NA,"9",9000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075130","UTAHDWQ_WQX-WLA2022-4921010-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921010-0928-4-C/results/970075130/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13871","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","13:15:00","MST","2022-09-28 20:15:00",NA,"8.86",8860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075140","UTAHDWQ_WQX-WLA2022-4921010-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MOUNTAIN GREEN LAGOON EFFLUENT","Facility Other",NA,"41.1392300000",41.13923,"-111.8109000000",-111.8109,"OK","16020102","UTAHDWQ_WQX-4921010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1392300000","-111.8109000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921010-0928-4-C/results/970075140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13872","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","11:20:00","MST","2022-04-05 18:20:00",NA,"0.375",375,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075147","UTAHDWQ_WQX-WRI220404-4921113-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921113-0405-4-C/results/970075147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13873","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","11:20:00","MST","2022-04-05 18:20:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075168","UTAHDWQ_WQX-WRI220404-4921113-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921113-0405-4-C/results/970075168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13874","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","12:10:00","MST","2022-05-10 19:10:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075169","UTAHDWQ_WQX-WRI220509-4921113-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921113-0510-4-C/results/970075169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13875","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","12:10:00","MST","2022-05-10 19:10:00",NA,"0.428",428,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075177","UTAHDWQ_WQX-WRI220509-4921113-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921113-0510-4-C/results/970075177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13876","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","14:15:00","MST","2022-06-14 21:15:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075179","UTAHDWQ_WQX-WRI220613-4921113-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921113-0614-4-C/results/970075179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13877","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","14:15:00","MST","2022-06-14 21:15:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075197","UTAHDWQ_WQX-WRI220613-4921113-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921113-0614-4-C/results/970075197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13878","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","14:10:00","MST","2022-06-30 21:10:00",NA,"0.988",988,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075205","UTAHDWQ_WQX-WRI220629-4921113-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4921113-0630-4-C/results/970075205/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13879","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","14:10:00","MST","2022-06-30 21:10:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075214","UTAHDWQ_WQX-WRI220629-4921113-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4921113-0630-4-C/results/970075214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13880","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","12:45:00","MST","2022-07-19 19:45:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075235","UTAHDWQ_WQX-WRI220711-4921113-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921113-0719-4-C/results/970075235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13881","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","12:45:00","MST","2022-07-19 19:45:00",NA,"0.203",203,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Relative Percentage difference (RPD) criteria not within quality control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075240","UTAHDWQ_WQX-WRI220711-4921113-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921113-0719-4-C/results/970075240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13882","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","11:10:00","MST","2022-08-09 18:10:00",NA,"0.565",565,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075254","UTAHDWQ_WQX-WRI220801-4921113-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921113-0809-4-C/results/970075254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13883","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","11:10:00","MST","2022-08-09 18:10:00",NA,"0.477",477,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075266","UTAHDWQ_WQX-WRI220801-4921113-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921113-0809-4-C/results/970075266/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13884","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","11:15:00","MST","2022-09-13 18:15:00",NA,"0.804",804,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075267","UTAHDWQ_WQX-WRI220912-4921113-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921113-0913-4-C/results/970075267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13885","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","11:15:00","MST","2022-09-13 18:15:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075276","UTAHDWQ_WQX-WRI220912-4921113-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","South Fork Weber River Ab Weber River (UT09ST-513)","River/Stream",NA,"40.7489700000",40.74897,"-111.2215300000",-111.22153,"OK","16020101","UTAHDWQ_WQX-4921113",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7489700000","-111.2215300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921113-0913-4-C/results/970075276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13886","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","13:15:00","MST","2022-05-10 20:15:00",NA,"0.333",333,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075283","UTAHDWQ_WQX-WRI220509-4921124-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921124-0510-4-C/results/970075283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13887","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","13:15:00","MST","2022-05-10 20:15:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075286","UTAHDWQ_WQX-WRI220509-4921124-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921124-0510-4-C/results/970075286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13888","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-10","09:50:00","MST","2022-06-10 16:50:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075292","UTAHDWQ_WQX-LAKES220609-4921124-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4921124-0610-4-C/results/970075292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13889","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","13:00:00","MST","2022-06-14 20:00:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075320","UTAHDWQ_WQX-WRI220613-4921124-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921124-0614-4-C/results/970075320/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13890","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","13:00:00","MST","2022-06-14 20:00:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075337","UTAHDWQ_WQX-WRI220613-4921124-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921124-0614-4-C/results/970075337/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12798","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","13:30:00","MST","2022-06-30 20:30:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075352","UTAHDWQ_WQX-WRI220629-4921124-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4921124-0630-4-C/results/970075352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13892","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","13:30:00","MST","2022-06-30 20:30:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075360","UTAHDWQ_WQX-WRI220629-4921124-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4921124-0630-4-C/results/970075360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13893","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","14:00:00","MST","2022-07-19 21:00:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075377","UTAHDWQ_WQX-WRI220711-4921124-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921124-0719-4-C/results/970075377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13894","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","14:00:00","MST","2022-07-19 21:00:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075390","UTAHDWQ_WQX-WRI220711-4921124-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921124-0719-4-C/results/970075390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13895","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","11:45:00","MST","2022-08-09 18:45:00",NA,"0.479",479,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075407","UTAHDWQ_WQX-WRI220801-4921124-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921124-0809-4-C/results/970075407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13896","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","11:45:00","MST","2022-08-09 18:45:00",NA,"0.333",333,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075418","UTAHDWQ_WQX-WRI220801-4921124-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921124-0809-4-C/results/970075418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12804","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","12:20:00","MST","2022-09-13 19:20:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075442","UTAHDWQ_WQX-WRI220912-4921124-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921124-0913-4-C/results/970075442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12805","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","12:20:00","MST","2022-09-13 19:20:00",NA,"0.402",402,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075443","UTAHDWQ_WQX-WRI220912-4921124-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)","River/Stream",NA,"40.7706500000",40.77065,"-111.1047700000",-111.10477,"OK","16020101","UTAHDWQ_WQX-4921124",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7706500000","-111.1047700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921124-0913-4-C/results/970075443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12806","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:30:00","MST","2022-04-05 20:30:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075454","UTAHDWQ_WQX-WRI220404-4921133-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921133-0405-4-C/results/970075454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12807","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:30:00","MST","2022-04-05 20:30:00",NA,"0.71",710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075461","UTAHDWQ_WQX-WRI220404-4921133-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921133-0405-4-C/results/970075461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12808","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","09:30:00","MST","2022-06-16 16:30:00",NA,"0.826",826,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075490","UTAHDWQ_WQX-WRI220613-4921133-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921133-0616-4-C/results/970075490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12809","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","09:30:00","MST","2022-06-16 16:30:00",NA,"0.734",734,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075494","UTAHDWQ_WQX-WRI220613-4921133-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921133-0616-4-C/results/970075494/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12810","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","12:40:00","MST","2022-07-12 19:40:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075504","UTAHDWQ_WQX-WRI220711-4921133-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921133-0712-4-C/results/970075504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13904","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","12:40:00","MST","2022-07-12 19:40:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075509","UTAHDWQ_WQX-WRI220711-4921133-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921133-0712-4-C/results/970075509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12812","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","13:25:00","MST","2022-08-02 20:25:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075515","UTAHDWQ_WQX-WRI220801-4921133-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921133-0802-4-C/results/970075515/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12813","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","13:25:00","MST","2022-08-02 20:25:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075524","UTAHDWQ_WQX-WRI220801-4921133-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921133-0802-4-C/results/970075524/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13907","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","12:40:00","MST","2022-09-14 19:40:00",NA,"0.826",826,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075537","UTAHDWQ_WQX-WRI220912-4921133-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921133-0914-4-C/results/970075537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12815","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","12:40:00","MST","2022-09-14 19:40:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075542","UTAHDWQ_WQX-WRI220912-4921133-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921133-0914-4-C/results/970075542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12816","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","14:20:00","MST","2022-09-20 21:20:00",NA,"0.773",773,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075551","UTAHDWQ_WQX-WLA2022-4921133-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0920-4-C/results/970075551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12817","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","14:20:00","MST","2022-09-20 21:20:00",NA,"0.741",741,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075574","UTAHDWQ_WQX-WLA2022-4921133-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0920-4-C/results/970075574/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12818","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","14:25:00","MST","2022-09-26 21:25:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075606","UTAHDWQ_WQX-WLA2022-4921133-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0926-4-C/results/970075606/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13912","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","14:25:00","MST","2022-09-26 21:25:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075610","UTAHDWQ_WQX-WLA2022-4921133-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0926-4-C/results/970075610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12820","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","12:40:00","MST","2022-09-28 19:40:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075618","UTAHDWQ_WQX-WLA2022-4921133-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0928-4-C/results/970075618/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12821","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","12:40:00","MST","2022-09-28 19:40:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075622","UTAHDWQ_WQX-WLA2022-4921133-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)","River/Stream",NA,"41.1154300000",41.11543,"-111.7670900000",-111.76709,"OK","16020102","UTAHDWQ_WQX-4921133",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1154300000","-111.7670900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0928-4-C/results/970075622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13915","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","10:00:00","MST","2022-04-06 17:00:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075634","UTAHDWQ_WQX-WRI220404-4921143-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921143-0406-4-C/results/970075634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12823","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","10:00:00","MST","2022-04-06 17:00:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075641","UTAHDWQ_WQX-WRI220404-4921143-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921143-0406-4-C/results/970075641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12824","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","09:45:00","MST","2022-05-25 16:45:00",NA,"0.216",216,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075654","UTAHDWQ_WQX-WRI220509-4921143-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921143-0525-4-C/results/970075654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12825","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","09:45:00","MST","2022-05-25 16:45:00",NA,"0.633",633,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075658","UTAHDWQ_WQX-WRI220509-4921143-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921143-0525-4-C/results/970075658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12826","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","12:15:00","MST","2022-06-16 19:15:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075668","UTAHDWQ_WQX-WRI220613-4921143-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921143-0616-4-C/results/970075668/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12827","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","12:15:00","MST","2022-06-16 19:15:00",NA,"0.319",319,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075671","UTAHDWQ_WQX-WRI220613-4921143-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:17:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921143-0616-4-C/results/970075671/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12828","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","09:30:00","MST","2022-07-13 16:30:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075690","UTAHDWQ_WQX-WRI220711-4921143-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921143-0713-4-C/results/970075690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12829","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","09:30:00","MST","2022-07-13 16:30:00",NA,"0.47",470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075691","UTAHDWQ_WQX-WRI220711-4921143-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921143-0713-4-C/results/970075691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12830","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","10:40:00","MST","2022-08-03 17:40:00",NA,"0.418",418,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075702","UTAHDWQ_WQX-WRI220801-4921143-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921143-0803-4-C/results/970075702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12831","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","10:40:00","MST","2022-08-03 17:40:00",NA,"0.456",456,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075705","UTAHDWQ_WQX-WRI220801-4921143-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921143-0803-4-C/results/970075705/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12832","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","10:20:00","MST","2022-09-15 17:20:00",NA,"0.317",317,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075726","UTAHDWQ_WQX-WRI220912-4921143-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921143-0915-4-C/results/970075726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12833","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","10:20:00","MST","2022-09-15 17:20:00",NA,"0.343",343,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075732","UTAHDWQ_WQX-WRI220912-4921143-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)","River/Stream",NA,"40.9806700000",40.98067,"-111.6771300000",-111.67713,"OK","16020102","UTAHDWQ_WQX-4921143",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9806700000","-111.6771300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921143-0915-4-C/results/970075732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13927","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:30:00","MST","2022-04-05 20:30:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075745","UTAHDWQ_WQX-WRI220404-4921149-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)","River/Stream",NA,"40.7544200000",40.75442,"-111.3821300000",-111.38213,"OK","16020101","UTAHDWQ_WQX-4921149",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7544200000","-111.3821300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921149-0405-4-C/results/970075745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13564","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:30:00","MST","2022-04-05 20:30:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075753","UTAHDWQ_WQX-WRI220404-4921149-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)","River/Stream",NA,"40.7544200000",40.75442,"-111.3821300000",-111.38213,"OK","16020101","UTAHDWQ_WQX-4921149",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7544200000","-111.3821300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921149-0405-4-C/results/970075753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10649","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","08:45:00","MST","2022-05-11 15:45:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075763","UTAHDWQ_WQX-WRI220509-4921149-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)","River/Stream",NA,"40.7544200000",40.75442,"-111.3821300000",-111.38213,"OK","16020101","UTAHDWQ_WQX-4921149",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7544200000","-111.3821300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921149-0511-4-C/results/970075763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10650","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","08:45:00","MST","2022-05-11 15:45:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075765","UTAHDWQ_WQX-WRI220509-4921149-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)","River/Stream",NA,"40.7544200000",40.75442,"-111.3821300000",-111.38213,"OK","16020101","UTAHDWQ_WQX-4921149",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7544200000","-111.3821300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921149-0511-4-C/results/970075765/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10651","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","08:10:00","MST","2022-06-16 15:10:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075773","UTAHDWQ_WQX-WRI220613-4921149-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)","River/Stream",NA,"40.7544200000",40.75442,"-111.3821300000",-111.38213,"OK","16020101","UTAHDWQ_WQX-4921149",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7544200000","-111.3821300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921149-0616-4-C/results/970075773/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10652","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","08:10:00","MST","2022-06-16 15:10:00",NA,"0.42",420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075777","UTAHDWQ_WQX-WRI220613-4921149-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)","River/Stream",NA,"40.7544200000",40.75442,"-111.3821300000",-111.38213,"OK","16020101","UTAHDWQ_WQX-4921149",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7544200000","-111.3821300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921149-0616-4-C/results/970075777/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10653","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","10:20:00","MST","2022-04-04 17:20:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075806","UTAHDWQ_WQX-WRI220404-4922736-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922736-0404-4-C/results/970075806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10654","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","10:20:00","MST","2022-04-04 17:20:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075815","UTAHDWQ_WQX-WRI220404-4922736-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922736-0404-4-C/results/970075815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10655","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","10:45:00","MST","2022-05-23 17:45:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075822","UTAHDWQ_WQX-WRI220509-4922736-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922736-0523-4-C/results/970075822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10656","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","10:45:00","MST","2022-05-23 17:45:00",NA,"0.475",475,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075824","UTAHDWQ_WQX-WRI220509-4922736-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922736-0523-4-C/results/970075824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10657","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","12:15:00","MST","2022-06-13 19:15:00",NA,"0.988",988,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075839","UTAHDWQ_WQX-WRI220613-4922736-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922736-0613-4-C/results/970075839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10658","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","12:15:00","MST","2022-06-13 19:15:00",NA,"0.992",992,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075852","UTAHDWQ_WQX-WRI220613-4922736-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922736-0613-4-C/results/970075852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10659","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","09:30:00","MST","2022-06-29 16:30:00",NA,"0.537",537,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075861","UTAHDWQ_WQX-WRI220629-4922736-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4922736-0629-4-C/results/970075861/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10660","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","09:30:00","MST","2022-06-29 16:30:00",NA,"0.516",516,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075881","UTAHDWQ_WQX-WRI220629-4922736-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4922736-0629-4-C/results/970075881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10661","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","11:00:00","MST","2022-07-11 18:00:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075887","UTAHDWQ_WQX-WRI220711-4922736-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922736-0711-4-C/results/970075887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10662","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","11:00:00","MST","2022-07-11 18:00:00",NA,"0.788",788,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075893","UTAHDWQ_WQX-WRI220711-4922736-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922736-0711-4-C/results/970075893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10663","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","09:50:00","MST","2022-08-01 16:50:00",NA,"0.713",713,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075896","UTAHDWQ_WQX-WRI220801-4922736-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922736-0801-4-C/results/970075896/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10664","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","09:50:00","MST","2022-08-01 16:50:00",NA,"0.9",900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075910","UTAHDWQ_WQX-WRI220801-4922736-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922736-0801-4-C/results/970075910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10665","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-22","09:45:00","MST","2022-08-22 16:45:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075921","UTAHDWQ_WQX-WRI220829-4922736-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922736-0822-4-C/results/970075921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10666","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-22","09:45:00","MST","2022-08-22 16:45:00",NA,"0.991",991,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075931","UTAHDWQ_WQX-WRI220829-4922736-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922736-0822-4-C/results/970075931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10667","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","10:20:00","MST","2022-09-13 17:20:00",NA,"2.47",2470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075946","UTAHDWQ_WQX-WRI220912-4922736-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922736-0913-4-C/results/970075946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10668","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","10:20:00","MST","2022-09-13 17:20:00",NA,"2.42",2420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075949","UTAHDWQ_WQX-WRI220912-4922736-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922736-0913-4-C/results/970075949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10669","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","09:15:00","MST","2022-09-28 16:15:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075957","UTAHDWQ_WQX-WRI220926-4922736-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4922736-0928-4-C/results/970075957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10670","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","09:15:00","MST","2022-09-28 16:15:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075980","UTAHDWQ_WQX-WRI220926-4922736-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Sullivan Hollow at about 725 E Patterson Street, Ogden","River/Stream",NA,"41.2089600000",41.20896,"-111.9616500000",-111.96165,"OK","16020102","UTAHDWQ_WQX-4922736",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2089600000","-111.9616500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4922736-0928-4-C/results/970075980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10671","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","10:40:00","MST","2022-04-04 17:40:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970075993","UTAHDWQ_WQX-WRI220404-4922744-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922744-0404-4-C/results/970075993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10672","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","10:40:00","MST","2022-04-04 17:40:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076002","UTAHDWQ_WQX-WRI220404-4922744-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922744-0404-4-C/results/970076002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10673","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","11:10:00","MST","2022-05-23 18:10:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076010","UTAHDWQ_WQX-WRI220509-4922744-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922744-0523-4-C/results/970076010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10674","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","11:10:00","MST","2022-05-23 18:10:00",NA,"0.403",403,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076013","UTAHDWQ_WQX-WRI220509-4922744-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922744-0523-4-C/results/970076013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10675","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","13:10:00","MST","2022-06-13 20:10:00",NA,"0.956",956,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076022","UTAHDWQ_WQX-WRI220613-4922744-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922744-0613-4-C/results/970076022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10676","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","13:10:00","MST","2022-06-13 20:10:00",NA,"0.445",445,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076036","UTAHDWQ_WQX-WRI220613-4922744-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922744-0613-4-C/results/970076036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10677","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","10:30:00","MST","2022-08-01 17:30:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076053","UTAHDWQ_WQX-WRI220801-4922744-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922744-0801-4-C/results/970076053/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10678","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","10:30:00","MST","2022-08-01 17:30:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076069","UTAHDWQ_WQX-WRI220801-4922744-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922744-0801-4-C/results/970076069/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10679","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-22","10:15:00","MST","2022-08-22 17:15:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076076","UTAHDWQ_WQX-WRI220829-4922744-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922744-0822-4-C/results/970076076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10680","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-22","10:15:00","MST","2022-08-22 17:15:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076088","UTAHDWQ_WQX-WRI220829-4922744-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922744-0822-4-C/results/970076088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10681","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","10:40:00","MST","2022-09-13 17:40:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076100","UTAHDWQ_WQX-WRI220912-4922744-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922744-0913-4-C/results/970076100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10682","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","10:40:00","MST","2022-09-13 17:40:00",NA,"0.319",319,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076104","UTAHDWQ_WQX-WRI220912-4922744-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922744-0913-4-C/results/970076104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10683","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","09:45:00","MST","2022-09-28 16:45:00",NA,"0.314",314,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076119","UTAHDWQ_WQX-WRI220926-4922744-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4922744-0928-4-C/results/970076119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10684","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","09:45:00","MST","2022-09-28 16:45:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076125","UTAHDWQ_WQX-WRI220926-4922744-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Strongs Canyon Creek at Bonneville Shoreline Trail Xing","River/Stream",NA,"41.1972300000",41.19723,"-111.9284800000",-111.92848,"OK","16020102","UTAHDWQ_WQX-4922744",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1972300000","-111.9284800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4922744-0928-4-C/results/970076125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10685","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","09:40:00","MST","2022-04-04 16:40:00",NA,"0.947",947,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076133","UTAHDWQ_WQX-WRI220404-4922756-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922756-0404-4-C/results/970076133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10686","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","09:40:00","MST","2022-04-04 16:40:00",NA,"0.849",849,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076136","UTAHDWQ_WQX-WRI220404-4922756-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922756-0404-4-C/results/970076136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10687","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","10:05:00","MST","2022-05-23 17:05:00",NA,"0.769",769,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076164","UTAHDWQ_WQX-WRI220509-4922756-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922756-0523-4-C/results/970076164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10688","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","10:05:00","MST","2022-05-23 17:05:00",NA,"0.811",811,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076167","UTAHDWQ_WQX-WRI220509-4922756-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922756-0523-4-C/results/970076167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10689","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","11:25:00","MST","2022-06-13 18:25:00",NA,"2.68",2680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076185","UTAHDWQ_WQX-WRI220613-4922756-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922756-0613-4-C/results/970076185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10690","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","11:25:00","MST","2022-06-13 18:25:00",NA,"2.76",2760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076193","UTAHDWQ_WQX-WRI220613-4922756-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922756-0613-4-C/results/970076193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10691","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","10:20:00","MST","2022-07-11 17:20:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076194","UTAHDWQ_WQX-WRI220711-4922756-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922756-0711-4-C/results/970076194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10692","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","10:20:00","MST","2022-07-11 17:20:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076202","UTAHDWQ_WQX-WRI220711-4922756-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922756-0711-4-C/results/970076202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10693","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","09:15:00","MST","2022-08-01 16:15:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076213","UTAHDWQ_WQX-WRI220801-4922756-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922756-0801-4-C/results/970076213/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10694","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","09:15:00","MST","2022-08-01 16:15:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076214","UTAHDWQ_WQX-WRI220801-4922756-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922756-0801-4-C/results/970076214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10695","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","09:35:00","MST","2022-09-13 16:35:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076231","UTAHDWQ_WQX-WRI220912-4922756-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922756-0913-4-C/results/970076231/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10696","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","09:35:00","MST","2022-09-13 16:35:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076234","UTAHDWQ_WQX-WRI220912-4922756-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Burch Creek Dr Xing","River/Stream",NA,"41.1779100000",41.17791,"-111.9670000000",-111.967,"OK","16020102","UTAHDWQ_WQX-4922756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1779100000","-111.9670000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922756-0913-4-C/results/970076234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10697","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","10:00:00","MST","2022-04-04 17:00:00",NA,"0.586",586,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076251","UTAHDWQ_WQX-WRI220404-4922760-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922760-0404-4-C/results/970076251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10698","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","10:00:00","MST","2022-04-04 17:00:00",NA,"0.684",684,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076252","UTAHDWQ_WQX-WRI220404-4922760-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922760-0404-4-C/results/970076252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10699","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","10:25:00","MST","2022-05-23 17:25:00",NA,"0.5",500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076266","UTAHDWQ_WQX-WRI220509-4922760-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922760-0523-4-C/results/970076266/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10700","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","10:25:00","MST","2022-05-23 17:25:00",NA,"0.501",501,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076270","UTAHDWQ_WQX-WRI220509-4922760-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922760-0523-4-C/results/970076270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10701","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","11:50:00","MST","2022-06-13 18:50:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076277","UTAHDWQ_WQX-WRI220613-4922760-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922760-0613-4-C/results/970076277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10702","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","11:50:00","MST","2022-06-13 18:50:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076287","UTAHDWQ_WQX-WRI220613-4922760-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922760-0613-4-C/results/970076287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10703","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","09:10:00","MST","2022-06-29 16:10:00",NA,"0.755",755,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076304","UTAHDWQ_WQX-WRI220629-4922760-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4922760-0629-4-C/results/970076304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10704","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","09:10:00","MST","2022-06-29 16:10:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076305","UTAHDWQ_WQX-WRI220629-4922760-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4922760-0629-4-C/results/970076305/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10705","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","10:45:00","MST","2022-07-11 17:45:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076331","UTAHDWQ_WQX-WRI220711-4922760-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922760-0711-4-C/results/970076331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10706","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","10:45:00","MST","2022-07-11 17:45:00",NA,"0.855",855,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076332","UTAHDWQ_WQX-WRI220711-4922760-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922760-0711-4-C/results/970076332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10707","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","09:30:00","MST","2022-08-01 16:30:00",NA,"0.526",526,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076347","UTAHDWQ_WQX-WRI220801-4922760-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922760-0801-4-C/results/970076347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"10708","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","09:30:00","MST","2022-08-01 16:30:00",NA,"0.589",589,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076357","UTAHDWQ_WQX-WRI220801-4922760-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922760-0801-4-C/results/970076357/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13989","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-22","09:10:00","MST","2022-08-22 16:10:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076368","UTAHDWQ_WQX-WRI220829-4922760-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922760-0822-4-C/results/970076368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13990","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-22","09:10:00","MST","2022-08-22 16:10:00",NA,"0.514",514,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076373","UTAHDWQ_WQX-WRI220829-4922760-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922760-0822-4-C/results/970076373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13991","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","10:00:00","MST","2022-09-13 17:00:00",NA,"0.618",618,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076395","UTAHDWQ_WQX-WRI220912-4922760-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922760-0913-4-C/results/970076395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13992","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","10:00:00","MST","2022-09-13 17:00:00",NA,"0.594",594,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076396","UTAHDWQ_WQX-WRI220912-4922760-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Burch Creek at Old Post Rd Xing","River/Stream",NA,"41.1663400000",41.16634,"-111.9400000000",-111.94,"Imprecise_lessthan3decimaldigits","16020102","UTAHDWQ_WQX-4922760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1663400000","-111.9400000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922760-0913-4-C/results/970076396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13993","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","13:50:00","MST","2022-04-04 20:50:00",NA,"0.741",741,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076403","UTAHDWQ_WQX-WRI220404-4922990-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922990-0404-4-C/results/970076403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13994","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","13:50:00","MST","2022-04-04 20:50:00",NA,"0.693",693,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076412","UTAHDWQ_WQX-WRI220404-4922990-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922990-0404-4-C/results/970076412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13995","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","13:45:00","MST","2022-05-23 20:45:00",NA,"0.577",577,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076428","UTAHDWQ_WQX-WRI220509-4922990-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922990-0523-4-C/results/970076428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13996","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","13:45:00","MST","2022-05-23 20:45:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076432","UTAHDWQ_WQX-WRI220509-4922990-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922990-0523-4-C/results/970076432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13997","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","09:15:00","MST","2022-06-15 16:15:00",NA,"0.591",591,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076447","UTAHDWQ_WQX-WRI220613-4922990-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922990-0615-4-C/results/970076447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13998","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","09:15:00","MST","2022-06-15 16:15:00",NA,"0.662",662,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076456","UTAHDWQ_WQX-WRI220613-4922990-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922990-0615-4-C/results/970076456/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13999","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","13:35:00","MST","2022-07-11 20:35:00",NA,"0.626",626,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076462","UTAHDWQ_WQX-WRI220711-4922990-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922990-0711-4-C/results/970076462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14000","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","13:35:00","MST","2022-07-11 20:35:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076466","UTAHDWQ_WQX-WRI220711-4922990-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922990-0711-4-C/results/970076466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14001","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","13:00:00","MST","2022-08-01 20:00:00",NA,"0.719",719,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076477","UTAHDWQ_WQX-WRI220801-4922990-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922990-0801-4-C/results/970076477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14002","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","13:00:00","MST","2022-08-01 20:00:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076487","UTAHDWQ_WQX-WRI220801-4922990-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922990-0801-4-C/results/970076487/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14003","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","14:10:00","MST","2022-09-13 21:10:00",NA,"0.63",630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076502","UTAHDWQ_WQX-WRI220912-4922990-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922990-0913-4-C/results/970076502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14004","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","14:10:00","MST","2022-09-13 21:10:00",NA,"0.594",594,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076507","UTAHDWQ_WQX-WRI220912-4922990-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WEBER R AB CNFL/ OGDEN R","River/Stream",NA,"41.2288300000",41.22883,"-111.9991100000",-111.99911,"OK","16020102","UTAHDWQ_WQX-4922990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2288300000","-111.9991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922990-0913-4-C/results/970076507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14005","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","14:05:00","MST","2022-04-04 21:05:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076511","UTAHDWQ_WQX-WRI220404-4923010-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923010-0404-4-C/results/970076511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14006","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","14:05:00","MST","2022-04-04 21:05:00",NA,"0.35",350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076523","UTAHDWQ_WQX-WRI220404-4923010-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923010-0404-4-C/results/970076523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14007","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","14:05:00","MST","2022-05-23 21:05:00",NA,"0.44",440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076535","UTAHDWQ_WQX-WRI220509-4923010-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923010-0523-4-C/results/970076535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14008","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","14:05:00","MST","2022-05-23 21:05:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076537","UTAHDWQ_WQX-WRI220509-4923010-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923010-0523-4-C/results/970076537/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14009","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","09:35:00","MST","2022-06-15 16:35:00",NA,"0.488",488,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076550","UTAHDWQ_WQX-WRI220613-4923010-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923010-0615-4-C/results/970076550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14010","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","09:35:00","MST","2022-06-15 16:35:00",NA,"0.541",541,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076554","UTAHDWQ_WQX-WRI220613-4923010-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923010-0615-4-C/results/970076554/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14011","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","14:00:00","MST","2022-07-11 21:00:00",NA,"0.587",587,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076574","UTAHDWQ_WQX-WRI220711-4923010-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923010-0711-4-C/results/970076574/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14012","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","14:00:00","MST","2022-07-11 21:00:00",NA,"1.45",1450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076577","UTAHDWQ_WQX-WRI220711-4923010-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923010-0711-4-C/results/970076577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14013","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","13:15:00","MST","2022-08-01 20:15:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076589","UTAHDWQ_WQX-WRI220801-4923010-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923010-0801-4-C/results/970076589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14014","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","13:15:00","MST","2022-08-01 20:15:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076592","UTAHDWQ_WQX-WRI220801-4923010-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923010-0801-4-C/results/970076592/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14015","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","14:25:00","MST","2022-09-13 21:25:00",NA,"0.479",479,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076607","UTAHDWQ_WQX-WRI220912-4923010-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923010-0913-4-C/results/970076607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14016","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","14:25:00","MST","2022-09-13 21:25:00",NA,"0.86",860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076611","UTAHDWQ_WQX-WRI220912-4923010-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AB CNFL / WEBER R","River/Stream",NA,"41.2357900000",41.23579,"-112.0012500000",-112.00125,"OK","16020102","UTAHDWQ_WQX-4923010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2357900000","-112.0012500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923010-0913-4-C/results/970076611/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14017","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","14:30:00","MST","2022-04-04 21:30:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076696","UTAHDWQ_WQX-WRI220404-4923177-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923177-0404-4-C/results/970076696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14018","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","14:30:00","MST","2022-04-04 21:30:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076698","UTAHDWQ_WQX-WRI220404-4923177-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923177-0404-4-C/results/970076698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14019","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","14:20:00","MST","2022-05-23 21:20:00",NA,"0.661",661,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076706","UTAHDWQ_WQX-WRI220509-4923177-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923177-0523-4-C/results/970076706/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14020","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","14:20:00","MST","2022-05-23 21:20:00",NA,"0.587",587,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076712","UTAHDWQ_WQX-WRI220509-4923177-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923177-0523-4-C/results/970076712/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14021","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","09:55:00","MST","2022-06-15 16:55:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076730","UTAHDWQ_WQX-WRI220613-4923177-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923177-0615-4-C/results/970076730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14022","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","09:55:00","MST","2022-06-15 16:55:00",NA,"1.35",1350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076741","UTAHDWQ_WQX-WRI220613-4923177-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923177-0615-4-C/results/970076741/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14023","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","14:15:00","MST","2022-07-11 21:15:00",NA,"0.606",606,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076746","UTAHDWQ_WQX-WRI220711-4923177-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923177-0711-4-C/results/970076746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14024","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-11","14:15:00","MST","2022-07-11 21:15:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076750","UTAHDWQ_WQX-WRI220711-4923177-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923177-0711-4-C/results/970076750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14025","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","13:40:00","MST","2022-08-01 20:40:00",NA,"0.371",371,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076753","UTAHDWQ_WQX-WRI220801-4923177-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923177-0801-4-C/results/970076753/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14026","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","13:40:00","MST","2022-08-01 20:40:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076761","UTAHDWQ_WQX-WRI220801-4923177-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923177-0801-4-C/results/970076761/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14027","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","14:40:00","MST","2022-09-13 21:40:00",NA,"0.606",606,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076779","UTAHDWQ_WQX-WRI220912-4923177-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923177-0913-4-C/results/970076779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14028","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","14:40:00","MST","2022-09-13 21:40:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076785","UTAHDWQ_WQX-WRI220912-4923177-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Ogden River at Wall Avenue crossing","River/Stream",NA,"41.2342100000",41.23421,"-111.9783800000",-111.97838,"OK","16020102","UTAHDWQ_WQX-4923177",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2342100000","-111.9783800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923177-0913-4-C/results/970076785/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14029","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","09:15:00","MST","2022-04-05 16:15:00",NA,"0.236",236,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076798","UTAHDWQ_WQX-WRI220404-4923200-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923200-0405-4-C/results/970076798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14030","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","09:15:00","MST","2022-04-05 16:15:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076811","UTAHDWQ_WQX-WRI220404-4923200-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923200-0405-4-C/results/970076811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14031","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","09:10:00","MST","2022-05-24 16:10:00",NA,"0.952",952,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076818","UTAHDWQ_WQX-WRI220509-4923200-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923200-0524-4-C/results/970076818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14032","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","09:10:00","MST","2022-05-24 16:10:00",NA,"0.864",864,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076819","UTAHDWQ_WQX-WRI220509-4923200-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923200-0524-4-C/results/970076819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14033","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","10:20:00","MST","2022-06-15 17:20:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076845","UTAHDWQ_WQX-WRI220613-4923200-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923200-0615-4-C/results/970076845/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14034","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","10:20:00","MST","2022-06-15 17:20:00",NA,"0.461",461,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076846","UTAHDWQ_WQX-WRI220613-4923200-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923200-0615-4-C/results/970076846/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14035","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","09:00:00","MST","2022-07-12 16:00:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076857","UTAHDWQ_WQX-WRI220711-4923200-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923200-0712-4-C/results/970076857/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14036","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","09:00:00","MST","2022-07-12 16:00:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076859","UTAHDWQ_WQX-WRI220711-4923200-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923200-0712-4-C/results/970076859/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14037","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","08:50:00","MST","2022-08-02 15:50:00",NA,"0.336",336,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076866","UTAHDWQ_WQX-WRI220801-4923200-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923200-0802-4-C/results/970076866/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14038","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","08:50:00","MST","2022-08-02 15:50:00",NA,"0.769",769,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076872","UTAHDWQ_WQX-WRI220801-4923200-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923200-0802-4-C/results/970076872/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14039","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","08:45:00","MST","2022-09-14 15:45:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076886","UTAHDWQ_WQX-WRI220912-4923200-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923200-0914-4-C/results/970076886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14040","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","08:45:00","MST","2022-09-14 15:45:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076893","UTAHDWQ_WQX-WRI220912-4923200-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING","River/Stream",NA,"41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923200-0914-4-C/results/970076893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14041","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","09:20:00","MST","2022-04-05 16:20:00",NA,"0.236",236,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076897","UTAHDWQ_WQX-WRI220404-4923205-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923205-0405-4-C/results/970076897/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14042","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","09:20:00","MST","2022-04-05 16:20:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076910","UTAHDWQ_WQX-WRI220404-4923205-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923205-0405-4-C/results/970076910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14043","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","09:20:00","MST","2022-05-24 16:20:00",NA,"0.606",606,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076923","UTAHDWQ_WQX-WRI220509-4923205-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923205-0524-4-C/results/970076923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14044","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","09:20:00","MST","2022-05-24 16:20:00",NA,"0.526",526,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076928","UTAHDWQ_WQX-WRI220509-4923205-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923205-0524-4-C/results/970076928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14045","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","10:30:00","MST","2022-06-15 17:30:00",NA,"0.413",413,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076944","UTAHDWQ_WQX-WRI220613-4923205-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923205-0615-4-C/results/970076944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14046","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","10:30:00","MST","2022-06-15 17:30:00",NA,"0.463",463,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076956","UTAHDWQ_WQX-WRI220613-4923205-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923205-0615-4-C/results/970076956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14047","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","09:10:00","MST","2022-07-12 16:10:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076958","UTAHDWQ_WQX-WRI220711-4923205-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923205-0712-4-C/results/970076958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14048","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","09:10:00","MST","2022-07-12 16:10:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076960","UTAHDWQ_WQX-WRI220711-4923205-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923205-0712-4-C/results/970076960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14049","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","09:00:00","MST","2022-08-02 16:00:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076978","UTAHDWQ_WQX-WRI220801-4923205-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923205-0802-4-C/results/970076978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14050","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","09:00:00","MST","2022-08-02 16:00:00",NA,"0.395",395,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076983","UTAHDWQ_WQX-WRI220801-4923205-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923205-0802-4-C/results/970076983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14051","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","09:00:00","MST","2022-09-14 16:00:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970076995","UTAHDWQ_WQX-WRI220912-4923205-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923205-0914-4-C/results/970076995/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14052","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","09:00:00","MST","2022-09-14 16:00:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077001","UTAHDWQ_WQX-WRI220912-4923205-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200","River/Stream","Replicate of 4923200","41.2366300000",41.23663,"-111.9291200000",-111.92912,"OK","16020102","UTAHDWQ_WQX-4923205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2366300000","-111.9291200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923205-0914-4-C/results/970077001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14053","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","13:30:00","MST","2022-06-09 20:30:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077010","UTAHDWQ_WQX-LAKES220609-4923810-0609-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-2-C/results/970077010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14054","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","13:30:00","MST","2022-06-09 20:30:00",NA,"0.662",662,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077013","UTAHDWQ_WQX-LAKES220609-4923810-0609-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-2-C/results/970077013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14055","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","14:00:00","MST","2022-06-09 21:00:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077019","UTAHDWQ_WQX-LAKES220609-4923810-0609-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-23-C/results/970077019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14056","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","14:00:00","MST","2022-06-09 21:00:00",NA,"1.68",1680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077021","UTAHDWQ_WQX-LAKES220609-4923810-0609-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-23-C/results/970077021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14057","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","14:05:00","MST","2022-06-09 21:05:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077028","UTAHDWQ_WQX-LAKES220609-4923810-0609-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-27-C/results/970077028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14058","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","14:05:00","MST","2022-06-09 21:05:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077032","UTAHDWQ_WQX-LAKES220609-4923810-0609-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-27-C/results/970077032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14059","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","14:10:00","MST","2022-06-09 21:10:00",NA,"0.702",702,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18.02",18.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077037","UTAHDWQ_WQX-LAKES220609-4923810-0609-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-29-C/results/970077037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14060","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","14:10:00","MST","2022-06-09 21:10:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18.02",18.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077045","UTAHDWQ_WQX-LAKES220609-4923810-0609-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-29-C/results/970077045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14061","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","09:55:00","MST","2022-09-08 16:55:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077062","UTAHDWQ_WQX-LAKES220907-4923810-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923810-0908-2-C/results/970077062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14062","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","09:55:00","MST","2022-09-08 16:55:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077064","UTAHDWQ_WQX-LAKES220907-4923810-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923810-0908-2-C/results/970077064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14063","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","10:10:00","MST","2022-09-08 17:10:00",NA,"0.276",276,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","13.82",13.82,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077091","UTAHDWQ_WQX-LAKES220907-4923810-0908-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923810-0908-29-C/results/970077091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14064","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","10:10:00","MST","2022-09-08 17:10:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","13.82",13.82,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077096","UTAHDWQ_WQX-LAKES220907-4923810-0908-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01","Lake",NA,"41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923810-0908-29-C/results/970077096/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14065","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","10:25:00","MST","2022-09-08 17:25:00",NA,"0.242",242,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077098","UTAHDWQ_WQX-LAKES220907-4923811-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01 Replicate of 4923810","Lake","Replicate of 4923810","41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923811",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923811-0908-2-C/results/970077098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14066","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","10:25:00","MST","2022-09-08 17:25:00",NA,"0.668",668,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077110","UTAHDWQ_WQX-LAKES220907-4923811-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES AB DAM 01 Replicate of 4923810","Lake","Replicate of 4923810","41.2552200000",41.25522,"-111.8399400000",-111.83994,"OK","16020102","UTAHDWQ_WQX-4923811",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2552200000","-111.8399400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923811-0908-2-C/results/970077110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14067","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","14:30:00","MST","2022-06-09 21:30:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077111","UTAHDWQ_WQX-LAKES220609-4923820-0609-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES S ARM 02","Lake",NA,"41.2577200000",41.25772,"-111.7960500000",-111.79605,"OK","16020102","UTAHDWQ_WQX-4923820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2577200000","-111.7960500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923820-0609-2-C/results/970077111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14068","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","14:30:00","MST","2022-06-09 21:30:00",NA,"0.579",579,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077118","UTAHDWQ_WQX-LAKES220609-4923820-0609-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES S ARM 02","Lake",NA,"41.2577200000",41.25772,"-111.7960500000",-111.79605,"OK","16020102","UTAHDWQ_WQX-4923820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2577200000","-111.7960500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923820-0609-2-C/results/970077118/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14069","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","14:50:00","MST","2022-06-09 21:50:00",NA,"0.489",489,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","9.98",9.98,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077125","UTAHDWQ_WQX-LAKES220609-4923820-0609-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES S ARM 02","Lake",NA,"41.2577200000",41.25772,"-111.7960500000",-111.79605,"OK","16020102","UTAHDWQ_WQX-4923820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2577200000","-111.7960500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923820-0609-29-C/results/970077125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14070","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","14:50:00","MST","2022-06-09 21:50:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","9.98",9.98,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077126","UTAHDWQ_WQX-LAKES220609-4923820-0609-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES S ARM 02","Lake",NA,"41.2577200000",41.25772,"-111.7960500000",-111.79605,"OK","16020102","UTAHDWQ_WQX-4923820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2577200000","-111.7960500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923820-0609-29-C/results/970077126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14071","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","10:55:00","MST","2022-09-08 17:55:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077139","UTAHDWQ_WQX-LAKES220907-4923820-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES S ARM 02","Lake",NA,"41.2577200000",41.25772,"-111.7960500000",-111.79605,"OK","16020102","UTAHDWQ_WQX-4923820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2577200000","-111.7960500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923820-0908-2-C/results/970077139/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14072","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","10:55:00","MST","2022-09-08 17:55:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077141","UTAHDWQ_WQX-LAKES220907-4923820-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES S ARM 02","Lake",NA,"41.2577200000",41.25772,"-111.7960500000",-111.79605,"OK","16020102","UTAHDWQ_WQX-4923820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2577200000","-111.7960500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923820-0908-2-C/results/970077141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14073","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","11:10:00","MST","2022-09-08 18:10:00",NA,"0.398",398,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","7.4",7.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077151","UTAHDWQ_WQX-LAKES220907-4923820-0908-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES S ARM 02","Lake",NA,"41.2577200000",41.25772,"-111.7960500000",-111.79605,"OK","16020102","UTAHDWQ_WQX-4923820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2577200000","-111.7960500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923820-0908-29-C/results/970077151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14074","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","11:10:00","MST","2022-09-08 18:10:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","7.4",7.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077152","UTAHDWQ_WQX-LAKES220907-4923820-0908-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES S ARM 02","Lake",NA,"41.2577200000",41.25772,"-111.7960500000",-111.79605,"OK","16020102","UTAHDWQ_WQX-4923820",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:18:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2577200000","-111.7960500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923820-0908-29-C/results/970077152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14075","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","15:10:00","MST","2022-06-09 22:10:00",NA,"0.704",704,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077154","UTAHDWQ_WQX-LAKES220609-4923830-0609-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES MIDDLE ARM 03","Lake",NA,"41.2713300000",41.27133,"-111.7954900000",-111.79549,"OK","16020102","UTAHDWQ_WQX-4923830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2713300000","-111.7954900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923830-0609-2-C/results/970077154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14076","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","15:10:00","MST","2022-06-09 22:10:00",NA,"0.405",405,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077159","UTAHDWQ_WQX-LAKES220609-4923830-0609-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES MIDDLE ARM 03","Lake",NA,"41.2713300000",41.27133,"-111.7954900000",-111.79549,"OK","16020102","UTAHDWQ_WQX-4923830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2713300000","-111.7954900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923830-0609-2-C/results/970077159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14077","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","15:30:00","MST","2022-06-09 22:30:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","12.03",12.03,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077168","UTAHDWQ_WQX-LAKES220609-4923830-0609-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES MIDDLE ARM 03","Lake",NA,"41.2713300000",41.27133,"-111.7954900000",-111.79549,"OK","16020102","UTAHDWQ_WQX-4923830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2713300000","-111.7954900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923830-0609-29-C/results/970077168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14078","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","15:30:00","MST","2022-06-09 22:30:00",NA,"0.552",552,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","12.03",12.03,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077169","UTAHDWQ_WQX-LAKES220609-4923830-0609-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES MIDDLE ARM 03","Lake",NA,"41.2713300000",41.27133,"-111.7954900000",-111.79549,"OK","16020102","UTAHDWQ_WQX-4923830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2713300000","-111.7954900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923830-0609-29-C/results/970077169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14079","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","11:30:00","MST","2022-09-08 18:30:00",NA,"0.883",883,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077175","UTAHDWQ_WQX-LAKES220907-4923830-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES MIDDLE ARM 03","Lake",NA,"41.2713300000",41.27133,"-111.7954900000",-111.79549,"OK","16020102","UTAHDWQ_WQX-4923830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2713300000","-111.7954900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923830-0908-2-C/results/970077175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14080","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","11:30:00","MST","2022-09-08 18:30:00",NA,"0.304",304,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077183","UTAHDWQ_WQX-LAKES220907-4923830-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES MIDDLE ARM 03","Lake",NA,"41.2713300000",41.27133,"-111.7954900000",-111.79549,"OK","16020102","UTAHDWQ_WQX-4923830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2713300000","-111.7954900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923830-0908-2-C/results/970077183/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14081","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","11:45:00","MST","2022-09-08 18:45:00",NA,"0.355",355,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","8.51",8.51,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077192","UTAHDWQ_WQX-LAKES220907-4923830-0908-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES MIDDLE ARM 03","Lake",NA,"41.2713300000",41.27133,"-111.7954900000",-111.79549,"OK","16020102","UTAHDWQ_WQX-4923830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2713300000","-111.7954900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923830-0908-29-C/results/970077192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14082","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","11:45:00","MST","2022-09-08 18:45:00",NA,"0.726",726,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","8.51",8.51,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077193","UTAHDWQ_WQX-LAKES220907-4923830-0908-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES MIDDLE ARM 03","Lake",NA,"41.2713300000",41.27133,"-111.7954900000",-111.79549,"OK","16020102","UTAHDWQ_WQX-4923830",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2713300000","-111.7954900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923830-0908-29-C/results/970077193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14083","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","15:50:00","MST","2022-06-09 22:50:00",NA,"0.508",508,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077199","UTAHDWQ_WQX-LAKES220609-4923840-0609-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES N ARM 04","Lake",NA,"41.2757800000",41.27578,"-111.8152200000",-111.81522,"OK","16020102","UTAHDWQ_WQX-4923840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2757800000","-111.8152200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923840-0609-2-C/results/970077199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14084","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","11:55:00","MST","2022-09-08 18:55:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077207","UTAHDWQ_WQX-LAKES220907-4923840-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES N ARM 04","Lake",NA,"41.2757800000",41.27578,"-111.8152200000",-111.81522,"OK","16020102","UTAHDWQ_WQX-4923840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2757800000","-111.8152200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923840-0908-2-C/results/970077207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14085","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","11:55:00","MST","2022-09-08 18:55:00",NA,"0.42",420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077214","UTAHDWQ_WQX-LAKES220907-4923840-0908-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES N ARM 04","Lake",NA,"41.2757800000",41.27578,"-111.8152200000",-111.81522,"OK","16020102","UTAHDWQ_WQX-4923840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2757800000","-111.8152200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923840-0908-2-C/results/970077214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14086","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","12:10:00","MST","2022-09-08 19:10:00",NA,"0.295",295,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077218","UTAHDWQ_WQX-LAKES220907-4923840-0908-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES N ARM 04","Lake",NA,"41.2757800000",41.27578,"-111.8152200000",-111.81522,"OK","16020102","UTAHDWQ_WQX-4923840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2757800000","-111.8152200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923840-0908-29-C/results/970077218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14087","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","12:10:00","MST","2022-09-08 19:10:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","6.5",6.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077221","UTAHDWQ_WQX-LAKES220907-4923840-0908-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","PINEVIEW RES N ARM 04","Lake",NA,"41.2757800000",41.27578,"-111.8152200000",-111.81522,"OK","16020102","UTAHDWQ_WQX-4923840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2757800000","-111.8152200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923840-0908-29-C/results/970077221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14088","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","10:15:00","MST","2022-04-05 17:15:00",NA,"1.85",1850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077227","UTAHDWQ_WQX-WRI220404-4923960-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923960-0405-4-C/results/970077227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14089","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","10:15:00","MST","2022-04-05 17:15:00",NA,"1.83",1830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077242","UTAHDWQ_WQX-WRI220404-4923960-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923960-0405-4-C/results/970077242/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14090","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","10:00:00","MST","2022-05-24 17:00:00",NA,"0.914",914,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077256","UTAHDWQ_WQX-WRI220509-4923960-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923960-0524-4-C/results/970077256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14091","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","10:00:00","MST","2022-05-24 17:00:00",NA,"0.822",822,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077258","UTAHDWQ_WQX-WRI220509-4923960-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923960-0524-4-C/results/970077258/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14092","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","12:07:00","MST","2022-06-09 19:07:00",NA,"0.798",798,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077268","UTAHDWQ_WQX-LAKES220609-4923960-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923960-0609-4-C/results/970077268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14093","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","12:07:00","MST","2022-06-09 19:07:00",NA,"0.95",950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077276","UTAHDWQ_WQX-LAKES220609-4923960-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923960-0609-4-C/results/970077276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14094","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","11:40:00","MST","2022-06-15 18:40:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077301","UTAHDWQ_WQX-WRI220613-4923960-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923960-0615-4-C/results/970077301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14095","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","11:40:00","MST","2022-06-15 18:40:00",NA,"0.721",721,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077303","UTAHDWQ_WQX-WRI220613-4923960-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923960-0615-4-C/results/970077303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14096","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","10:00:00","MST","2022-06-29 17:00:00",NA,"0.726",726,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077319","UTAHDWQ_WQX-WRI220629-4923960-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4923960-0629-4-C/results/970077319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14097","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","10:00:00","MST","2022-06-29 17:00:00",NA,"0.718",718,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077343","UTAHDWQ_WQX-WRI220629-4923960-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4923960-0629-4-C/results/970077343/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14098","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","09:45:00","MST","2022-07-12 16:45:00",NA,"0.661",661,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077345","UTAHDWQ_WQX-WRI220711-4923960-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923960-0712-4-C/results/970077345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14099","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","09:45:00","MST","2022-07-12 16:45:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077347","UTAHDWQ_WQX-WRI220711-4923960-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923960-0712-4-C/results/970077347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14100","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","09:40:00","MST","2022-08-02 16:40:00",NA,"0.708",708,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077356","UTAHDWQ_WQX-WRI220801-4923960-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923960-0802-4-C/results/970077356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14101","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","09:40:00","MST","2022-08-02 16:40:00",NA,"0.523",523,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077360","UTAHDWQ_WQX-WRI220801-4923960-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923960-0802-4-C/results/970077360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14102","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-22","11:30:00","MST","2022-08-22 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077382","UTAHDWQ_WQX-WRI220829-4923960-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4923960-0822-4-C/results/970077382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14103","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-22","11:30:00","MST","2022-08-22 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077385","UTAHDWQ_WQX-WRI220829-4923960-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N FK OGDEN R AB PINEVIEW RES AT U166 XING","River/Stream",NA,"41.2955700000",41.29557,"-111.8284200000",-111.82842,"OK","16020102","UTAHDWQ_WQX-4923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2955700000","-111.8284200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4923960-0822-4-C/results/970077385/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14104","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","09:45:00","MST","2022-04-05 16:45:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077413","UTAHDWQ_WQX-WRI220404-4924590-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924590-0405-4-C/results/970077413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14105","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","09:45:00","MST","2022-04-05 16:45:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077424","UTAHDWQ_WQX-WRI220404-4924590-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924590-0405-4-C/results/970077424/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14106","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","09:40:00","MST","2022-05-24 16:40:00",NA,"0.619",619,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077437","UTAHDWQ_WQX-WRI220509-4924590-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924590-0524-4-C/results/970077437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14107","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","09:40:00","MST","2022-05-24 16:40:00",NA,"0.498",498,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077438","UTAHDWQ_WQX-WRI220509-4924590-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924590-0524-4-C/results/970077438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14108","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","11:09:00","MST","2022-06-15 18:09:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077450","UTAHDWQ_WQX-WRI220613-4924590-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924590-0615-4-C/results/970077450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14109","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","11:09:00","MST","2022-06-15 18:09:00",NA,"0.524",524,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077457","UTAHDWQ_WQX-WRI220613-4924590-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924590-0615-4-C/results/970077457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14110","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","09:25:00","MST","2022-07-12 16:25:00",NA,"0.35",350,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077471","UTAHDWQ_WQX-WRI220711-4924590-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924590-0712-4-C/results/970077471/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14111","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","09:25:00","MST","2022-07-12 16:25:00",NA,"0.924",924,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077472","UTAHDWQ_WQX-WRI220711-4924590-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924590-0712-4-C/results/970077472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14112","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","09:20:00","MST","2022-08-02 16:20:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077485","UTAHDWQ_WQX-WRI220801-4924590-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924590-0802-4-C/results/970077485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14113","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","09:20:00","MST","2022-08-02 16:20:00",NA,"0.417",417,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077502","UTAHDWQ_WQX-WRI220801-4924590-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924590-0802-4-C/results/970077502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14114","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","09:10:00","MST","2022-09-14 16:10:00",NA,"0.186",186,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077512","UTAHDWQ_WQX-WRI220912-4924590-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924590-0914-4-C/results/970077512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14115","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","09:10:00","MST","2022-09-14 16:10:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077513","UTAHDWQ_WQX-WRI220912-4924590-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","WHEELER CK AB CNFL / OGDEN R","River/Stream",NA,"41.2532800000",41.25328,"-111.8424400000",-111.84244,"OK","16020102","UTAHDWQ_WQX-4924590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2532800000","-111.8424400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924590-0914-4-C/results/970077513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14116","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","10:45:00","MST","2022-04-05 17:45:00",NA,"2.05",2050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077524","UTAHDWQ_WQX-WRI220404-4924650-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N Fk Ogden R at U162 Xing","River/Stream",NA,"41.3135000000",41.3135,"-111.8409300000",-111.84093,"OK","16020102","UTAHDWQ_WQX-4924650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3135000000","-111.8409300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924650-0405-4-C/results/970077524/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13024","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","10:45:00","MST","2022-04-05 17:45:00",NA,"2.14",2140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077527","UTAHDWQ_WQX-WRI220404-4924650-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N Fk Ogden R at U162 Xing","River/Stream",NA,"41.3135000000",41.3135,"-111.8409300000",-111.84093,"OK","16020102","UTAHDWQ_WQX-4924650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3135000000","-111.8409300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924650-0405-4-C/results/970077527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13025","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","10:15:00","MST","2022-05-24 17:15:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077541","UTAHDWQ_WQX-WRI220509-4924650-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N Fk Ogden R at U162 Xing","River/Stream",NA,"41.3135000000",41.3135,"-111.8409300000",-111.84093,"OK","16020102","UTAHDWQ_WQX-4924650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3135000000","-111.8409300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924650-0524-4-C/results/970077541/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13026","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","10:15:00","MST","2022-05-24 17:15:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077550","UTAHDWQ_WQX-WRI220509-4924650-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N Fk Ogden R at U162 Xing","River/Stream",NA,"41.3135000000",41.3135,"-111.8409300000",-111.84093,"OK","16020102","UTAHDWQ_WQX-4924650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3135000000","-111.8409300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924650-0524-4-C/results/970077550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13027","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","12:00:00","MST","2022-06-15 19:00:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077551","UTAHDWQ_WQX-WRI220613-4924650-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N Fk Ogden R at U162 Xing","River/Stream",NA,"41.3135000000",41.3135,"-111.8409300000",-111.84093,"OK","16020102","UTAHDWQ_WQX-4924650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3135000000","-111.8409300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924650-0615-4-C/results/970077551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14121","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","12:00:00","MST","2022-06-15 19:00:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077571","UTAHDWQ_WQX-WRI220613-4924650-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N Fk Ogden R at U162 Xing","River/Stream",NA,"41.3135000000",41.3135,"-111.8409300000",-111.84093,"OK","16020102","UTAHDWQ_WQX-4924650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3135000000","-111.8409300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924650-0615-4-C/results/970077571/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14122","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","10:20:00","MST","2022-06-29 17:20:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077578","UTAHDWQ_WQX-WRI220629-4924650-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N Fk Ogden R at U162 Xing","River/Stream",NA,"41.3135000000",41.3135,"-111.8409300000",-111.84093,"OK","16020102","UTAHDWQ_WQX-4924650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3135000000","-111.8409300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924650-0629-4-C/results/970077578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14123","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","10:20:00","MST","2022-06-29 17:20:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077600","UTAHDWQ_WQX-WRI220629-4924650-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","N Fk Ogden R at U162 Xing","River/Stream",NA,"41.3135000000",41.3135,"-111.8409300000",-111.84093,"OK","16020102","UTAHDWQ_WQX-4924650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3135000000","-111.8409300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924650-0629-4-C/results/970077600/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14124","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","11:10:00","MST","2022-04-05 18:10:00",NA,"0.454",454,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077609","UTAHDWQ_WQX-WRI220404-4924660-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924660-0405-4-C/results/970077609/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13032","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","11:10:00","MST","2022-04-05 18:10:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077614","UTAHDWQ_WQX-WRI220404-4924660-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924660-0405-4-C/results/970077614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14126","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","10:30:00","MST","2022-05-24 17:30:00",NA,"0.678",678,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077629","UTAHDWQ_WQX-WRI220509-4924660-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924660-0524-4-C/results/970077629/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13034","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","10:30:00","MST","2022-05-24 17:30:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077632","UTAHDWQ_WQX-WRI220509-4924660-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924660-0524-4-C/results/970077632/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14128","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","11:25:00","MST","2022-06-09 18:25:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077643","UTAHDWQ_WQX-LAKES220609-4924660-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924660-0609-4-C/results/970077643/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14129","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","11:25:00","MST","2022-06-09 18:25:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077644","UTAHDWQ_WQX-LAKES220609-4924660-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924660-0609-4-C/results/970077644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13037","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","12:25:00","MST","2022-06-15 19:25:00",NA,"0.483",483,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077680","UTAHDWQ_WQX-WRI220613-4924660-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924660-0615-4-C/results/970077680/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13038","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","12:25:00","MST","2022-06-15 19:25:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077687","UTAHDWQ_WQX-WRI220613-4924660-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924660-0615-4-C/results/970077687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14132","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","10:30:00","MST","2022-06-29 17:30:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077699","UTAHDWQ_WQX-WRI220629-4924660-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924660-0629-4-C/results/970077699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13040","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","10:30:00","MST","2022-06-29 17:30:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077716","UTAHDWQ_WQX-WRI220629-4924660-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924660-0629-4-C/results/970077716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13041","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","10:00:00","MST","2022-07-12 17:00:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077724","UTAHDWQ_WQX-WRI220711-4924660-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924660-0712-4-C/results/970077724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13042","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","10:00:00","MST","2022-07-12 17:00:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077729","UTAHDWQ_WQX-WRI220711-4924660-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924660-0712-4-C/results/970077729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13043","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","10:00:00","MST","2022-08-02 17:00:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077746","UTAHDWQ_WQX-WRI220801-4924660-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924660-0802-4-C/results/970077746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13044","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","10:00:00","MST","2022-08-02 17:00:00",NA,"0.209",209,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077757","UTAHDWQ_WQX-WRI220801-4924660-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","MIDDLE FK OGDEN R U166 XING","River/Stream",NA,"41.2877200000",41.28772,"-111.7771700000",-111.77717,"OK","16020102","UTAHDWQ_WQX-4924660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2877200000","-111.7771700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924660-0802-4-C/results/970077757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13045","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","12:30:00","MST","2022-04-05 19:30:00",NA,"0.574",574,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077764","UTAHDWQ_WQX-WRI220404-4924670-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924670-0405-4-C/results/970077764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13046","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","12:30:00","MST","2022-04-05 19:30:00",NA,"0.517",517,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077773","UTAHDWQ_WQX-WRI220404-4924670-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924670-0405-4-C/results/970077773/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13047","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","12:00:00","MST","2022-05-24 19:00:00",NA,"0.524",524,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077787","UTAHDWQ_WQX-WRI220509-4924670-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924670-0524-4-C/results/970077787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13048","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","12:00:00","MST","2022-05-24 19:00:00",NA,"0.635",635,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077792","UTAHDWQ_WQX-WRI220509-4924670-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924670-0524-4-C/results/970077792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13049","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","09:40:00","MST","2022-06-09 16:40:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077802","UTAHDWQ_WQX-LAKES220609-4924670-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924670-0609-4-C/results/970077802/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13050","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","09:40:00","MST","2022-06-09 16:40:00",NA,"0.434",434,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077822","UTAHDWQ_WQX-LAKES220609-4924670-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924670-0609-4-C/results/970077822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13051","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","15:00:00","MST","2022-06-15 22:00:00",NA,"0.385",385,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077825","UTAHDWQ_WQX-WRI220613-4924670-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924670-0615-4-C/results/970077825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13052","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","15:00:00","MST","2022-06-15 22:00:00",NA,"0.538",538,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077832","UTAHDWQ_WQX-WRI220613-4924670-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924670-0615-4-C/results/970077832/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13053","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","14:30:00","MST","2022-06-15 21:30:00",NA,"0.602",602,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077853","UTAHDWQ_WQX-WRI220613-4924680-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924680-0615-4-C/results/970077853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13054","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","14:30:00","MST","2022-06-15 21:30:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077861","UTAHDWQ_WQX-WRI220613-4924680-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924680-0615-4-C/results/970077861/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13055","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","11:45:00","MST","2022-07-12 18:45:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077882","UTAHDWQ_WQX-WRI220711-4924670-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924670-0712-4-C/results/970077882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13056","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","11:45:00","MST","2022-07-12 18:45:00",NA,"0.276",276,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077883","UTAHDWQ_WQX-WRI220711-4924670-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924670-0712-4-C/results/970077883/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13057","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","12:00:00","MST","2022-08-02 19:00:00",NA,"0.608",608,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077891","UTAHDWQ_WQX-WRI220801-4924670-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924670-0802-4-C/results/970077891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13058","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","12:00:00","MST","2022-08-02 19:00:00",NA,"0.921",921,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077899","UTAHDWQ_WQX-WRI220801-4924670-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924670-0802-4-C/results/970077899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13059","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","11:40:00","MST","2022-09-14 18:40:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077916","UTAHDWQ_WQX-WRI220912-4924670-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924670-0914-4-C/results/970077916/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13060","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","11:40:00","MST","2022-09-14 18:40:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077918","UTAHDWQ_WQX-WRI220912-4924670-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R South Leg bl U166 Xing","River/Stream",NA,"41.2462700000",41.24627,"-111.7648300000",-111.76483,"OK","16020102","UTAHDWQ_WQX-4924670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2462700000","-111.7648300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924670-0914-4-C/results/970077918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13061","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","12:10:00","MST","2022-04-05 19:10:00",NA,"0.593",593,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077935","UTAHDWQ_WQX-WRI220404-4924680-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924680-0405-4-C/results/970077935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13062","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","12:10:00","MST","2022-04-05 19:10:00",NA,"0.696",696,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077938","UTAHDWQ_WQX-WRI220404-4924680-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924680-0405-4-C/results/970077938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13063","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","11:50:00","MST","2022-05-24 18:50:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077950","UTAHDWQ_WQX-WRI220509-4924680-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924680-0524-4-C/results/970077950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13064","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:50:00","MST","2022-05-24 18:50:00",NA,"0.699",699,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077957","UTAHDWQ_WQX-WRI220509-4924680-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924680-0524-4-C/results/970077957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13065","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","10:40:00","MST","2022-06-09 17:40:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077966","UTAHDWQ_WQX-LAKES220609-4924680-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924680-0609-4-C/results/970077966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13066","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","10:40:00","MST","2022-06-09 17:40:00",NA,"0.49",490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077976","UTAHDWQ_WQX-LAKES220609-4924680-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924680-0609-4-C/results/970077976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13067","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","11:30:00","MST","2022-07-12 18:30:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077991","UTAHDWQ_WQX-WRI220711-4924680-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924680-0712-4-C/results/970077991/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13068","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","11:30:00","MST","2022-07-12 18:30:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970077999","UTAHDWQ_WQX-WRI220711-4924680-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924680-0712-4-C/results/970077999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13069","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","11:45:00","MST","2022-08-02 18:45:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078012","UTAHDWQ_WQX-WRI220801-4924680-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924680-0802-4-C/results/970078012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13070","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","11:45:00","MST","2022-08-02 18:45:00",NA,"0.639",639,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078014","UTAHDWQ_WQX-WRI220801-4924680-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924680-0802-4-C/results/970078014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13071","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","11:30:00","MST","2022-09-14 18:30:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078027","UTAHDWQ_WQX-WRI220912-4924680-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924680-0914-4-C/results/970078027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13072","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","11:30:00","MST","2022-09-14 18:30:00",NA,"0.155",155,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078029","UTAHDWQ_WQX-WRI220912-4924680-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R North Leg bl U166 Xing","River/Stream",NA,"41.2489700000",41.24897,"-111.7616100000",-111.76161,"OK","16020102","UTAHDWQ_WQX-4924680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2489700000","-111.7616100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924680-0914-4-C/results/970078029/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13073","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","11:30:00","MST","2022-04-05 18:30:00",NA,"0.335",335,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078037","UTAHDWQ_WQX-WRI220404-4924690-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924690-0405-4-C/results/970078037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13074","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","11:30:00","MST","2022-04-05 18:30:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078047","UTAHDWQ_WQX-WRI220404-4924690-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924690-0405-4-C/results/970078047/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13075","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","10:50:00","MST","2022-05-24 17:50:00",NA,"0.683",683,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078064","UTAHDWQ_WQX-WRI220509-4924690-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924690-0524-4-C/results/970078064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13076","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","10:50:00","MST","2022-05-24 17:50:00",NA,"0.872",872,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078068","UTAHDWQ_WQX-WRI220509-4924690-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924690-0524-4-C/results/970078068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13077","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","13:00:00","MST","2022-06-15 20:00:00",NA,"0.463",463,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078077","UTAHDWQ_WQX-WRI220613-4924690-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924690-0615-4-C/results/970078077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13078","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","13:00:00","MST","2022-06-15 20:00:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078078","UTAHDWQ_WQX-WRI220613-4924690-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924690-0615-4-C/results/970078078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13079","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","10:30:00","MST","2022-07-12 17:30:00",NA,"0.468",468,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078101","UTAHDWQ_WQX-WRI220711-4924690-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924690-0712-4-C/results/970078101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13080","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","10:30:00","MST","2022-07-12 17:30:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078105","UTAHDWQ_WQX-WRI220711-4924690-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924690-0712-4-C/results/970078105/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13081","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","10:15:00","MST","2022-08-02 17:15:00",NA,"0.366",366,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078124","UTAHDWQ_WQX-WRI220801-4924690-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924690-0802-4-C/results/970078124/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13082","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","10:15:00","MST","2022-08-02 17:15:00",NA,"0.88",880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078132","UTAHDWQ_WQX-WRI220801-4924690-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924690-0802-4-C/results/970078132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13083","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","10:30:00","MST","2022-09-14 17:30:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078134","UTAHDWQ_WQX-WRI220912-4924690-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924690-0914-4-C/results/970078134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13084","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","10:30:00","MST","2022-09-14 17:30:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078137","UTAHDWQ_WQX-WRI220912-4924690-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S Fk Ogden R at South Fork Campground","River/Stream",NA,"41.2822000000",41.2822,"-111.6537000000",-111.6537,"OK","16020102","UTAHDWQ_WQX-4924690",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2822000000","-111.6537000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924690-0914-4-C/results/970078137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13085","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:15:00","MST","2022-05-24 18:15:00",NA,"0.821",821,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078148","UTAHDWQ_WQX-WRI220509-4924700-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924700-0524-4-C/results/970078148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13086","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","11:15:00","MST","2022-05-24 18:15:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078151","UTAHDWQ_WQX-WRI220509-4924700-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924700-0524-4-C/results/970078151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14180","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","13:30:00","MST","2022-06-15 20:30:00",NA,"0.63",630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078156","UTAHDWQ_WQX-WRI220613-4924700-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924700-0615-4-C/results/970078156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13088","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","13:30:00","MST","2022-06-15 20:30:00",NA,"0.691",691,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078163","UTAHDWQ_WQX-WRI220613-4924700-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924700-0615-4-C/results/970078163/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13089","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","10:50:00","MST","2022-06-29 17:50:00",NA,"0.557",557,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078181","UTAHDWQ_WQX-WRI220629-4924700-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924700-0629-4-C/results/970078181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14183","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","10:50:00","MST","2022-06-29 17:50:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078183","UTAHDWQ_WQX-WRI220629-4924700-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924700-0629-4-C/results/970078183/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14184","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","10:50:00","MST","2022-07-12 17:50:00",NA,"0.797",797,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078207","UTAHDWQ_WQX-WRI220711-4924700-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924700-0712-4-C/results/970078207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13092","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","10:50:00","MST","2022-07-12 17:50:00",NA,"0.513",513,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078212","UTAHDWQ_WQX-WRI220711-4924700-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924700-0712-4-C/results/970078212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13093","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","10:45:00","MST","2022-08-02 17:45:00",NA,"0.473",473,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078218","UTAHDWQ_WQX-WRI220801-4924700-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924700-0802-4-C/results/970078218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14187","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","10:45:00","MST","2022-08-02 17:45:00",NA,"0.493",493,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078241","UTAHDWQ_WQX-WRI220801-4924700-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924700-0802-4-C/results/970078241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14188","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-22","12:45:00","MST","2022-08-22 19:45:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078257","UTAHDWQ_WQX-WRI220829-4924700-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4924700-0822-4-C/results/970078257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14189","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-22","12:45:00","MST","2022-08-22 19:45:00",NA,"0.314",314,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078259","UTAHDWQ_WQX-WRI220829-4924700-0822-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4924700-0822-4-C/results/970078259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14190","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","10:55:00","MST","2022-09-14 17:55:00",NA,"0.152",152,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078268","UTAHDWQ_WQX-WRI220912-4924700-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924700-0914-4-C/results/970078268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14191","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","10:55:00","MST","2022-09-14 17:55:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078276","UTAHDWQ_WQX-WRI220912-4924700-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924700-0914-4-C/results/970078276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14192","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","11:12:00","MST","2022-09-28 18:12:00",NA,"0.244",244,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078285","UTAHDWQ_WQX-WRI220926-4924700-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4924700-0928-4-C/results/970078285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14193","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","11:12:00","MST","2022-09-28 18:12:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078300","UTAHDWQ_WQX-WRI220926-4924700-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS","River/Stream",NA,"41.2952900000",41.29529,"-111.5965300000",-111.59653,"OK","16020102","UTAHDWQ_WQX-4924700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2952900000","-111.5965300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4924700-0928-4-C/results/970078300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14194","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","11:45:00","MST","2022-04-05 18:45:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078307","UTAHDWQ_WQX-WRI220404-4924710-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924710-0405-4-C/results/970078307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14195","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","11:45:00","MST","2022-04-05 18:45:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078320","UTAHDWQ_WQX-WRI220404-4924710-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924710-0405-4-C/results/970078320/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14196","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","11:00:00","MST","2022-05-24 18:00:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078336","UTAHDWQ_WQX-WRI220509-4924710-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924710-0524-4-C/results/970078336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14197","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:00:00","MST","2022-05-24 18:00:00",NA,"0.485",485,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078339","UTAHDWQ_WQX-WRI220509-4924710-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924710-0524-4-C/results/970078339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14198","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","13:10:00","MST","2022-06-15 20:10:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078353","UTAHDWQ_WQX-WRI220613-4924710-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924710-0615-4-C/results/970078353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14199","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","13:10:00","MST","2022-06-15 20:10:00",NA,"0.22",220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078355","UTAHDWQ_WQX-WRI220613-4924710-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924710-0615-4-C/results/970078355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14200","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","10:45:00","MST","2022-07-12 17:45:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078366","UTAHDWQ_WQX-WRI220711-4924710-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924710-0712-4-C/results/970078366/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14201","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","10:45:00","MST","2022-07-12 17:45:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078367","UTAHDWQ_WQX-WRI220711-4924710-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924710-0712-4-C/results/970078367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14202","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","10:30:00","MST","2022-08-02 17:30:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078376","UTAHDWQ_WQX-WRI220801-4924710-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924710-0802-4-C/results/970078376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14203","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","10:30:00","MST","2022-08-02 17:30:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078384","UTAHDWQ_WQX-WRI220801-4924710-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924710-0802-4-C/results/970078384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14204","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","10:45:00","MST","2022-09-14 17:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078403","UTAHDWQ_WQX-WRI220912-4924710-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924710-0914-4-C/results/970078403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14205","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","10:45:00","MST","2022-09-14 17:45:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078405","UTAHDWQ_WQX-WRI220912-4924710-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE","River/Stream",NA,"41.2971600000",41.29716,"-111.6177000000",-111.6177,"OK","16020102","UTAHDWQ_WQX-4924710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2971600000","-111.6177000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924710-0914-4-C/results/970078405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14206","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","10:50:00","MST","2022-07-27 17:50:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078417","UTAHDWQ_WQX-LAKES220726-4924730-0727-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES AB DAM 01","Lake",NA,"41.2988300000",41.29883,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4924730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2988300000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-2-C/results/970078417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14207","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","10:50:00","MST","2022-07-27 17:50:00",NA,"0.244",244,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078422","UTAHDWQ_WQX-LAKES220726-4924730-0727-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES AB DAM 01","Lake",NA,"41.2988300000",41.29883,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4924730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2988300000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-2-C/results/970078422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14208","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","11:15:00","MST","2022-07-27 18:15:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","2.07",2.07,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078425","UTAHDWQ_WQX-LAKES220726-4924730-0727-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES AB DAM 01","Lake",NA,"41.2988300000",41.29883,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4924730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2988300000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-23-C/results/970078425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14209","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","11:15:00","MST","2022-07-27 18:15:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","2.07",2.07,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078431","UTAHDWQ_WQX-LAKES220726-4924730-0727-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES AB DAM 01","Lake",NA,"41.2988300000",41.29883,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4924730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2988300000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-23-C/results/970078431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14210","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","11:20:00","MST","2022-07-27 18:20:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","5.06",5.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078435","UTAHDWQ_WQX-LAKES220726-4924730-0727-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES AB DAM 01","Lake",NA,"41.2988300000",41.29883,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4924730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2988300000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-27-C/results/970078435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14211","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","11:20:00","MST","2022-07-27 18:20:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","5.06",5.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078439","UTAHDWQ_WQX-LAKES220726-4924730-0727-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES AB DAM 01","Lake",NA,"41.2988300000",41.29883,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4924730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2988300000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-27-C/results/970078439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14212","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","11:25:00","MST","2022-07-27 18:25:00",NA,"0.438",438,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","26.06",26.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078442","UTAHDWQ_WQX-LAKES220726-4924730-0727-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES AB DAM 01","Lake",NA,"41.2988300000",41.29883,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4924730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2988300000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-29-C/results/970078442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14213","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","11:25:00","MST","2022-07-27 18:25:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","26.06",26.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078446","UTAHDWQ_WQX-LAKES220726-4924730-0727-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES AB DAM 01","Lake",NA,"41.2988300000",41.29883,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4924730",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2988300000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-29-C/results/970078446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14214","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","11:35:00","MST","2022-07-27 18:35:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078474","UTAHDWQ_WQX-LAKES220726-4924740-0727-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Causey Res Midway Up N Arm 02","Lake",NA,"41.3068800000",41.30688,"-111.5835400000",-111.58354,"OK","16020102","UTAHDWQ_WQX-4924740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3068800000","-111.5835400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924740-0727-2-C/results/970078474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14215","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","11:35:00","MST","2022-07-27 18:35:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078479","UTAHDWQ_WQX-LAKES220726-4924740-0727-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Causey Res Midway Up N Arm 02","Lake",NA,"41.3068800000",41.30688,"-111.5835400000",-111.58354,"OK","16020102","UTAHDWQ_WQX-4924740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3068800000","-111.5835400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924740-0727-2-C/results/970078479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14216","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","11:50:00","MST","2022-07-27 18:50:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18.06",18.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078484","UTAHDWQ_WQX-LAKES220726-4924740-0727-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Causey Res Midway Up N Arm 02","Lake",NA,"41.3068800000",41.30688,"-111.5835400000",-111.58354,"OK","16020102","UTAHDWQ_WQX-4924740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3068800000","-111.5835400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924740-0727-29-C/results/970078484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14217","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","11:50:00","MST","2022-07-27 18:50:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18.06",18.06,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078486","UTAHDWQ_WQX-LAKES220726-4924740-0727-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Causey Res Midway Up N Arm 02","Lake",NA,"41.3068800000",41.30688,"-111.5835400000",-111.58354,"OK","16020102","UTAHDWQ_WQX-4924740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3068800000","-111.5835400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924740-0727-29-C/results/970078486/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14218","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","12:55:00","MST","2022-07-27 19:55:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078496","UTAHDWQ_WQX-LAKES220726-4924750-0727-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES. E ARM 003","Lake",NA,"41.2956600000",41.29566,"-111.5699300000",-111.56993,"OK","16020102","UTAHDWQ_WQX-4924750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2956600000","-111.5699300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924750-0727-2-C/results/970078496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14219","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","12:55:00","MST","2022-07-27 19:55:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078499","UTAHDWQ_WQX-LAKES220726-4924750-0727-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES. E ARM 003","Lake",NA,"41.2956600000",41.29566,"-111.5699300000",-111.56993,"OK","16020102","UTAHDWQ_WQX-4924750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2956600000","-111.5699300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924750-0727-2-C/results/970078499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14220","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","13:05:00","MST","2022-07-27 20:05:00",NA,"0.34",340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","13.04",13.04,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078502","UTAHDWQ_WQX-LAKES220726-4924750-0727-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES. E ARM 003","Lake",NA,"41.2956600000",41.29566,"-111.5699300000",-111.56993,"OK","16020102","UTAHDWQ_WQX-4924750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2956600000","-111.5699300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924750-0727-29-C/results/970078502/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14221","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","13:05:00","MST","2022-07-27 20:05:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","13.04",13.04,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078503","UTAHDWQ_WQX-LAKES220726-4924750-0727-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","CAUSEY RES. E ARM 003","Lake",NA,"41.2956600000",41.29566,"-111.5699300000",-111.56993,"OK","16020102","UTAHDWQ_WQX-4924750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2956600000","-111.5699300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924750-0727-29-C/results/970078503/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14222","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","11:30:00","MST","2022-05-24 18:30:00",NA,"0.866",866,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078509","UTAHDWQ_WQX-WRI220509-4924760-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924760-0524-4-C/results/970078509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14223","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","11:30:00","MST","2022-05-24 18:30:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078517","UTAHDWQ_WQX-WRI220509-4924760-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924760-0524-4-C/results/970078517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14224","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","14:00:00","MST","2022-06-15 21:00:00",NA,"0.862",862,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078527","UTAHDWQ_WQX-WRI220613-4924760-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924760-0615-4-C/results/970078527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14225","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","14:00:00","MST","2022-06-15 21:00:00",NA,"0.637",637,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078539","UTAHDWQ_WQX-WRI220613-4924760-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924760-0615-4-C/results/970078539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14226","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","11:10:00","MST","2022-06-29 18:10:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078545","UTAHDWQ_WQX-WRI220629-4924760-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924760-0629-4-C/results/970078545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14227","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","11:10:00","MST","2022-06-29 18:10:00",NA,"0.722",722,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078556","UTAHDWQ_WQX-WRI220629-4924760-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924760-0629-4-C/results/970078556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14228","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","11:00:00","MST","2022-07-12 18:00:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078574","UTAHDWQ_WQX-WRI220711-4924760-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924760-0712-4-C/results/970078574/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14229","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","11:00:00","MST","2022-07-12 18:00:00",NA,"0.594",594,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078579","UTAHDWQ_WQX-WRI220711-4924760-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924760-0712-4-C/results/970078579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14230","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","12:05:00","MST","2022-07-27 19:05:00",NA,"0.809",809,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078581","UTAHDWQ_WQX-LAKES220726-4924760-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924760-0727-4-C/results/970078581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14231","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","12:05:00","MST","2022-07-27 19:05:00",NA,"0.721",721,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078605","UTAHDWQ_WQX-LAKES220726-4924760-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924760-0727-4-C/results/970078605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14232","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","11:00:00","MST","2022-08-02 18:00:00",NA,"0.637",637,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078616","UTAHDWQ_WQX-WRI220801-4924760-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924760-0802-4-C/results/970078616/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14233","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","11:00:00","MST","2022-08-02 18:00:00",NA,"0.705",705,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078632","UTAHDWQ_WQX-WRI220801-4924760-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924760-0802-4-C/results/970078632/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14234","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","09:55:00","MST","2022-08-23 16:55:00",NA,"0.667",667,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078655","UTAHDWQ_WQX-WRI220829-4924760-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4924760-0823-4-C/results/970078655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14235","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-23","09:55:00","MST","2022-08-23 16:55:00",NA,"0.664",664,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078657","UTAHDWQ_WQX-WRI220829-4924760-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4924760-0823-4-C/results/970078657/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14236","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","11:30:00","MST","2022-09-28 18:30:00",NA,"0.609",609,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078666","UTAHDWQ_WQX-WRI220926-4924760-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4924760-0928-4-C/results/970078666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14237","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","11:30:00","MST","2022-09-28 18:30:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078673","UTAHDWQ_WQX-WRI220926-4924760-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK","River/Stream",NA,"41.3146900000",41.31469,"-111.5764500000",-111.57645,"OK","16020102","UTAHDWQ_WQX-4924760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.3146900000","-111.5764500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4924760-0928-4-C/results/970078673/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14117","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","13:20:00","MST","2022-07-27 20:20:00",NA,"0.319",319,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078696","UTAHDWQ_WQX-LAKES220726-4924790-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","RIGHT FK S FK OGDEN R AB CAUSEY RES","River/Stream",NA,"41.2885500000",41.28855,"-111.5654800000",-111.56548,"OK","16020102","UTAHDWQ_WQX-4924790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2885500000","-111.5654800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924790-0727-4-C/results/970078696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14239","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","13:20:00","MST","2022-07-27 20:20:00",NA,"0.501",501,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078702","UTAHDWQ_WQX-LAKES220726-4924790-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","057","RIGHT FK S FK OGDEN R AB CAUSEY RES","River/Stream",NA,"41.2885500000",41.28855,"-111.5654800000",-111.56548,"OK","16020102","UTAHDWQ_WQX-4924790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2885500000","-111.5654800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924790-0727-4-C/results/970078702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14119","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","12:50:00","MST","2022-09-20 19:50:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078740","UTAHDWQ_WQX-WLA2022-4924952-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at UDWR Flow Gage","River/Stream",NA,"41.0544300000",41.05443,"-111.7146600000",-111.71466,"OK","16020102","UTAHDWQ_WQX-4924952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0544300000","-111.7146600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4924952-0920-4-C/results/970078740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14241","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","12:50:00","MST","2022-09-20 19:50:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078752","UTAHDWQ_WQX-WLA2022-4924952-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at UDWR Flow Gage","River/Stream",NA,"41.0544300000",41.05443,"-111.7146600000",-111.71466,"OK","16020102","UTAHDWQ_WQX-4924952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0544300000","-111.7146600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4924952-0920-4-C/results/970078752/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14242","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","11:45:00","MST","2022-09-28 18:45:00",NA,"0.601",601,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078778","UTAHDWQ_WQX-WLA2022-4924952-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at UDWR Flow Gage","River/Stream",NA,"41.0544300000",41.05443,"-111.7146600000",-111.71466,"OK","16020102","UTAHDWQ_WQX-4924952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0544300000","-111.7146600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4924952-0928-4-C/results/970078778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14243","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","11:45:00","MST","2022-09-28 18:45:00",NA,"0.547",547,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078782","UTAHDWQ_WQX-WLA2022-4924952-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at UDWR Flow Gage","River/Stream",NA,"41.0544300000",41.05443,"-111.7146600000",-111.71466,"OK","16020102","UTAHDWQ_WQX-4924952",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0544300000","-111.7146600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4924952-0928-4-C/results/970078782/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14244","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","09:15:00","MST","2022-04-06 16:15:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078788","UTAHDWQ_WQX-WRI220404-4924960-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924960-0406-4-C/results/970078788/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14245","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","09:15:00","MST","2022-04-06 16:15:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078801","UTAHDWQ_WQX-WRI220404-4924960-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924960-0406-4-C/results/970078801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14125","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","14:10:00","MST","2022-05-24 21:10:00",NA,"0.216",216,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078815","UTAHDWQ_WQX-WRI220509-4924960-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924960-0524-4-C/results/970078815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14247","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","14:10:00","MST","2022-05-24 21:10:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078817","UTAHDWQ_WQX-WRI220509-4924960-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924960-0524-4-C/results/970078817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14248","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:30:00","MST","2022-06-16 18:30:00",NA,"0.344",344,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078824","UTAHDWQ_WQX-WRI220613-4924960-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924960-0616-4-C/results/970078824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14249","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:30:00","MST","2022-06-16 18:30:00",NA,"0.417",417,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078844","UTAHDWQ_WQX-WRI220613-4924960-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924960-0616-4-C/results/970078844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14250","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","11:50:00","MST","2022-06-29 18:50:00",NA,"0.564",564,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078851","UTAHDWQ_WQX-WRI220629-4924960-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924960-0629-4-C/results/970078851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14130","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","11:50:00","MST","2022-06-29 18:50:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078872","UTAHDWQ_WQX-WRI220629-4924960-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:19:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924960-0629-4-C/results/970078872/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14252","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","14:00:00","MST","2022-07-12 21:00:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078876","UTAHDWQ_WQX-WRI220711-4924960-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924960-0712-4-C/results/970078876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14253","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","14:00:00","MST","2022-07-12 21:00:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078881","UTAHDWQ_WQX-WRI220711-4924960-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924960-0712-4-C/results/970078881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14133","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","09:30:00","MST","2022-08-03 16:30:00",NA,"0.85",850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078886","UTAHDWQ_WQX-WRI220801-4924960-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924960-0803-4-C/results/970078886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14134","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","09:30:00","MST","2022-08-03 16:30:00",NA,"0.564",564,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078887","UTAHDWQ_WQX-WRI220801-4924960-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924960-0803-4-C/results/970078887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14135","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","09:40:00","MST","2022-09-15 16:40:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078915","UTAHDWQ_WQX-WRI220912-4924960-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924960-0915-4-C/results/970078915/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14136","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","09:40:00","MST","2022-09-15 16:40:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078918","UTAHDWQ_WQX-WRI220912-4924960-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing","River/Stream",NA,"41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924960-0915-4-C/results/970078918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14137","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","09:20:00","MST","2022-04-06 16:20:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078921","UTAHDWQ_WQX-WRI220404-4924961-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924961-0406-4-C/results/970078921/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14138","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","09:20:00","MST","2022-04-06 16:20:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078941","UTAHDWQ_WQX-WRI220404-4924961-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924961-0406-4-C/results/970078941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14139","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","14:20:00","MST","2022-05-24 21:20:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078952","UTAHDWQ_WQX-WRI220509-4924961-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924961-0524-4-C/results/970078952/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14140","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","14:20:00","MST","2022-05-24 21:20:00",NA,"0.645",645,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078953","UTAHDWQ_WQX-WRI220509-4924961-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924961-0524-4-C/results/970078953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14141","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:40:00","MST","2022-06-16 18:40:00",NA,"0.363",363,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078958","UTAHDWQ_WQX-WRI220613-4924961-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924961-0616-4-C/results/970078958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14142","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:40:00","MST","2022-06-16 18:40:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078964","UTAHDWQ_WQX-WRI220613-4924961-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924961-0616-4-C/results/970078964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14143","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","12:00:00","MST","2022-06-29 19:00:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970078990","UTAHDWQ_WQX-WRI220629-4924961-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924961-0629-4-C/results/970078990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14144","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","12:00:00","MST","2022-06-29 19:00:00",NA,"0.585",585,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079000","UTAHDWQ_WQX-WRI220629-4924961-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924961-0629-4-C/results/970079000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14145","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","14:10:00","MST","2022-07-12 21:10:00",NA,"0.422",422,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079009","UTAHDWQ_WQX-WRI220711-4924961-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924961-0712-4-C/results/970079009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14146","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","14:10:00","MST","2022-07-12 21:10:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079011","UTAHDWQ_WQX-WRI220711-4924961-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924961-0712-4-C/results/970079011/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14147","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","09:40:00","MST","2022-08-03 16:40:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079028","UTAHDWQ_WQX-WRI220801-4924961-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924961-0803-4-C/results/970079028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14148","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","09:40:00","MST","2022-08-03 16:40:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079034","UTAHDWQ_WQX-WRI220801-4924961-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924961-0803-4-C/results/970079034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14149","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","09:50:00","MST","2022-09-15 16:50:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079049","UTAHDWQ_WQX-WRI220912-4924961-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924961-0915-4-C/results/970079049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14150","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","09:50:00","MST","2022-09-15 16:50:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079050","UTAHDWQ_WQX-WRI220912-4924961-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Creek at Young Street crossing Replicate of 4924960","River/Stream","Replicate of 4924960","41.0317700000",41.03177,"-111.6907700000",-111.69077,"OK","16020102","UTAHDWQ_WQX-4924961",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0317700000","-111.6907700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924961-0915-4-C/results/970079050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14151","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","10:15:00","MST","2022-04-06 17:15:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079056","UTAHDWQ_WQX-WRI220404-4925039-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925039-0406-4-C/results/970079056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14152","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","10:15:00","MST","2022-04-06 17:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079078","UTAHDWQ_WQX-WRI220404-4925039-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925039-0406-4-C/results/970079078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14153","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","10:00:00","MST","2022-05-25 17:00:00",NA,"0.52",520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079080","UTAHDWQ_WQX-WRI220509-4925039-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925039-0525-4-C/results/970079080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14154","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","10:00:00","MST","2022-05-25 17:00:00",NA,"0.624",624,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079086","UTAHDWQ_WQX-WRI220509-4925039-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925039-0525-4-C/results/970079086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14276","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","12:40:00","MST","2022-06-16 19:40:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079099","UTAHDWQ_WQX-WRI220613-4925039-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925039-0616-4-C/results/970079099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14277","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","12:40:00","MST","2022-06-16 19:40:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079106","UTAHDWQ_WQX-WRI220613-4925039-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925039-0616-4-C/results/970079106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14157","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","12:30:00","MST","2022-06-29 19:30:00",NA,"0.241",241,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079116","UTAHDWQ_WQX-WRI220629-4925039-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925039-0629-4-C/results/970079116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14279","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","12:30:00","MST","2022-06-29 19:30:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079125","UTAHDWQ_WQX-WRI220629-4925039-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925039-0629-4-C/results/970079125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14280","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","09:45:00","MST","2022-07-13 16:45:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079144","UTAHDWQ_WQX-WRI220711-4925039-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925039-0713-4-C/results/970079144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14160","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","09:45:00","MST","2022-07-13 16:45:00",NA,"0.185",185,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079150","UTAHDWQ_WQX-WRI220711-4925039-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925039-0713-4-C/results/970079150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14161","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","11:00:00","MST","2022-08-03 18:00:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079160","UTAHDWQ_WQX-WRI220801-4925039-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925039-0803-4-C/results/970079160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14162","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","11:00:00","MST","2022-08-03 18:00:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079170","UTAHDWQ_WQX-WRI220801-4925039-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925039-0803-4-C/results/970079170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14163","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","10:30:00","MST","2022-09-15 17:30:00",NA,"0.159",159,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079178","UTAHDWQ_WQX-WRI220912-4925039-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925039-0915-4-C/results/970079178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14164","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","10:30:00","MST","2022-09-15 17:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079179","UTAHDWQ_WQX-WRI220912-4925039-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Hardscrabble ck ab East Canyon Ck @ U66 Xing","River/Stream",NA,"40.9771900000",40.97719,"-111.6741500000",-111.67415,"OK","16020102","UTAHDWQ_WQX-4925039",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9771900000","-111.6741500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925039-0915-4-C/results/970079179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14165","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","10:00:00","MST","2022-07-13 17:00:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079191","UTAHDWQ_WQX-LAKES220712-4925140-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01 Replicate of 4925160","Lake","Replicate of 4925160","40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925140-0713-2-C/results/970079191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14166","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","10:00:00","MST","2022-07-13 17:00:00",NA,"0.34",340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079196","UTAHDWQ_WQX-LAKES220712-4925140-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01 Replicate of 4925160","Lake","Replicate of 4925160","40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925140-0713-2-C/results/970079196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14167","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","10:35:00","MST","2022-09-22 17:35:00",NA,"0.673",673,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079209","UTAHDWQ_WQX-LAKES220919-4925140-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01 Replicate of 4925160","Lake","Replicate of 4925160","40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925140-0922-2-C/results/970079209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14168","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","10:35:00","MST","2022-09-22 17:35:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079211","UTAHDWQ_WQX-LAKES220919-4925140-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01 Replicate of 4925160","Lake","Replicate of 4925160","40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925140-0922-2-C/results/970079211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13926","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","10:45:00","MST","2022-04-06 17:45:00",NA,"0.515",515,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079215","UTAHDWQ_WQX-WRI220404-4925150-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925150-0406-4-C/results/970079215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14170","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","10:45:00","MST","2022-04-06 17:45:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079223","UTAHDWQ_WQX-WRI220404-4925150-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925150-0406-4-C/results/970079223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13928","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","10:20:00","MST","2022-05-25 17:20:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079240","UTAHDWQ_WQX-WRI220509-4925150-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925150-0525-4-C/results/970079240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14172","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","10:20:00","MST","2022-05-25 17:20:00",NA,"0.751",751,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079244","UTAHDWQ_WQX-WRI220509-4925150-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925150-0525-4-C/results/970079244/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14173","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","13:20:00","MST","2022-06-16 20:20:00",NA,"0.587",587,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079256","UTAHDWQ_WQX-WRI220613-4925150-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925150-0616-4-C/results/970079256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14174","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","13:20:00","MST","2022-06-16 20:20:00",NA,"0.644",644,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079261","UTAHDWQ_WQX-WRI220613-4925150-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925150-0616-4-C/results/970079261/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14175","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","12:45:00","MST","2022-06-29 19:45:00",NA,"0.49",490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079286","UTAHDWQ_WQX-WRI220629-4925150-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925150-0629-4-C/results/970079286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14176","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","12:45:00","MST","2022-06-29 19:45:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079287","UTAHDWQ_WQX-WRI220629-4925150-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925150-0629-4-C/results/970079287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14177","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","10:00:00","MST","2022-07-13 17:00:00",NA,"0.497",497,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079302","UTAHDWQ_WQX-WRI220711-4925150-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925150-0713-4-C/results/970079302/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14178","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","10:00:00","MST","2022-07-13 17:00:00",NA,"0.508",508,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079308","UTAHDWQ_WQX-WRI220711-4925150-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925150-0713-4-C/results/970079308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14179","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","11:20:00","MST","2022-08-03 18:20:00",NA,"0.51",510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079327","UTAHDWQ_WQX-WRI220801-4925150-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925150-0803-4-C/results/970079327/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14301","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","11:20:00","MST","2022-08-03 18:20:00",NA,"0.539",539,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079328","UTAHDWQ_WQX-WRI220801-4925150-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925150-0803-4-C/results/970079328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14302","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","10:50:00","MST","2022-09-15 17:50:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079339","UTAHDWQ_WQX-WRI220912-4925150-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925150-0915-4-C/results/970079339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14303","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","10:50:00","MST","2022-09-15 17:50:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079344","UTAHDWQ_WQX-WRI220912-4925150-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK BL EAST CANYON RES","River/Stream",NA,"40.9223200000",40.92232,"-111.6084700000",-111.60847,"OK","16020102","UTAHDWQ_WQX-4925150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9223200000","-111.6084700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925150-0915-4-C/results/970079344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14304","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","09:55:00","MST","2022-07-13 16:55:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079349","UTAHDWQ_WQX-LAKES220712-4925160-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-2-C/results/970079349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14305","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","09:55:00","MST","2022-07-13 16:55:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079358","UTAHDWQ_WQX-LAKES220712-4925160-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-2-C/results/970079358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14306","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","10:45:00","MST","2022-07-13 17:45:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079360","UTAHDWQ_WQX-LAKES220712-4925160-0713-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-23-C/results/970079360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14307","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","10:45:00","MST","2022-07-13 17:45:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079361","UTAHDWQ_WQX-LAKES220712-4925160-0713-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-23-C/results/970079361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14308","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","10:50:00","MST","2022-07-13 17:50:00",NA,"0.52",520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","12",12,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079373","UTAHDWQ_WQX-LAKES220712-4925160-0713-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-27-C/results/970079373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14309","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","10:50:00","MST","2022-07-13 17:50:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","12",12,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079374","UTAHDWQ_WQX-LAKES220712-4925160-0713-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-27-C/results/970079374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14310","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","10:30:00","MST","2022-07-13 17:30:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079387","UTAHDWQ_WQX-LAKES220712-4925160-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-29-C/results/970079387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14311","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","10:30:00","MST","2022-07-13 17:30:00",NA,"0.552",552,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","30",30,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079390","UTAHDWQ_WQX-LAKES220712-4925160-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-29-C/results/970079390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14312","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","10:05:00","MST","2022-09-22 17:05:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079407","UTAHDWQ_WQX-LAKES220919-4925160-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-2-C/results/970079407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14313","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","10:05:00","MST","2022-09-22 17:05:00",NA,"0.678",678,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079412","UTAHDWQ_WQX-LAKES220919-4925160-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-2-C/results/970079412/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14314","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","10:50:00","MST","2022-09-22 17:50:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079417","UTAHDWQ_WQX-LAKES220919-4925160-0922-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-23-C/results/970079417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14315","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","10:50:00","MST","2022-09-22 17:50:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","9",9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079420","UTAHDWQ_WQX-LAKES220919-4925160-0922-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-23-C/results/970079420/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14316","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","10:55:00","MST","2022-09-22 17:55:00",NA,"1.26",1260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079427","UTAHDWQ_WQX-LAKES220919-4925160-0922-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-27-C/results/970079427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14317","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","10:55:00","MST","2022-09-22 17:55:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079430","UTAHDWQ_WQX-LAKES220919-4925160-0922-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-27-C/results/970079430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14318","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","11:05:00","MST","2022-09-22 18:05:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","38.5",38.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079436","UTAHDWQ_WQX-LAKES220919-4925160-0922-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-29-C/results/970079436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14319","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","11:05:00","MST","2022-09-22 18:05:00",NA,"0.43",430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","38.5",38.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079447","UTAHDWQ_WQX-LAKES220919-4925160-0922-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES AB DAM 01","Lake",NA,"40.9196600000",40.91966,"-111.5993700000",-111.59937,"OK","16020102","UTAHDWQ_WQX-4925160",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9196600000","-111.5993700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-29-C/results/970079447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14320","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","11:05:00","MST","2022-07-13 18:05:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079460","UTAHDWQ_WQX-LAKES220712-4925170-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES MIDLAKE 02","Lake",NA,"40.9043900000",40.90439,"-111.5907600000",-111.59076,"OK","16020102","UTAHDWQ_WQX-4925170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9043900000","-111.5907600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925170-0713-2-C/results/970079460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14321","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","11:05:00","MST","2022-07-13 18:05:00",NA,"0.482",482,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079463","UTAHDWQ_WQX-LAKES220712-4925170-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES MIDLAKE 02","Lake",NA,"40.9043900000",40.90439,"-111.5907600000",-111.59076,"OK","16020102","UTAHDWQ_WQX-4925170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9043900000","-111.5907600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925170-0713-2-C/results/970079463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14322","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","11:30:00","MST","2022-07-13 18:30:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","26",26,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079471","UTAHDWQ_WQX-LAKES220712-4925170-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES MIDLAKE 02","Lake",NA,"40.9043900000",40.90439,"-111.5907600000",-111.59076,"OK","16020102","UTAHDWQ_WQX-4925170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9043900000","-111.5907600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925170-0713-29-C/results/970079471/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14323","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","11:30:00","MST","2022-07-13 18:30:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","26",26,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079472","UTAHDWQ_WQX-LAKES220712-4925170-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES MIDLAKE 02","Lake",NA,"40.9043900000",40.90439,"-111.5907600000",-111.59076,"OK","16020102","UTAHDWQ_WQX-4925170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9043900000","-111.5907600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925170-0713-29-C/results/970079472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14324","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","11:20:00","MST","2022-09-22 18:20:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079478","UTAHDWQ_WQX-LAKES220919-4925170-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES MIDLAKE 02","Lake",NA,"40.9043900000",40.90439,"-111.5907600000",-111.59076,"OK","16020102","UTAHDWQ_WQX-4925170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9043900000","-111.5907600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925170-0922-2-C/results/970079478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14325","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","11:20:00","MST","2022-09-22 18:20:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079484","UTAHDWQ_WQX-LAKES220919-4925170-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES MIDLAKE 02","Lake",NA,"40.9043900000",40.90439,"-111.5907600000",-111.59076,"OK","16020102","UTAHDWQ_WQX-4925170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9043900000","-111.5907600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925170-0922-2-C/results/970079484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14326","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","11:50:00","MST","2022-09-22 18:50:00",NA,"0.71",710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","23",23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079491","UTAHDWQ_WQX-LAKES220919-4925170-0922-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES MIDLAKE 02","Lake",NA,"40.9043900000",40.90439,"-111.5907600000",-111.59076,"OK","16020102","UTAHDWQ_WQX-4925170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9043900000","-111.5907600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925170-0922-29-C/results/970079491/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13963","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","11:50:00","MST","2022-09-22 18:50:00",NA,"0.507",507,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","23",23,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079495","UTAHDWQ_WQX-LAKES220919-4925170-0922-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES MIDLAKE 02","Lake",NA,"40.9043900000",40.90439,"-111.5907600000",-111.59076,"OK","16020102","UTAHDWQ_WQX-4925170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9043900000","-111.5907600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925170-0922-29-C/results/970079495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14328","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","12:00:00","MST","2022-07-13 19:00:00",NA,"0.528",528,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079501","UTAHDWQ_WQX-LAKES220712-4925180-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES UPPER LAKE 03","Lake",NA,"40.8921700000",40.89217,"-111.5863100000",-111.58631,"OK","16020102","UTAHDWQ_WQX-4925180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8921700000","-111.5863100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925180-0713-2-C/results/970079501/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14329","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","12:00:00","MST","2022-07-13 19:00:00",NA,"0.508",508,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079508","UTAHDWQ_WQX-LAKES220712-4925180-0713-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES UPPER LAKE 03","Lake",NA,"40.8921700000",40.89217,"-111.5863100000",-111.58631,"OK","16020102","UTAHDWQ_WQX-4925180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8921700000","-111.5863100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925180-0713-2-C/results/970079508/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13966","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","12:20:00","MST","2022-07-13 19:20:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079514","UTAHDWQ_WQX-LAKES220712-4925180-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES UPPER LAKE 03","Lake",NA,"40.8921700000",40.89217,"-111.5863100000",-111.58631,"OK","16020102","UTAHDWQ_WQX-4925180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8921700000","-111.5863100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925180-0713-29-C/results/970079514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13967","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","12:20:00","MST","2022-07-13 19:20:00",NA,"0.464",464,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","11",11,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079516","UTAHDWQ_WQX-LAKES220712-4925180-0713-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES UPPER LAKE 03","Lake",NA,"40.8921700000",40.89217,"-111.5863100000",-111.58631,"OK","16020102","UTAHDWQ_WQX-4925180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8921700000","-111.5863100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925180-0713-29-C/results/970079516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14332","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","12:05:00","MST","2022-09-22 19:05:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079528","UTAHDWQ_WQX-LAKES220919-4925180-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES UPPER LAKE 03","Lake",NA,"40.8921700000",40.89217,"-111.5863100000",-111.58631,"OK","16020102","UTAHDWQ_WQX-4925180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8921700000","-111.5863100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925180-0922-2-C/results/970079528/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14333","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","12:05:00","MST","2022-09-22 19:05:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079530","UTAHDWQ_WQX-LAKES220919-4925180-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES UPPER LAKE 03","Lake",NA,"40.8921700000",40.89217,"-111.5863100000",-111.58631,"OK","16020102","UTAHDWQ_WQX-4925180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8921700000","-111.5863100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925180-0922-2-C/results/970079530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13970","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","12:20:00","MST","2022-09-22 19:20:00",NA,"0.43",430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4.5",4.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079533","UTAHDWQ_WQX-LAKES220919-4925180-0922-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES UPPER LAKE 03","Lake",NA,"40.8921700000",40.89217,"-111.5863100000",-111.58631,"OK","16020102","UTAHDWQ_WQX-4925180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8921700000","-111.5863100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925180-0922-29-C/results/970079533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14335","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","12:20:00","MST","2022-09-22 19:20:00",NA,"0.301",301,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","4.5",4.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079534","UTAHDWQ_WQX-LAKES220919-4925180-0922-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON RES UPPER LAKE 03","Lake",NA,"40.8921700000",40.89217,"-111.5863100000",-111.58631,"OK","16020102","UTAHDWQ_WQX-4925180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8921700000","-111.5863100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925180-0922-29-C/results/970079534/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14336","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","13:10:00","MST","2022-07-13 20:10:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079547","UTAHDWQ_WQX-LAKES220712-4925190-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck at East Canyon Resort ab East Canyon Reservoir at USGS Gage","River/Stream",NA,"40.8695000000",40.8695,"-111.5865200000",-111.58652,"OK","16020102","UTAHDWQ_WQX-4925190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8695000000","-111.5865200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925190-0713-4-C/results/970079547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13973","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","13:10:00","MST","2022-07-13 20:10:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079562","UTAHDWQ_WQX-LAKES220712-4925190-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck at East Canyon Resort ab East Canyon Reservoir at USGS Gage","River/Stream",NA,"40.8695000000",40.8695,"-111.5865200000",-111.58652,"OK","16020102","UTAHDWQ_WQX-4925190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8695000000","-111.5865200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925190-0713-4-C/results/970079562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14338","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","13:15:00","MST","2022-09-22 20:15:00",NA,"0.747",747,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079576","UTAHDWQ_WQX-LAKES220919-4925190-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck at East Canyon Resort ab East Canyon Reservoir at USGS Gage","River/Stream",NA,"40.8695000000",40.8695,"-111.5865200000",-111.58652,"OK","16020102","UTAHDWQ_WQX-4925190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8695000000","-111.5865200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925190-0922-4-C/results/970079576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13975","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","13:15:00","MST","2022-09-22 20:15:00",NA,"0.763",763,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079591","UTAHDWQ_WQX-LAKES220919-4925190-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck at East Canyon Resort ab East Canyon Reservoir at USGS Gage","River/Stream",NA,"40.8695000000",40.8695,"-111.5865200000",-111.58652,"OK","16020102","UTAHDWQ_WQX-4925190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8695000000","-111.5865200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925190-0922-4-C/results/970079591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14340","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","11:00:00","MST","2022-04-06 18:00:00",NA,"0.91",910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079603","UTAHDWQ_WQX-WRI220404-4925195-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925195-0406-4-C/results/970079603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14341","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","11:00:00","MST","2022-04-06 18:00:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079604","UTAHDWQ_WQX-WRI220404-4925195-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925195-0406-4-C/results/970079604/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14342","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","10:50:00","MST","2022-05-25 17:50:00",NA,"0.652",652,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079629","UTAHDWQ_WQX-WRI220509-4925195-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925195-0525-4-C/results/970079629/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14343","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","10:50:00","MST","2022-05-25 17:50:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079634","UTAHDWQ_WQX-WRI220509-4925195-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925195-0525-4-C/results/970079634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14344","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","13:45:00","MST","2022-06-16 20:45:00",NA,"0.697",697,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079642","UTAHDWQ_WQX-WRI220613-4925195-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925195-0616-4-C/results/970079642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14345","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","13:45:00","MST","2022-06-16 20:45:00",NA,"0.715",715,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079655","UTAHDWQ_WQX-WRI220613-4925195-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925195-0616-4-C/results/970079655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14346","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","11:45:00","MST","2022-08-03 18:45:00",NA,"0.71",710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079694","UTAHDWQ_WQX-WRI220801-4925195-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925195-0803-4-C/results/970079694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14347","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","11:45:00","MST","2022-08-03 18:45:00",NA,"0.712",712,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079707","UTAHDWQ_WQX-WRI220801-4925195-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925195-0803-4-C/results/970079707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14348","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","11:15:00","MST","2022-09-15 18:15:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079722","UTAHDWQ_WQX-WRI220912-4925195-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925195-0915-4-C/results/970079722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14349","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","11:15:00","MST","2022-09-15 18:15:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079723","UTAHDWQ_WQX-WRI220912-4925195-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925195-0915-4-C/results/970079723/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14350","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","09:30:00","MST","2022-04-04 16:30:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079730","UTAHDWQ_WQX-WRI220404-4925218-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925218-0404-4-C/results/970079730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14351","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","09:30:00","MST","2022-04-04 16:30:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079745","UTAHDWQ_WQX-WRI220404-4925218-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925218-0404-4-C/results/970079745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14352","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","09:15:00","MST","2022-05-09 16:15:00",NA,"0.731",731,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079761","UTAHDWQ_WQX-WRI220509-4925218-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925218-0509-4-C/results/970079761/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14353","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","09:15:00","MST","2022-05-09 16:15:00",NA,"0.664",664,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079763","UTAHDWQ_WQX-WRI220509-4925218-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925218-0509-4-C/results/970079763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14354","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","14:30:00","MST","2022-09-21 21:30:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079796","UTAHDWQ_WQX-WLA2022-4925504-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Gateway Canal return flow to Weber River","Canal Irrigation",NA,"41.1364500000",41.13645,"-111.8313300000",-111.83133,"OK","16020102","UTAHDWQ_WQX-4925504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1364500000","-111.8313300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925504-0921-4-C/results/970079796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14355","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","14:30:00","MST","2022-09-21 21:30:00",NA,"0.587",587,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079798","UTAHDWQ_WQX-WLA2022-4925504-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Gateway Canal return flow to Weber River","Canal Irrigation",NA,"41.1364500000",41.13645,"-111.8313300000",-111.83133,"OK","16020102","UTAHDWQ_WQX-4925504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1364500000","-111.8313300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925504-0921-4-C/results/970079798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14356","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","10:45:00","MST","2022-09-27 17:45:00",NA,"0.691",691,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079821","UTAHDWQ_WQX-WLA2022-4925504-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Gateway Canal return flow to Weber River","Canal Irrigation",NA,"41.1364500000",41.13645,"-111.8313300000",-111.83133,"OK","16020102","UTAHDWQ_WQX-4925504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1364500000","-111.8313300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925504-0927-4-C/results/970079821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14357","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","10:45:00","MST","2022-09-27 17:45:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079825","UTAHDWQ_WQX-WLA2022-4925504-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Gateway Canal return flow to Weber River","Canal Irrigation",NA,"41.1364500000",41.13645,"-111.8313300000",-111.83133,"OK","16020102","UTAHDWQ_WQX-4925504",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1364500000","-111.8313300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925504-0927-4-C/results/970079825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14358","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","09:25:00","MST","2022-09-21 16:25:00",NA,"0.747",747,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079856","UTAHDWQ_WQX-WLA2022-4925988-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Irrigation flow at West Henefer Rd xing 110 meters SW of I-84 EB exit 112 offramp","Canal Drainage",NA,"41.0434600000",41.04346,"-111.5249400000",-111.52494,"OK","16020101","UTAHDWQ_WQX-4925988",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0434600000","-111.5249400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925988-0921-4-C/results/970079856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14238","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","09:25:00","MST","2022-09-21 16:25:00",NA,"0.72",720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079868","UTAHDWQ_WQX-WLA2022-4925988-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Irrigation flow at West Henefer Rd xing 110 meters SW of I-84 EB exit 112 offramp","Canal Drainage",NA,"41.0434600000",41.04346,"-111.5249400000",-111.52494,"OK","16020101","UTAHDWQ_WQX-4925988",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0434600000","-111.5249400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925988-0921-4-C/results/970079868/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14360","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","09:20:00","MST","2022-06-13 16:20:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079887","UTAHDWQ_WQX-WRI220613-4925218-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925218-0613-4-C/results/970079887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14240","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","09:20:00","MST","2022-06-13 16:20:00",NA,"2.31",2310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079891","UTAHDWQ_WQX-WRI220613-4925218-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925218-0613-4-C/results/970079891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14362","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","09:30:00","MST","2022-07-18 16:30:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079911","UTAHDWQ_WQX-WRI220711-4925218-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925218-0718-4-C/results/970079911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","09:30:00","MST","2022-07-18 16:30:00",NA,"0.869",869,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079912","UTAHDWQ_WQX-WRI220711-4925218-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925218-0718-4-C/results/970079912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14364","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","09:30:00","MST","2022-08-08 16:30:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079915","UTAHDWQ_WQX-WRI220801-4925218-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925218-0808-4-C/results/970079915/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14365","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","09:30:00","MST","2022-08-08 16:30:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079917","UTAHDWQ_WQX-WRI220801-4925218-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925218-0808-4-C/results/970079917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14366","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","09:20:00","MST","2022-09-12 16:20:00",NA,"1.73",1730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079944","UTAHDWQ_WQX-WRI220912-4925218-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925218-0912-4-C/results/970079944/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14246","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","09:20:00","MST","2022-09-12 16:20:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079946","UTAHDWQ_WQX-WRI220912-4925218-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","EAST CANYON CK AB MORMON FLAT","River/Stream",NA,"40.8156500000",40.81565,"-111.5851400000",-111.58514,"OK","16020102","UTAHDWQ_WQX-4925218",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8156500000","-111.5851400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925218-0912-4-C/results/970079946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14368","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","09:50:00","MST","2022-04-04 16:50:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079966","UTAHDWQ_WQX-WRI220404-4925230-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925230-0404-4-C/results/970079966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14369","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","09:50:00","MST","2022-04-04 16:50:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079970","UTAHDWQ_WQX-WRI220404-4925230-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925230-0404-4-C/results/970079970/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14370","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","09:55:00","MST","2022-05-09 16:55:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079981","UTAHDWQ_WQX-WRI220509-4925230-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925230-0509-4-C/results/970079981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14371","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","09:55:00","MST","2022-05-09 16:55:00",NA,"0.731",731,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079983","UTAHDWQ_WQX-WRI220509-4925230-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925230-0509-4-C/results/970079983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14251","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","09:45:00","MST","2022-06-13 16:45:00",NA,"2.47",2470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970079992","UTAHDWQ_WQX-WRI220613-4925230-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925230-0613-4-C/results/970079992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14373","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","09:45:00","MST","2022-06-13 16:45:00",NA,"0.952",952,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080005","UTAHDWQ_WQX-WRI220613-4925230-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925230-0613-4-C/results/970080005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14374","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","10:00:00","MST","2022-07-18 17:00:00",NA,"1.45",1450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080012","UTAHDWQ_WQX-WRI220711-4925230-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925230-0718-4-C/results/970080012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14254","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","10:00:00","MST","2022-07-18 17:00:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080013","UTAHDWQ_WQX-WRI220711-4925230-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925230-0718-4-C/results/970080013/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14255","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","09:50:00","MST","2022-08-08 16:50:00",NA,"1.75",1750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080057","UTAHDWQ_WQX-WRI220801-4925230-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925230-0808-4-C/results/970080057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14256","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","09:50:00","MST","2022-08-08 16:50:00",NA,"1.76",1760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080062","UTAHDWQ_WQX-WRI220801-4925230-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925230-0808-4-C/results/970080062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14257","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","09:50:00","MST","2022-09-12 16:50:00",NA,"2.88",2880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080077","UTAHDWQ_WQX-WRI220912-4925230-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925230-0912-4-C/results/970080077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14258","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","09:50:00","MST","2022-09-12 16:50:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080084","UTAHDWQ_WQX-WRI220912-4925230-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925230-0912-4-C/results/970080084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14259","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","10:00:00","MST","2022-04-04 17:00:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080089","UTAHDWQ_WQX-WRI220404-4925231-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925231-0404-4-C/results/970080089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14260","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","10:00:00","MST","2022-04-04 17:00:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080105","UTAHDWQ_WQX-WRI220404-4925231-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925231-0404-4-C/results/970080105/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14261","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","10:00:00","MST","2022-05-09 17:00:00",NA,"0.797",797,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080115","UTAHDWQ_WQX-WRI220509-4925231-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925231-0509-4-C/results/970080115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14262","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","10:00:00","MST","2022-05-09 17:00:00",NA,"0.702",702,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080121","UTAHDWQ_WQX-WRI220509-4925231-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925231-0509-4-C/results/970080121/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14263","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","09:50:00","MST","2022-06-13 16:50:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080143","UTAHDWQ_WQX-WRI220613-4925231-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925231-0613-4-C/results/970080143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14264","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","09:50:00","MST","2022-06-13 16:50:00",NA,"0.898",898,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080145","UTAHDWQ_WQX-WRI220613-4925231-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925231-0613-4-C/results/970080145/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14265","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","10:10:00","MST","2022-07-18 17:10:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080151","UTAHDWQ_WQX-WRI220711-4925231-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925231-0718-4-C/results/970080151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14266","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","10:10:00","MST","2022-07-18 17:10:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080155","UTAHDWQ_WQX-WRI220711-4925231-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925231-0718-4-C/results/970080155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14267","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","10:00:00","MST","2022-08-08 17:00:00",NA,"1.75",1750,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080167","UTAHDWQ_WQX-WRI220801-4925231-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925231-0808-4-C/results/970080167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14268","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","10:00:00","MST","2022-08-08 17:00:00",NA,"1.76",1760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080182","UTAHDWQ_WQX-WRI220801-4925231-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925231-0808-4-C/results/970080182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14269","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","10:00:00","MST","2022-09-12 17:00:00",NA,"2.71",2710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080187","UTAHDWQ_WQX-WRI220912-4925231-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925231-0912-4-C/results/970080187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14270","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","10:00:00","MST","2022-09-12 17:00:00",NA,"2.55",2550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080189","UTAHDWQ_WQX-WRI220912-4925231-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230","River/Stream","Replicate of 4925230","40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925231",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925231-0912-4-C/results/970080189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14271","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","10:20:00","MST","2022-04-04 17:20:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080202","UTAHDWQ_WQX-WRI220404-4925240-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925240-0404-4-C/results/970080202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14272","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","10:20:00","MST","2022-04-04 17:20:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080221","UTAHDWQ_WQX-WRI220404-4925240-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925240-0404-4-C/results/970080221/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14273","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","10:45:00","MST","2022-05-09 17:45:00",NA,"0.565",565,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080239","UTAHDWQ_WQX-WRI220509-4925240-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925240-0509-4-C/results/970080239/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14274","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","10:45:00","MST","2022-05-09 17:45:00",NA,"0.585",585,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080280","UTAHDWQ_WQX-WRI220509-4925240-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:20:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925240-0509-4-C/results/970080280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14275","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","10:10:00","MST","2022-06-13 17:10:00",NA,"2.64",2640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080309","UTAHDWQ_WQX-WRI220613-4925240-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925240-0613-4-C/results/970080309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14397","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","10:10:00","MST","2022-06-13 17:10:00",NA,"0.99",990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080310","UTAHDWQ_WQX-WRI220613-4925240-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925240-0613-4-C/results/970080310/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14398","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","10:45:00","MST","2022-07-18 17:45:00",NA,"1.51",1510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080346","UTAHDWQ_WQX-WRI220711-4925240-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925240-0718-4-C/results/970080346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14278","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","10:45:00","MST","2022-07-18 17:45:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080365","UTAHDWQ_WQX-WRI220711-4925240-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925240-0718-4-C/results/970080365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14400","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","10:30:00","MST","2022-08-08 17:30:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080369","UTAHDWQ_WQX-WRI220801-4925240-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925240-0808-4-C/results/970080369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14401","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","10:30:00","MST","2022-08-08 17:30:00",NA,"1.98",1980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080394","UTAHDWQ_WQX-WRI220801-4925240-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925240-0808-4-C/results/970080394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14281","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","10:15:00","MST","2022-09-12 17:15:00",NA,"3.01",3010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080432","UTAHDWQ_WQX-WRI220912-4925240-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925240-0912-4-C/results/970080432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14282","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","10:15:00","MST","2022-09-12 17:15:00",NA,"2.83",2830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080435","UTAHDWQ_WQX-WRI220912-4925240-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON CK BL EAST CANYON WWTP","River/Stream",NA,"40.7596000000",40.7596,"-111.5644800000",-111.56448,"OK","16020102","UTAHDWQ_WQX-4925240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7596000000","-111.5644800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925240-0912-4-C/results/970080435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14283","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","10:30:00","MST","2022-04-04 17:30:00",NA,"4.85",4850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080469","UTAHDWQ_WQX-WRI220404-4925250-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925250-0404-4-C/results/970080469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14284","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","10:30:00","MST","2022-04-04 17:30:00",NA,"4.81",4810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080488","UTAHDWQ_WQX-WRI220404-4925250-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925250-0404-4-C/results/970080488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14285","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","10:30:00","MST","2022-05-09 17:30:00",NA,"5.69",5690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080504","UTAHDWQ_WQX-WRI220509-4925250-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925250-0509-4-C/results/970080504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14286","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","10:30:00","MST","2022-05-09 17:30:00",NA,"5.65",5650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080533","UTAHDWQ_WQX-WRI220509-4925250-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925250-0509-4-C/results/970080533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14287","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","10:00:00","MST","2022-06-13 17:00:00",NA,"4.38",4380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080561","UTAHDWQ_WQX-WRI220613-4925250-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925250-0613-4-C/results/970080561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14288","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","10:00:00","MST","2022-06-13 17:00:00",NA,"5.13",5130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080569","UTAHDWQ_WQX-WRI220613-4925250-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925250-0613-4-C/results/970080569/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14289","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","10:30:00","MST","2022-07-18 17:30:00",NA,"3.7",3700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080590","UTAHDWQ_WQX-WRI220711-4925250-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925250-0718-4-C/results/970080590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14169","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","10:30:00","MST","2022-07-18 17:30:00",NA,"4.01",4010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080596","UTAHDWQ_WQX-WRI220711-4925250-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925250-0718-4-C/results/970080596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14291","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","10:50:00","MST","2022-08-08 17:50:00",NA,"5.32",5320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080637","UTAHDWQ_WQX-WRI220801-4925250-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925250-0808-4-C/results/970080637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14292","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","10:50:00","MST","2022-08-08 17:50:00",NA,"5.31",5310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080644","UTAHDWQ_WQX-WRI220801-4925250-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925250-0808-4-C/results/970080644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14293","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","10:30:00","MST","2022-09-12 17:30:00",NA,"7.8",7800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080666","UTAHDWQ_WQX-WRI220912-4925250-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925250-0912-4-C/results/970080666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14294","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","10:30:00","MST","2022-09-12 17:30:00",NA,"8",8000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080667","UTAHDWQ_WQX-WRI220912-4925250-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","EAST CANYON WWTP","Facility Other",NA,"40.7578600000",40.75786,"-111.5638600000",-111.56386,"OK","16020102","UTAHDWQ_WQX-4925250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7578600000","-111.5638600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925250-0912-4-C/results/970080667/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14295","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","11:10:00","MST","2022-04-04 18:10:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080716","UTAHDWQ_WQX-WRI220404-4925260-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925260-0404-4-C/results/970080716/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14296","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","11:10:00","MST","2022-04-04 18:10:00",NA,"0.761",761,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080739","UTAHDWQ_WQX-WRI220404-4925260-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925260-0404-4-C/results/970080739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14297","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","11:30:00","MST","2022-05-09 18:30:00",NA,"0.445",445,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080763","UTAHDWQ_WQX-WRI220509-4925260-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925260-0509-4-C/results/970080763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14298","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","11:30:00","MST","2022-05-09 18:30:00",NA,"0.583",583,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080787","UTAHDWQ_WQX-WRI220509-4925260-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925260-0509-4-C/results/970080787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14299","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","11:00:00","MST","2022-06-13 18:00:00",NA,"0.465",465,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080798","UTAHDWQ_WQX-WRI220613-4925260-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925260-0613-4-C/results/970080798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14300","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","11:00:00","MST","2022-06-13 18:00:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080805","UTAHDWQ_WQX-WRI220613-4925260-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925260-0613-4-C/results/970080805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14422","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:40:00","MST","2022-07-18 18:40:00",NA,"0.256",256,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080864","UTAHDWQ_WQX-WRI220711-4925260-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925260-0718-4-C/results/970080864/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14423","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:40:00","MST","2022-07-18 18:40:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080876","UTAHDWQ_WQX-WRI220711-4925260-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925260-0718-4-C/results/970080876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14424","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","11:35:00","MST","2022-08-08 18:35:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080885","UTAHDWQ_WQX-WRI220801-4925260-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925260-0808-4-C/results/970080885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14425","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","11:35:00","MST","2022-08-08 18:35:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080892","UTAHDWQ_WQX-WRI220801-4925260-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925260-0808-4-C/results/970080892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14426","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","10:50:00","MST","2022-09-12 17:50:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080941","UTAHDWQ_WQX-WRI220912-4925260-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925260-0912-4-C/results/970080941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13334","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","10:50:00","MST","2022-09-12 17:50:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080946","UTAHDWQ_WQX-WRI220912-4925260-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","E CAN CK AB EAST CANYON WWTP","River/Stream",NA,"40.7554800000",40.75548,"-111.5640000000",-111.564,"OK","16020102","UTAHDWQ_WQX-4925260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7554800000","-111.5640000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925260-0912-4-C/results/970080946/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13335","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","11:35:00","MST","2022-04-04 18:35:00",NA,"0.7",700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080979","UTAHDWQ_WQX-WRI220404-4925320-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925320-0404-4-C/results/970080979/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13336","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","11:35:00","MST","2022-04-04 18:35:00",NA,"0.739",739,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080983","UTAHDWQ_WQX-WRI220404-4925320-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925320-0404-4-C/results/970080983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13337","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","12:00:00","MST","2022-05-09 19:00:00",NA,"0.543",543,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080996","UTAHDWQ_WQX-WRI220509-4925320-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925320-0509-4-C/results/970080996/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13338","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","12:00:00","MST","2022-05-09 19:00:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970080997","UTAHDWQ_WQX-WRI220509-4925320-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925320-0509-4-C/results/970080997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13339","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","11:15:00","MST","2022-06-13 18:15:00",NA,"1.81",1810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081005","UTAHDWQ_WQX-WRI220613-4925320-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925320-0613-4-C/results/970081005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13340","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","11:15:00","MST","2022-06-13 18:15:00",NA,"0.732",732,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081016","UTAHDWQ_WQX-WRI220613-4925320-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925320-0613-4-C/results/970081016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13341","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:15:00","MST","2022-07-18 19:15:00",NA,"0.482",482,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081029","UTAHDWQ_WQX-WRI220711-4925320-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925320-0718-4-C/results/970081029/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13342","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:15:00","MST","2022-07-18 19:15:00",NA,"0.594",594,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081034","UTAHDWQ_WQX-WRI220711-4925320-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925320-0718-4-C/results/970081034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13343","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","12:15:00","MST","2022-08-08 19:15:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081039","UTAHDWQ_WQX-WRI220801-4925320-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925320-0808-4-C/results/970081039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13344","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","12:15:00","MST","2022-08-08 19:15:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081058","UTAHDWQ_WQX-WRI220801-4925320-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925320-0808-4-C/results/970081058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13345","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","11:15:00","MST","2022-09-12 18:15:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081068","UTAHDWQ_WQX-WRI220912-4925320-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925320-0912-4-C/results/970081068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13346","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","11:15:00","MST","2022-09-12 18:15:00",NA,"0.717",717,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081070","UTAHDWQ_WQX-WRI220912-4925320-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MURNIN CREEK AT I-80 XING","River/Stream",NA,"40.7249100000",40.72491,"-111.5361100000",-111.53611,"OK","16020102","UTAHDWQ_WQX-4925320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7249100000","-111.5361100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925320-0912-4-C/results/970081070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13347","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","11:20:00","MST","2022-04-04 18:20:00",NA,"0.373",373,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081083","UTAHDWQ_WQX-WRI220404-4925330-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925330-0404-4-C/results/970081083/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13348","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","11:20:00","MST","2022-04-04 18:20:00",NA,"0.37",370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081098","UTAHDWQ_WQX-WRI220404-4925330-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925330-0404-4-C/results/970081098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13349","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","11:45:00","MST","2022-05-09 18:45:00",NA,"0.152",152,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081100","UTAHDWQ_WQX-WRI220509-4925330-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925330-0509-4-C/results/970081100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13350","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","11:45:00","MST","2022-05-09 18:45:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081104","UTAHDWQ_WQX-WRI220509-4925330-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925330-0509-4-C/results/970081104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13351","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","11:10:00","MST","2022-06-13 18:10:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081119","UTAHDWQ_WQX-WRI220613-4925330-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925330-0613-4-C/results/970081119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13352","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","11:10:00","MST","2022-06-13 18:10:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081132","UTAHDWQ_WQX-WRI220613-4925330-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925330-0613-4-C/results/970081132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13353","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:00:00","MST","2022-07-18 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081136","UTAHDWQ_WQX-WRI220711-4925330-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925330-0718-4-C/results/970081136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13354","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:00:00","MST","2022-07-18 19:00:00",NA,"0.164",164,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081138","UTAHDWQ_WQX-WRI220711-4925330-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925330-0718-4-C/results/970081138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13355","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","12:00:00","MST","2022-08-08 19:00:00",NA,"0.661",661,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081158","UTAHDWQ_WQX-WRI220801-4925330-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925330-0808-4-C/results/970081158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13356","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","12:00:00","MST","2022-08-08 19:00:00",NA,"0.867",867,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081170","UTAHDWQ_WQX-WRI220801-4925330-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925330-0808-4-C/results/970081170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13357","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","11:00:00","MST","2022-09-12 18:00:00",NA,"0.216",216,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081172","UTAHDWQ_WQX-WRI220912-4925330-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925330-0912-4-C/results/970081172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13358","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","11:00:00","MST","2022-09-12 18:00:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081177","UTAHDWQ_WQX-WRI220912-4925330-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING","River/Stream",NA,"40.7387100000",40.73871,"-111.5561200000",-111.55612,"OK","16020102","UTAHDWQ_WQX-4925330",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7387100000","-111.5561200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925330-0912-4-C/results/970081177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13359","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","11:25:00","MST","2022-04-04 18:25:00",NA,"0.786",786,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081184","UTAHDWQ_WQX-WRI220404-4925350-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925350-0404-4-C/results/970081184/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13360","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","11:25:00","MST","2022-04-04 18:25:00",NA,"0.778",778,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081185","UTAHDWQ_WQX-WRI220404-4925350-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925350-0404-4-C/results/970081185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13361","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","12:15:00","MST","2022-05-09 19:15:00",NA,"0.491",491,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081211","UTAHDWQ_WQX-WRI220509-4925350-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925350-0509-4-C/results/970081211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13362","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","12:15:00","MST","2022-05-09 19:15:00",NA,"0.575",575,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081214","UTAHDWQ_WQX-WRI220509-4925350-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925350-0509-4-C/results/970081214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13363","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","11:20:00","MST","2022-06-13 18:20:00",NA,"0.576",576,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081223","UTAHDWQ_WQX-WRI220613-4925350-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925350-0613-4-C/results/970081223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13364","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","11:20:00","MST","2022-06-13 18:20:00",NA,"0.716",716,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081234","UTAHDWQ_WQX-WRI220613-4925350-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925350-0613-4-C/results/970081234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13365","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:30:00","MST","2022-07-18 19:30:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081248","UTAHDWQ_WQX-WRI220711-4925350-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925350-0718-4-C/results/970081248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13366","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:30:00","MST","2022-07-18 19:30:00",NA,"0.552",552,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081250","UTAHDWQ_WQX-WRI220711-4925350-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925350-0718-4-C/results/970081250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13367","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","12:30:00","MST","2022-08-08 19:30:00",NA,"0.537",537,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081277","UTAHDWQ_WQX-WRI220801-4925350-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925350-0808-4-C/results/970081277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13368","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","12:30:00","MST","2022-08-08 19:30:00",NA,"0.603",603,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081278","UTAHDWQ_WQX-WRI220801-4925350-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925350-0808-4-C/results/970081278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13369","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","11:25:00","MST","2022-09-12 18:25:00",NA,"0.922",922,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081280","UTAHDWQ_WQX-WRI220912-4925350-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925350-0912-4-C/results/970081280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13370","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","11:25:00","MST","2022-09-12 18:25:00",NA,"0.22",220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081283","UTAHDWQ_WQX-WRI220912-4925350-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck at Blackhawk Station (Glenwild Bridge)","River/Stream",NA,"40.7283900000",40.72839,"-111.5366700000",-111.53667,"OK","16020102","UTAHDWQ_WQX-4925350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7283900000","-111.5366700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925350-0912-4-C/results/970081283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13371","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","11:40:00","MST","2022-04-04 18:40:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081298","UTAHDWQ_WQX-WRI220404-4925360-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925360-0404-4-C/results/970081298/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13372","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","11:40:00","MST","2022-04-04 18:40:00",NA,"0.593",593,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081312","UTAHDWQ_WQX-WRI220404-4925360-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925360-0404-4-C/results/970081312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13373","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","12:30:00","MST","2022-05-09 19:30:00",NA,"0.538",538,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081317","UTAHDWQ_WQX-WRI220509-4925360-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925360-0509-4-C/results/970081317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13374","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","12:30:00","MST","2022-05-09 19:30:00",NA,"0.575",575,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081321","UTAHDWQ_WQX-WRI220509-4925360-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925360-0509-4-C/results/970081321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13375","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","11:30:00","MST","2022-06-13 18:30:00",NA,"0.565",565,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081344","UTAHDWQ_WQX-WRI220613-4925360-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925360-0613-4-C/results/970081344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13376","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","11:30:00","MST","2022-06-13 18:30:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081348","UTAHDWQ_WQX-WRI220613-4925360-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925360-0613-4-C/results/970081348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13377","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:45:00","MST","2022-07-18 19:45:00",NA,"0.523",523,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081352","UTAHDWQ_WQX-WRI220711-4925360-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925360-0718-4-C/results/970081352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13378","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:45:00","MST","2022-07-18 19:45:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081356","UTAHDWQ_WQX-WRI220711-4925360-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925360-0718-4-C/results/970081356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13379","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","12:50:00","MST","2022-08-08 19:50:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081367","UTAHDWQ_WQX-WRI220801-4925360-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925360-0808-4-C/results/970081367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13380","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","12:50:00","MST","2022-08-08 19:50:00",NA,"0.399",399,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081379","UTAHDWQ_WQX-WRI220801-4925360-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925360-0808-4-C/results/970081379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13381","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","11:40:00","MST","2022-09-12 18:40:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081395","UTAHDWQ_WQX-WRI220912-4925360-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925360-0912-4-C/results/970081395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13382","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","11:40:00","MST","2022-09-12 18:40:00",NA,"1.77",1770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081396","UTAHDWQ_WQX-WRI220912-4925360-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Kimball Ck ab cnfl/ East Canyon Ck","River/Stream",NA,"40.7229800000",40.72298,"-111.5184800000",-111.51848,"OK","16020102","UTAHDWQ_WQX-4925360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229800000","-111.5184800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925360-0912-4-C/results/970081396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13383","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","14:15:00","MST","2022-04-04 21:15:00",NA,"0.734",734,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081397","UTAHDWQ_WQX-WRI220404-4925373-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925373-0404-4-C/results/970081397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13384","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","14:15:00","MST","2022-04-04 21:15:00",NA,"0.808",808,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081438","UTAHDWQ_WQX-WRI220404-4925373-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925373-0404-4-C/results/970081438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13385","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","15:30:00","MST","2022-05-09 22:30:00",NA,"0.71",710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081444","UTAHDWQ_WQX-WRI220509-4925373-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925373-0509-4-C/results/970081444/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13386","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","15:30:00","MST","2022-05-09 22:30:00",NA,"0.685",685,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081448","UTAHDWQ_WQX-WRI220509-4925373-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925373-0509-4-C/results/970081448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13387","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","14:15:00","MST","2022-06-13 21:15:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081450","UTAHDWQ_WQX-WRI220613-4925373-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925373-0613-4-C/results/970081450/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13388","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","14:15:00","MST","2022-06-13 21:15:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081474","UTAHDWQ_WQX-WRI220613-4925373-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925373-0613-4-C/results/970081474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13389","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","15:00:00","MST","2022-06-30 22:00:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081478","UTAHDWQ_WQX-WRI220629-4925373-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925373-0630-4-C/results/970081478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13390","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","15:00:00","MST","2022-06-30 22:00:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081492","UTAHDWQ_WQX-WRI220629-4925373-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925373-0630-4-C/results/970081492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13391","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","15:50:00","MST","2022-07-18 22:50:00",NA,"0.998",998,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081510","UTAHDWQ_WQX-WRI220711-4925373-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925373-0718-4-C/results/970081510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13392","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","15:50:00","MST","2022-07-18 22:50:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081519","UTAHDWQ_WQX-WRI220711-4925373-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925373-0718-4-C/results/970081519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13393","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","16:00:00","MST","2022-08-08 23:00:00",NA,"0.918",918,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081540","UTAHDWQ_WQX-WRI220801-4925373-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925373-0808-4-C/results/970081540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13394","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","16:00:00","MST","2022-08-08 23:00:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081549","UTAHDWQ_WQX-WRI220801-4925373-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925373-0808-4-C/results/970081549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13395","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-23","17:20:00","MST","2022-08-24 00:20:00",NA,"0.953",953,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081560","UTAHDWQ_WQX-WRI220829-4925373-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925373-0823-4-C/results/970081560/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13396","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","17:20:00","MST","2022-08-24 00:20:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081573","UTAHDWQ_WQX-WRI220829-4925373-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925373-0823-4-C/results/970081573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13397","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","14:15:00","MST","2022-09-12 21:15:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081588","UTAHDWQ_WQX-WRI220912-4925373-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925373-0912-4-C/results/970081588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13398","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","14:15:00","MST","2022-09-12 21:15:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081602","UTAHDWQ_WQX-WRI220912-4925373-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925373-0912-4-C/results/970081602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13399","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-29","12:26:00","MST","2022-09-29 19:26:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081623","UTAHDWQ_WQX-WRI220926-4925373-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4925373-0929-4-C/results/970081623/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13400","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","12:26:00","MST","2022-09-29 19:26:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081629","UTAHDWQ_WQX-WRI220926-4925373-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area","River/Stream",NA,"40.7248000000",40.7248,"-111.5142500000",-111.51425,"OK","16020102","UTAHDWQ_WQX-4925373",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7248000000","-111.5142500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4925373-0929-4-C/results/970081629/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13401","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","12:20:00","MST","2022-04-04 19:20:00",NA,"0.452",452,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081637","UTAHDWQ_WQX-WRI220404-4925440-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925440-0404-4-C/results/970081637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13402","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","12:20:00","MST","2022-04-04 19:20:00",NA,"0.433",433,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081646","UTAHDWQ_WQX-WRI220404-4925440-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925440-0404-4-C/results/970081646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13403","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","13:45:00","MST","2022-05-09 20:45:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081658","UTAHDWQ_WQX-WRI220509-4925440-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925440-0509-4-C/results/970081658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13404","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","13:45:00","MST","2022-05-09 20:45:00",NA,"0.649",649,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081661","UTAHDWQ_WQX-WRI220509-4925440-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925440-0509-4-C/results/970081661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13405","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","12:30:00","MST","2022-06-13 19:30:00",NA,"0.842",842,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081667","UTAHDWQ_WQX-WRI220613-4925440-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925440-0613-4-C/results/970081667/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13406","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","12:30:00","MST","2022-06-13 19:30:00",NA,"0.48",480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081691","UTAHDWQ_WQX-WRI220613-4925440-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925440-0613-4-C/results/970081691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13407","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:40:00","MST","2022-07-18 20:40:00",NA,"0.644",644,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081694","UTAHDWQ_WQX-WRI220711-4925440-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925440-0718-4-C/results/970081694/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13408","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:40:00","MST","2022-07-18 20:40:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081704","UTAHDWQ_WQX-WRI220711-4925440-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925440-0718-4-C/results/970081704/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13409","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","13:55:00","MST","2022-08-08 20:55:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081715","UTAHDWQ_WQX-WRI220801-4925440-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925440-0808-4-C/results/970081715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13410","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","13:55:00","MST","2022-08-08 20:55:00",NA,"0.325",325,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081721","UTAHDWQ_WQX-WRI220801-4925440-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925440-0808-4-C/results/970081721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13411","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","12:20:00","MST","2022-09-12 19:20:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081734","UTAHDWQ_WQX-WRI220912-4925440-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925440-0912-4-C/results/970081734/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13412","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","12:20:00","MST","2022-09-12 19:20:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081739","UTAHDWQ_WQX-WRI220912-4925440-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","MCLEOD CREEK AT U-224 XING","River/Stream",NA,"40.6818900000",40.68189,"-111.5340900000",-111.53409,"OK","16020102","UTAHDWQ_WQX-4925440",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6818900000","-111.5340900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925440-0912-4-C/results/970081739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13413","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","15:45:00","MST","2022-09-20 22:45:00",NA,"0.915",915,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081779","UTAHDWQ_WQX-WLA2022-4925508-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River above Mountain Green Lagoons","River/Stream",NA,"41.1354500000",41.13545,"-111.8121100000",-111.81211,"OK","16020102","UTAHDWQ_WQX-4925508",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1354500000","-111.8121100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925508-0920-4-C/results/970081779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13414","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","15:45:00","MST","2022-09-20 22:45:00",NA,"0.88",880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081798","UTAHDWQ_WQX-WLA2022-4925508-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River above Mountain Green Lagoons","River/Stream",NA,"41.1354500000",41.13545,"-111.8121100000",-111.81211,"OK","16020102","UTAHDWQ_WQX-4925508",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1354500000","-111.8121100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925508-0920-4-C/results/970081798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13415","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","14:50:00","MST","2022-09-26 21:50:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081824","UTAHDWQ_WQX-WLA2022-4925508-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River above Mountain Green Lagoons","River/Stream",NA,"41.1354500000",41.13545,"-111.8121100000",-111.81211,"OK","16020102","UTAHDWQ_WQX-4925508",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1354500000","-111.8121100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925508-0926-4-C/results/970081824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13416","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","14:50:00","MST","2022-09-26 21:50:00",NA,"0.858",858,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081831","UTAHDWQ_WQX-WLA2022-4925508-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Weber River above Mountain Green Lagoons","River/Stream",NA,"41.1354500000",41.13545,"-111.8121100000",-111.81211,"OK","16020102","UTAHDWQ_WQX-4925508",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1354500000","-111.8121100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925508-0926-4-C/results/970081831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13417","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:40:00","MST","2022-04-05 20:40:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081835","UTAHDWQ_WQX-WRI220404-4925517-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925517-0405-4-C/results/970081835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13418","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:40:00","MST","2022-04-05 20:40:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081843","UTAHDWQ_WQX-WRI220404-4925517-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925517-0405-4-C/results/970081843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13419","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","09:55:00","MST","2022-06-16 16:55:00",NA,"0.36",360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081868","UTAHDWQ_WQX-WRI220613-4925517-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925517-0616-4-C/results/970081868/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13420","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","09:55:00","MST","2022-06-16 16:55:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081875","UTAHDWQ_WQX-WRI220613-4925517-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925517-0616-4-C/results/970081875/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13421","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","12:50:00","MST","2022-07-12 19:50:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081890","UTAHDWQ_WQX-WRI220711-4925517-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925517-0712-4-C/results/970081890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13422","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","12:50:00","MST","2022-07-12 19:50:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081894","UTAHDWQ_WQX-WRI220711-4925517-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925517-0712-4-C/results/970081894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13423","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","13:35:00","MST","2022-08-02 20:35:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081903","UTAHDWQ_WQX-WRI220801-4925517-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925517-0802-4-C/results/970081903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13424","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","13:35:00","MST","2022-08-02 20:35:00",NA,"0.492",492,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081905","UTAHDWQ_WQX-WRI220801-4925517-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925517-0802-4-C/results/970081905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13425","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","13:00:00","MST","2022-09-14 20:00:00",NA,"0.541",541,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081924","UTAHDWQ_WQX-WRI220912-4925517-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925517-0914-4-C/results/970081924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13426","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","13:00:00","MST","2022-09-14 20:00:00",NA,"0.316",316,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081927","UTAHDWQ_WQX-WRI220912-4925517-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925517-0914-4-C/results/970081927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13427","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","10:15:00","MST","2022-09-27 17:15:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081934","UTAHDWQ_WQX-WLA2022-4925517-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925517-0927-4-C/results/970081934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13428","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","10:15:00","MST","2022-09-27 17:15:00",NA,"0.22",220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081935","UTAHDWQ_WQX-WLA2022-4925517-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Peterson Creek at Morgan Valley Drive Xing","River/Stream",NA,"41.1118900000",41.11189,"-111.7690000000",-111.769,"OK","16020102","UTAHDWQ_WQX-4925517",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1118900000","-111.7690000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925517-0927-4-C/results/970081935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13429","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","13:15:00","MST","2022-09-21 20:15:00",NA,"0.766",766,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081947","UTAHDWQ_WQX-WLA2022-4925519-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Enterprise Slough ab confluence with Weber RIver","River/Stream",NA,"41.1075200000",41.10752,"-111.7519100000",-111.75191,"OK","16020102","UTAHDWQ_WQX-4925519",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1075200000","-111.7519100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925519-0921-4-C/results/970081947/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13430","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","13:15:00","MST","2022-09-21 20:15:00",NA,"0.86",860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970081970","UTAHDWQ_WQX-WLA2022-4925519-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Enterprise Slough ab confluence with Weber RIver","River/Stream",NA,"41.1075200000",41.10752,"-111.7519100000",-111.75191,"OK","16020102","UTAHDWQ_WQX-4925519",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1075200000","-111.7519100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925519-0921-4-C/results/970081970/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13431","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:45:00","MST","2022-04-05 20:45:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082010","UTAHDWQ_WQX-WRI220404-4925520-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925520-0405-4-C/results/970082010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13432","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:45:00","MST","2022-04-05 20:45:00",NA,"0.637",637,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082020","UTAHDWQ_WQX-WRI220404-4925520-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925520-0405-4-C/results/970082020/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13433","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","10:30:00","MST","2022-06-16 17:30:00",NA,"0.557",557,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082026","UTAHDWQ_WQX-WRI220613-4925520-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925520-0616-4-C/results/970082026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13434","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","10:30:00","MST","2022-06-16 17:30:00",NA,"0.547",547,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082040","UTAHDWQ_WQX-WRI220613-4925520-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925520-0616-4-C/results/970082040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13435","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","13:00:00","MST","2022-07-12 20:00:00",NA,"0.407",407,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082058","UTAHDWQ_WQX-WRI220711-4925520-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925520-0712-4-C/results/970082058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13436","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","13:00:00","MST","2022-07-12 20:00:00",NA,"0.504",504,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082059","UTAHDWQ_WQX-WRI220711-4925520-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925520-0712-4-C/results/970082059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13437","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","13:45:00","MST","2022-08-02 20:45:00",NA,"0.903",903,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082076","UTAHDWQ_WQX-WRI220801-4925520-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925520-0802-4-C/results/970082076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13438","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","13:45:00","MST","2022-08-02 20:45:00",NA,"0.774",774,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082084","UTAHDWQ_WQX-WRI220801-4925520-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925520-0802-4-C/results/970082084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13439","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","13:15:00","MST","2022-09-14 20:15:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082087","UTAHDWQ_WQX-WRI220912-4925520-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925520-0914-4-C/results/970082087/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13440","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","13:15:00","MST","2022-09-14 20:15:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082094","UTAHDWQ_WQX-WRI220912-4925520-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925520-0914-4-C/results/970082094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13441","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","14:45:00","MST","2022-09-20 21:45:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082098","UTAHDWQ_WQX-WLA2022-4925520-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0920-4-C/results/970082098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13442","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","14:45:00","MST","2022-09-20 21:45:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082132","UTAHDWQ_WQX-WLA2022-4925520-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0920-4-C/results/970082132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13443","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","14:00:00","MST","2022-09-26 21:00:00",NA,"0.614",614,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082154","UTAHDWQ_WQX-WLA2022-4925520-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0926-4-C/results/970082154/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13444","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","14:00:00","MST","2022-09-26 21:00:00",NA,"0.594",594,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082155","UTAHDWQ_WQX-WLA2022-4925520-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0926-4-C/results/970082155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13445","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","12:20:00","MST","2022-09-28 19:20:00",NA,"0.635",635,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082164","UTAHDWQ_WQX-WLA2022-4925520-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0928-4-C/results/970082164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13446","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","12:20:00","MST","2022-09-28 19:20:00",NA,"0.655",655,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082174","UTAHDWQ_WQX-WLA2022-4925520-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R @ MILTON/STODDARD RD XING","River/Stream",NA,"41.0616100000",41.06161,"-111.7285500000",-111.72855,"OK","16020102","UTAHDWQ_WQX-4925520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0616100000","-111.7285500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0928-4-C/results/970082174/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13447","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","14:00:00","MST","2022-04-05 21:00:00",NA,"35.8",35800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082184","UTAHDWQ_WQX-WRI220404-4925530-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925530-0405-4-C/results/970082184/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13448","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","14:00:00","MST","2022-04-05 21:00:00",NA,"31.8",31800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082193","UTAHDWQ_WQX-WRI220404-4925530-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925530-0405-4-C/results/970082193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13449","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","13:30:00","MST","2022-05-24 20:30:00",NA,"33.1",33100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082207","UTAHDWQ_WQX-WRI220509-4925530-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925530-0524-4-C/results/970082207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13450","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","13:30:00","MST","2022-05-24 20:30:00",NA,"38.6",38600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082210","UTAHDWQ_WQX-WRI220509-4925530-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925530-0524-4-C/results/970082210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13451","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","13:30:00","MST","2022-07-12 20:30:00",NA,"21.3",21300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082215","UTAHDWQ_WQX-WRI220711-4925530-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925530-0712-4-C/results/970082215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13452","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","13:30:00","MST","2022-07-12 20:30:00",NA,"28.3",28300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082216","UTAHDWQ_WQX-WRI220711-4925530-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925530-0712-4-C/results/970082216/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13453","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-02","14:10:00","MST","2022-08-02 21:10:00",NA,"26.8",26800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082230","UTAHDWQ_WQX-WRI220801-4925530-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925530-0802-4-C/results/970082230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13454","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-02","14:10:00","MST","2022-08-02 21:10:00",NA,"31.7",31700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082250","UTAHDWQ_WQX-WRI220801-4925530-0802-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925530-0802-4-C/results/970082250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13455","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","13:45:00","MST","2022-09-14 20:45:00",NA,"38",38000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082255","UTAHDWQ_WQX-WRI220912-4925530-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925530-0914-4-C/results/970082255/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13456","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","13:45:00","MST","2022-09-14 20:45:00",NA,"35.8",35800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082257","UTAHDWQ_WQX-WRI220912-4925530-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925530-0914-4-C/results/970082257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13457","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:00:00","MST","2022-09-20 18:00:00",NA,"37.4",37400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082281","UTAHDWQ_WQX-WLA2022-4925530-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925530-0920-4-C/results/970082281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13458","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:00:00","MST","2022-09-20 18:00:00",NA,"34.7",34700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082285","UTAHDWQ_WQX-WLA2022-4925530-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925530-0920-4-C/results/970082285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13459","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","11:00:00","MST","2022-09-28 18:00:00",NA,"35.3",35300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082321","UTAHDWQ_WQX-WLA2022-4925530-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925530-0928-4-C/results/970082321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13460","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","11:00:00","MST","2022-09-28 18:00:00",NA,"33.9",33900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082323","UTAHDWQ_WQX-WLA2022-4925530-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","MORGAN LAGOONS","Facility Other",NA,"41.0509400000",41.05094,"-111.6994900000",-111.69949,"OK","16020102","UTAHDWQ_WQX-4925530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0509400000","-111.6994900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925530-0928-4-C/results/970082323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13461","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","09:40:00","MST","2022-04-06 16:40:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082328","UTAHDWQ_WQX-WRI220404-4925532-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925532-0406-4-C/results/970082328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13462","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","09:40:00","MST","2022-04-06 16:40:00",NA,"0.363",363,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082335","UTAHDWQ_WQX-WRI220404-4925532-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:21:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925532-0406-4-C/results/970082335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13463","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","09:30:00","MST","2022-05-25 16:30:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082359","UTAHDWQ_WQX-WRI220509-4925532-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925532-0525-4-C/results/970082359/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13464","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","09:30:00","MST","2022-05-25 16:30:00",NA,"0.243",243,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082361","UTAHDWQ_WQX-WRI220509-4925532-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925532-0525-4-C/results/970082361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13465","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","09:00:00","MST","2022-06-16 16:00:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082381","UTAHDWQ_WQX-WRI220613-4925532-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925532-0616-4-C/results/970082381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13466","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","09:00:00","MST","2022-06-16 16:00:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082385","UTAHDWQ_WQX-WRI220613-4925532-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925532-0616-4-C/results/970082385/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13467","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","09:10:00","MST","2022-07-13 16:10:00",NA,"0.538",538,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082389","UTAHDWQ_WQX-WRI220711-4925532-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925532-0713-4-C/results/970082389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13468","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","09:10:00","MST","2022-07-13 16:10:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082394","UTAHDWQ_WQX-WRI220711-4925532-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925532-0713-4-C/results/970082394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13469","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","10:00:00","MST","2022-08-03 17:00:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082401","UTAHDWQ_WQX-WRI220801-4925532-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925532-0803-4-C/results/970082401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13470","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","10:00:00","MST","2022-08-03 17:00:00",NA,"0.43",430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082407","UTAHDWQ_WQX-WRI220801-4925532-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925532-0803-4-C/results/970082407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13471","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","10:00:00","MST","2022-09-15 17:00:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082425","UTAHDWQ_WQX-WRI220912-4925532-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925532-0915-4-C/results/970082425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13472","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","10:00:00","MST","2022-09-15 17:00:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082430","UTAHDWQ_WQX-WRI220912-4925532-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at road xing below confl North Fk. Deep Creek","River/Stream",NA,"41.0245500000",41.02455,"-111.7267000000",-111.7267,"OK","16020102","UTAHDWQ_WQX-4925532",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0245500000","-111.7267000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925532-0915-4-C/results/970082430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13473","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","11:30:00","MST","2022-09-21 18:30:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082438","UTAHDWQ_WQX-WLA2022-4925533-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at N Morgan Valley Dr xing","River/Stream",NA,"41.0391500000",41.03915,"-111.7178000000",-111.7178,"OK","16020102","UTAHDWQ_WQX-4925533",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0391500000","-111.7178000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925533-0921-4-C/results/970082438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13474","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","11:30:00","MST","2022-09-21 18:30:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082483","UTAHDWQ_WQX-WLA2022-4925533-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at N Morgan Valley Dr xing","River/Stream",NA,"41.0391500000",41.03915,"-111.7178000000",-111.7178,"OK","16020102","UTAHDWQ_WQX-4925533",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0391500000","-111.7178000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925533-0921-4-C/results/970082483/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13475","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","09:55:00","MST","2022-09-27 16:55:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082489","UTAHDWQ_WQX-WLA2022-4925533-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at N Morgan Valley Dr xing","River/Stream",NA,"41.0391500000",41.03915,"-111.7178000000",-111.7178,"OK","16020102","UTAHDWQ_WQX-4925533",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0391500000","-111.7178000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925533-0927-4-C/results/970082489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13476","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","09:55:00","MST","2022-09-27 16:55:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082497","UTAHDWQ_WQX-WLA2022-4925533-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Deep Creek at N Morgan Valley Dr xing","River/Stream",NA,"41.0391500000",41.03915,"-111.7178000000",-111.7178,"OK","16020102","UTAHDWQ_WQX-4925533",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0391500000","-111.7178000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925533-0927-4-C/results/970082497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13477","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","14:20:00","MST","2022-04-05 21:20:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082500","UTAHDWQ_WQX-WRI220404-4925540-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925540-0405-4-C/results/970082500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13478","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","14:20:00","MST","2022-04-05 21:20:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082504","UTAHDWQ_WQX-WRI220404-4925540-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925540-0405-4-C/results/970082504/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13479","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","13:50:00","MST","2022-05-24 20:50:00",NA,"0.623",623,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082525","UTAHDWQ_WQX-WRI220509-4925540-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925540-0524-4-C/results/970082525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13480","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","13:50:00","MST","2022-05-24 20:50:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082531","UTAHDWQ_WQX-WRI220509-4925540-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925540-0524-4-C/results/970082531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13481","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:00:00","MST","2022-06-16 18:00:00",NA,"0.475",475,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082541","UTAHDWQ_WQX-WRI220613-4925540-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925540-0616-4-C/results/970082541/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13482","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:00:00","MST","2022-06-16 18:00:00",NA,"0.524",524,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082553","UTAHDWQ_WQX-WRI220613-4925540-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925540-0616-4-C/results/970082553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13483","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","13:45:00","MST","2022-07-12 20:45:00",NA,"0.936",936,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082570","UTAHDWQ_WQX-WRI220711-4925540-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925540-0712-4-C/results/970082570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13484","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","13:45:00","MST","2022-07-12 20:45:00",NA,"0.485",485,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082571","UTAHDWQ_WQX-WRI220711-4925540-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925540-0712-4-C/results/970082571/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13485","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","09:00:00","MST","2022-08-03 16:00:00",NA,"0.574",574,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082588","UTAHDWQ_WQX-WRI220801-4925540-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925540-0803-4-C/results/970082588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13486","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","09:00:00","MST","2022-08-03 16:00:00",NA,"0.58",580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082596","UTAHDWQ_WQX-WRI220801-4925540-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925540-0803-4-C/results/970082596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13487","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","09:00:00","MST","2022-09-15 16:00:00",NA,"0.46",460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082607","UTAHDWQ_WQX-WRI220912-4925540-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925540-0915-4-C/results/970082607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13488","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","09:00:00","MST","2022-09-15 16:00:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082609","UTAHDWQ_WQX-WRI220912-4925540-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925540-0915-4-C/results/970082609/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13489","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:30:00","MST","2022-09-20 18:30:00",NA,"0.258",258,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082631","UTAHDWQ_WQX-WLA2022-4925540-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0920-4-C/results/970082631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13490","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:30:00","MST","2022-09-20 18:30:00",NA,"0.284",284,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082644","UTAHDWQ_WQX-WLA2022-4925540-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0920-4-C/results/970082644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13491","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","13:25:00","MST","2022-09-26 20:25:00",NA,"0.462",462,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082662","UTAHDWQ_WQX-WLA2022-4925540-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0926-4-C/results/970082662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13492","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","13:25:00","MST","2022-09-26 20:25:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082668","UTAHDWQ_WQX-WLA2022-4925540-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0926-4-C/results/970082668/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13493","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","11:30:00","MST","2022-09-28 18:30:00",NA,"0.379",379,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082679","UTAHDWQ_WQX-WLA2022-4925540-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0928-4-C/results/970082679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13494","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","11:30:00","MST","2022-09-28 18:30:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082684","UTAHDWQ_WQX-WLA2022-4925540-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB MORGAN LAGOONS","River/Stream",NA,"41.0421600000",41.04216,"-111.6797000000",-111.6797,"OK","16020102","UTAHDWQ_WQX-4925540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0421600000","-111.6797000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0928-4-C/results/970082684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13495","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","11:00:00","MST","2022-04-04 18:00:00",NA,"1.77",1770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082691","UTAHDWQ_WQX-WRI220404-4925610-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925610-0404-4-C/results/970082691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13496","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","11:00:00","MST","2022-04-04 18:00:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082710","UTAHDWQ_WQX-WRI220404-4925610-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925610-0404-4-C/results/970082710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13497","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","11:00:00","MST","2022-05-09 18:00:00",NA,"0.74",740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082717","UTAHDWQ_WQX-WRI220509-4925610-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925610-0509-4-C/results/970082717/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13498","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","11:00:00","MST","2022-05-09 18:00:00",NA,"0.762",762,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082722","UTAHDWQ_WQX-WRI220509-4925610-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925610-0509-4-C/results/970082722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13499","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","10:40:00","MST","2022-06-13 17:40:00",NA,"0.694",694,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082727","UTAHDWQ_WQX-WRI220613-4925610-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925610-0613-4-C/results/970082727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13500","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","10:40:00","MST","2022-06-13 17:40:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082739","UTAHDWQ_WQX-WRI220613-4925610-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925610-0613-4-C/results/970082739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13501","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:20:00","MST","2022-07-18 18:20:00",NA,"0.375",375,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082752","UTAHDWQ_WQX-WRI220711-4925610-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925610-0718-4-C/results/970082752/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13502","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:20:00","MST","2022-07-18 18:20:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082756","UTAHDWQ_WQX-WRI220711-4925610-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925610-0718-4-C/results/970082756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13503","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","11:20:00","MST","2022-08-08 18:20:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082779","UTAHDWQ_WQX-WRI220801-4925610-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925610-0808-4-C/results/970082779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13504","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","11:20:00","MST","2022-08-08 18:20:00",NA,"0.566",566,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082781","UTAHDWQ_WQX-WRI220801-4925610-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925610-0808-4-C/results/970082781/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13505","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","10:40:00","MST","2022-09-12 17:40:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082795","UTAHDWQ_WQX-WRI220912-4925610-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925610-0912-4-C/results/970082795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13506","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","10:40:00","MST","2022-09-12 17:40:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082796","UTAHDWQ_WQX-WRI220912-4925610-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK","River/Stream",NA,"40.7542300000",40.75423,"-111.5703500000",-111.57035,"OK","16020102","UTAHDWQ_WQX-4925610",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7542300000","-111.5703500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925610-0912-4-C/results/970082796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13507","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","11:45:00","MST","2022-04-04 18:45:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082798","UTAHDWQ_WQX-WRI220404-4925630-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925630-0404-4-C/results/970082798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13508","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","11:45:00","MST","2022-04-04 18:45:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082815","UTAHDWQ_WQX-WRI220404-4925630-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925630-0404-4-C/results/970082815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13509","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","12:50:00","MST","2022-05-09 19:50:00",NA,"0.29",290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082824","UTAHDWQ_WQX-WRI220509-4925630-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925630-0509-4-C/results/970082824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13510","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","12:50:00","MST","2022-05-09 19:50:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082831","UTAHDWQ_WQX-WRI220509-4925630-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925630-0509-4-C/results/970082831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13511","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","12:00:00","MST","2022-06-13 19:00:00",NA,"0.848",848,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082855","UTAHDWQ_WQX-WRI220613-4925630-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925630-0613-4-C/results/970082855/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13512","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","12:00:00","MST","2022-06-13 19:00:00",NA,"0.764",764,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082858","UTAHDWQ_WQX-WRI220613-4925630-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925630-0613-4-C/results/970082858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13513","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","15:20:00","MST","2022-06-30 22:20:00",NA,"0.881",881,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082868","UTAHDWQ_WQX-WRI220629-4925630-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925630-0630-4-C/results/970082868/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13514","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","15:20:00","MST","2022-06-30 22:20:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082873","UTAHDWQ_WQX-WRI220629-4925630-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925630-0630-4-C/results/970082873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13515","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:00:00","MST","2022-07-18 20:00:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082893","UTAHDWQ_WQX-WRI220711-4925630-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925630-0718-4-C/results/970082893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13516","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:00:00","MST","2022-07-18 20:00:00",NA,"0.552",552,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082894","UTAHDWQ_WQX-WRI220711-4925630-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925630-0718-4-C/results/970082894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13517","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","13:10:00","MST","2022-08-08 20:10:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082899","UTAHDWQ_WQX-WRI220801-4925630-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925630-0808-4-C/results/970082899/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13518","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","13:10:00","MST","2022-08-08 20:10:00",NA,"0.452",452,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082917","UTAHDWQ_WQX-WRI220801-4925630-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925630-0808-4-C/results/970082917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13519","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","12:00:00","MST","2022-09-12 19:00:00",NA,"1.48",1480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082923","UTAHDWQ_WQX-WRI220912-4925630-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925630-0912-4-C/results/970082923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13520","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","12:00:00","MST","2022-09-12 19:00:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082929","UTAHDWQ_WQX-WRI220912-4925630-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT","River/Stream",NA,"40.7145800000",40.71458,"-111.5449400000",-111.54494,"OK","16020102","UTAHDWQ_WQX-4925630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7145800000","-111.5449400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925630-0912-4-C/results/970082929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13521","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","12:00:00","MST","2022-04-04 19:00:00",NA,"0.887",887,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082941","UTAHDWQ_WQX-WRI220404-4925650-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925650-0404-4-C/results/970082941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13522","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","12:00:00","MST","2022-04-04 19:00:00",NA,"0.877",877,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082945","UTAHDWQ_WQX-WRI220404-4925650-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925650-0404-4-C/results/970082945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13523","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","13:00:00","MST","2022-05-09 20:00:00",NA,"0.622",622,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082958","UTAHDWQ_WQX-WRI220509-4925650-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925650-0509-4-C/results/970082958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13524","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","13:00:00","MST","2022-05-09 20:00:00",NA,"0.606",606,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082959","UTAHDWQ_WQX-WRI220509-4925650-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925650-0509-4-C/results/970082959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13525","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","12:15:00","MST","2022-06-13 19:15:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082987","UTAHDWQ_WQX-WRI220613-4925650-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925650-0613-4-C/results/970082987/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13526","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","12:15:00","MST","2022-06-13 19:15:00",NA,"0.973",973,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082992","UTAHDWQ_WQX-WRI220613-4925650-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925650-0613-4-C/results/970082992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13527","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:15:00","MST","2022-07-18 20:15:00",NA,"0.542",542,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970082998","UTAHDWQ_WQX-WRI220711-4925650-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925650-0718-4-C/results/970082998/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13528","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:15:00","MST","2022-07-18 20:15:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083000","UTAHDWQ_WQX-WRI220711-4925650-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925650-0718-4-C/results/970083000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13529","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","13:25:00","MST","2022-08-08 20:25:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083010","UTAHDWQ_WQX-WRI220801-4925650-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925650-0808-4-C/results/970083010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13530","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","13:25:00","MST","2022-08-08 20:25:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083022","UTAHDWQ_WQX-WRI220801-4925650-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925650-0808-4-C/results/970083022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13531","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","12:15:00","MST","2022-09-12 19:15:00",NA,"0.867",867,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083032","UTAHDWQ_WQX-WRI220912-4925650-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925650-0912-4-C/results/970083032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13532","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","12:15:00","MST","2022-09-12 19:15:00",NA,"0.512",512,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083035","UTAHDWQ_WQX-WRI220912-4925650-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD","River/Stream",NA,"40.6967700000",40.69677,"-111.5439900000",-111.54399,"OK","16020102","UTAHDWQ_WQX-4925650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6967700000","-111.5439900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925650-0912-4-C/results/970083035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13533","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","12:15:00","MST","2022-04-04 19:15:00",NA,"0.878",878,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083050","UTAHDWQ_WQX-WRI220404-4925660-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925660-0404-4-C/results/970083050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13534","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","12:15:00","MST","2022-04-04 19:15:00",NA,"0.656",656,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083056","UTAHDWQ_WQX-WRI220404-4925660-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925660-0404-4-C/results/970083056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13535","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","13:30:00","MST","2022-05-09 20:30:00",NA,"0.544",544,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083067","UTAHDWQ_WQX-WRI220509-4925660-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925660-0509-4-C/results/970083067/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13536","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","13:30:00","MST","2022-05-09 20:30:00",NA,"0.589",589,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083073","UTAHDWQ_WQX-WRI220509-4925660-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925660-0509-4-C/results/970083073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13537","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","12:25:00","MST","2022-06-13 19:25:00",NA,"0.629",629,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083080","UTAHDWQ_WQX-WRI220613-4925660-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925660-0613-4-C/results/970083080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13538","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","12:25:00","MST","2022-06-13 19:25:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083081","UTAHDWQ_WQX-WRI220613-4925660-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925660-0613-4-C/results/970083081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13539","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","15:40:00","MST","2022-06-30 22:40:00",NA,"0.385",385,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083113","UTAHDWQ_WQX-WRI220629-4925660-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925660-0630-4-C/results/970083113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13540","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","15:40:00","MST","2022-06-30 22:40:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083115","UTAHDWQ_WQX-WRI220629-4925660-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925660-0630-4-C/results/970083115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13541","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:30:00","MST","2022-07-18 20:30:00",NA,"0.52",520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083133","UTAHDWQ_WQX-WRI220711-4925660-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925660-0718-4-C/results/970083133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13542","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:30:00","MST","2022-07-18 20:30:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083134","UTAHDWQ_WQX-WRI220711-4925660-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925660-0718-4-C/results/970083134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13543","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","13:40:00","MST","2022-08-08 20:40:00",NA,"0.479",479,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083148","UTAHDWQ_WQX-WRI220801-4925660-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925660-0808-4-C/results/970083148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13544","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","13:40:00","MST","2022-08-08 20:40:00",NA,"0.571",571,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083161","UTAHDWQ_WQX-WRI220801-4925660-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925660-0808-4-C/results/970083161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13545","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","14:00:00","MST","2022-08-23 21:00:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083174","UTAHDWQ_WQX-WRI220829-4925660-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925660-0823-4-C/results/970083174/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13546","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-23","14:00:00","MST","2022-08-23 21:00:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083175","UTAHDWQ_WQX-WRI220829-4925660-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925660-0823-4-C/results/970083175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13547","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","12:50:00","MST","2022-09-29 19:50:00",NA,"0.45",450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083205","UTAHDWQ_WQX-WRI220926-4925660-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4925660-0929-4-C/results/970083205/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13548","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-29","12:50:00","MST","2022-09-29 19:50:00",NA,"0.166",166,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083210","UTAHDWQ_WQX-WRI220926-4925660-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Willow Draw @ the End of Voelker Ct in Snyderville","River/Stream",NA,"40.6902300000",40.69023,"-111.5465800000",-111.54658,"OK","16020102","UTAHDWQ_WQX-4925660",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6902300000","-111.5465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4925660-0929-4-C/results/970083210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13549","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:50:00","MST","2022-09-19 20:50:00",NA,"0.41",410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083241","UTAHDWQ_WQX-WLA2022-4925750-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK AB CNFL/WEBER R","River/Stream",NA,"41.0601800000",41.06018,"-111.5373600000",-111.53736,"OK","16020101","UTAHDWQ_WQX-4925750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0601800000","-111.5373600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925750-0919-4-C/results/970083241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13550","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","13:50:00","MST","2022-09-19 20:50:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083252","UTAHDWQ_WQX-WLA2022-4925750-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK AB CNFL/WEBER R","River/Stream",NA,"41.0601800000",41.06018,"-111.5373600000",-111.53736,"OK","16020101","UTAHDWQ_WQX-4925750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0601800000","-111.5373600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925750-0919-4-C/results/970083252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13551","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","09:00:00","MST","2022-09-27 16:00:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083270","UTAHDWQ_WQX-WLA2022-4925750-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK AB CNFL/WEBER R","River/Stream",NA,"41.0601800000",41.06018,"-111.5373600000",-111.53736,"OK","16020101","UTAHDWQ_WQX-4925750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0601800000","-111.5373600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925750-0927-4-C/results/970083270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13552","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","09:00:00","MST","2022-09-27 16:00:00",NA,"0.473",473,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083277","UTAHDWQ_WQX-WLA2022-4925750-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK AB CNFL/WEBER R","River/Stream",NA,"41.0601800000",41.06018,"-111.5373600000",-111.53736,"OK","16020101","UTAHDWQ_WQX-4925750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0601800000","-111.5373600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925750-0927-4-C/results/970083277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13553","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","12:30:00","MST","2022-04-06 19:30:00",NA,"0.452",452,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083285","UTAHDWQ_WQX-WRI220404-4925760-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925760-0406-4-C/results/970083285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13554","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","12:30:00","MST","2022-04-06 19:30:00",NA,"0.373",373,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083304","UTAHDWQ_WQX-WRI220404-4925760-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925760-0406-4-C/results/970083304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13555","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","12:15:00","MST","2022-05-25 19:15:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083308","UTAHDWQ_WQX-WRI220509-4925760-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925760-0525-4-C/results/970083308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13556","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","12:15:00","MST","2022-05-25 19:15:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083309","UTAHDWQ_WQX-WRI220509-4925760-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925760-0525-4-C/results/970083309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13557","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-23","10:30:00","MST","2022-06-23 17:30:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083316","UTAHDWQ_WQX-WRI220613-4925760-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925760-0623-4-C/results/970083316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13558","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","10:30:00","MST","2022-06-23 17:30:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083331","UTAHDWQ_WQX-WRI220613-4925760-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925760-0623-4-C/results/970083331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13559","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","12:00:00","MST","2022-07-13 19:00:00",NA,"0.837",837,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083344","UTAHDWQ_WQX-WRI220711-4925760-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925760-0713-4-C/results/970083344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13560","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","12:00:00","MST","2022-07-13 19:00:00",NA,"0.84",840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083350","UTAHDWQ_WQX-WRI220711-4925760-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925760-0713-4-C/results/970083350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13561","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","13:40:00","MST","2022-08-03 20:40:00",NA,"0.549",549,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083362","UTAHDWQ_WQX-WRI220801-4925760-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925760-0803-4-C/results/970083362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12469","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","13:40:00","MST","2022-08-03 20:40:00",NA,"0.457",457,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083375","UTAHDWQ_WQX-WRI220801-4925760-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925760-0803-4-C/results/970083375/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13563","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","12:40:00","MST","2022-09-15 19:40:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083378","UTAHDWQ_WQX-WRI220912-4925760-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925760-0915-4-C/results/970083378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12471","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","12:40:00","MST","2022-09-15 19:40:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083381","UTAHDWQ_WQX-WRI220912-4925760-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","Lost Ck at Hwy 158 Xing","River/Stream",NA,"41.0703200000",41.07032,"-111.5210200000",-111.52102,"OK","16020101","UTAHDWQ_WQX-4925760",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0703200000","-111.5210200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925760-0915-4-C/results/970083381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13565","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","13:00:00","MST","2022-04-06 20:00:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083392","UTAHDWQ_WQX-WRI220404-4925900-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925900-0406-4-C/results/970083392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13566","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","13:00:00","MST","2022-04-06 20:00:00",NA,"0.491",491,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083399","UTAHDWQ_WQX-WRI220404-4925900-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925900-0406-4-C/results/970083399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13567","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","12:30:00","MST","2022-05-25 19:30:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083420","UTAHDWQ_WQX-WRI220509-4925900-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925900-0525-4-C/results/970083420/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13568","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","12:30:00","MST","2022-05-25 19:30:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083422","UTAHDWQ_WQX-WRI220509-4925900-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925900-0525-4-C/results/970083422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13569","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","11:00:00","MST","2022-06-23 18:00:00",NA,"0.735",735,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083426","UTAHDWQ_WQX-WRI220613-4925900-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925900-0623-4-C/results/970083426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13570","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-23","11:00:00","MST","2022-06-23 18:00:00",NA,"0.632",632,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083443","UTAHDWQ_WQX-WRI220613-4925900-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925900-0623-4-C/results/970083443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13571","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","09:50:00","MST","2022-06-30 16:50:00",NA,"0.722",722,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083460","UTAHDWQ_WQX-WRI220629-4925900-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925900-0630-4-C/results/970083460/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13572","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","09:50:00","MST","2022-06-30 16:50:00",NA,"0.591",591,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083475","UTAHDWQ_WQX-WRI220629-4925900-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925900-0630-4-C/results/970083475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13573","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","12:20:00","MST","2022-07-13 19:20:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083480","UTAHDWQ_WQX-WRI220711-4925900-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925900-0713-4-C/results/970083480/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13574","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","12:20:00","MST","2022-07-13 19:20:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083481","UTAHDWQ_WQX-WRI220711-4925900-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925900-0713-4-C/results/970083481/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13575","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","14:00:00","MST","2022-08-03 21:00:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083488","UTAHDWQ_WQX-WRI220801-4925900-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925900-0803-4-C/results/970083488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13576","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","14:00:00","MST","2022-08-03 21:00:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083490","UTAHDWQ_WQX-WRI220801-4925900-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925900-0803-4-C/results/970083490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13577","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","13:05:00","MST","2022-09-15 20:05:00",NA,"0.277",277,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083515","UTAHDWQ_WQX-WRI220912-4925900-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925900-0915-4-C/results/970083515/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13578","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","13:05:00","MST","2022-09-15 20:05:00",NA,"0.407",407,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083517","UTAHDWQ_WQX-WRI220912-4925900-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK BL LOST CK RES","River/Stream",NA,"41.1796700000",41.17967,"-111.4038100000",-111.40381,"OK","16020101","UTAHDWQ_WQX-4925900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1796700000","-111.4038100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925900-0915-4-C/results/970083517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13579","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","11:30:00","MST","2022-07-06 18:30:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083522","UTAHDWQ_WQX-LAKES220705-4925910-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-2-C/results/970083522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13580","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","11:30:00","MST","2022-07-06 18:30:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083531","UTAHDWQ_WQX-LAKES220705-4925910-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-2-C/results/970083531/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13581","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","11:50:00","MST","2022-07-06 18:50:00",NA,"0.256",256,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083539","UTAHDWQ_WQX-LAKES220705-4925910-0706-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-23-C/results/970083539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13582","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","11:50:00","MST","2022-07-06 18:50:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","4",4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083542","UTAHDWQ_WQX-LAKES220705-4925910-0706-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-23-C/results/970083542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13583","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","11:55:00","MST","2022-07-06 18:55:00",NA,"0.246",246,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083544","UTAHDWQ_WQX-LAKES220705-4925910-0706-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-27-C/results/970083544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13584","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","11:55:00","MST","2022-07-06 18:55:00",NA,"0.188",188,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083547","UTAHDWQ_WQX-LAKES220705-4925910-0706-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-27-C/results/970083547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13585","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","11:40:00","MST","2022-07-06 18:40:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083567","UTAHDWQ_WQX-LAKES220705-4925910-0706-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-29-C/results/970083567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13586","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","11:40:00","MST","2022-07-06 18:40:00",NA,"0.385",385,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083577","UTAHDWQ_WQX-LAKES220705-4925910-0706-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-29-C/results/970083577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13587","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:45:00","MST","2022-09-21 17:45:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083583","UTAHDWQ_WQX-LAKES220919-4925910-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-2-C/results/970083583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13588","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:45:00","MST","2022-09-21 17:45:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083587","UTAHDWQ_WQX-LAKES220919-4925910-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-2-C/results/970083587/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13589","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","11:15:00","MST","2022-09-21 18:15:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083594","UTAHDWQ_WQX-LAKES220919-4925910-0921-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-23-C/results/970083594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13590","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","11:15:00","MST","2022-09-21 18:15:00",NA,"0.327",327,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083598","UTAHDWQ_WQX-LAKES220919-4925910-0921-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-23-C/results/970083598/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13591","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","11:20:00","MST","2022-09-21 18:20:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","17",17,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083600","UTAHDWQ_WQX-LAKES220919-4925910-0921-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-27-C/results/970083600/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13592","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","11:20:00","MST","2022-09-21 18:20:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","17",17,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083601","UTAHDWQ_WQX-LAKES220919-4925910-0921-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-27-C/results/970083601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13593","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","11:00:00","MST","2022-09-21 18:00:00",NA,"0.39",390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","23.5",23.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083609","UTAHDWQ_WQX-LAKES220919-4925910-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-29-C/results/970083609/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13594","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","11:00:00","MST","2022-09-21 18:00:00",NA,"0.282",282,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","23.5",23.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083625","UTAHDWQ_WQX-LAKES220919-4925910-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01","Lake",NA,"41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-29-C/results/970083625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13595","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","12:00:00","MST","2022-07-06 19:00:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083636","UTAHDWQ_WQX-LAKES220705-4925912-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01 Replicate of 4925910","Lake","Replicate of 4925910","41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925912",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925912-0706-2-C/results/970083636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13596","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","12:00:00","MST","2022-07-06 19:00:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083638","UTAHDWQ_WQX-LAKES220705-4925912-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01 Replicate of 4925910","Lake","Replicate of 4925910","41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925912",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925912-0706-2-C/results/970083638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13597","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:50:00","MST","2022-09-21 17:50:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083649","UTAHDWQ_WQX-LAKES220919-4925912-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01 Replicate of 4925910","Lake","Replicate of 4925910","41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925912",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925912-0921-2-C/results/970083649/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13598","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:50:00","MST","2022-09-21 17:50:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083653","UTAHDWQ_WQX-LAKES220919-4925912-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES AB DAM 01 Replicate of 4925910","Lake","Replicate of 4925910","41.1857800000",41.18578,"-111.3985300000",-111.39853,"OK","16020101","UTAHDWQ_WQX-4925912",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1857800000","-111.3985300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925912-0921-2-C/results/970083653/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12506","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","10:40:00","MST","2022-07-06 17:40:00",NA,"0.284",284,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083663","UTAHDWQ_WQX-LAKES220705-4925920-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP RIGHT ARM 02","Lake",NA,"41.1882800000",41.18828,"-111.3832500000",-111.38325,"OK","16020101","UTAHDWQ_WQX-4925920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1882800000","-111.3832500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925920-0706-2-C/results/970083663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13600","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","10:40:00","MST","2022-07-06 17:40:00",NA,"0.192",192,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083665","UTAHDWQ_WQX-LAKES220705-4925920-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP RIGHT ARM 02","Lake",NA,"41.1882800000",41.18828,"-111.3832500000",-111.38325,"OK","16020101","UTAHDWQ_WQX-4925920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1882800000","-111.3832500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925920-0706-2-C/results/970083665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13601","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","10:55:00","MST","2022-07-06 17:55:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083674","UTAHDWQ_WQX-LAKES220705-4925920-0706-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP RIGHT ARM 02","Lake",NA,"41.1882800000",41.18828,"-111.3832500000",-111.38325,"OK","16020101","UTAHDWQ_WQX-4925920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1882800000","-111.3832500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925920-0706-29-C/results/970083674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12509","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","10:55:00","MST","2022-07-06 17:55:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","14",14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083677","UTAHDWQ_WQX-LAKES220705-4925920-0706-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP RIGHT ARM 02","Lake",NA,"41.1882800000",41.18828,"-111.3832500000",-111.38325,"OK","16020101","UTAHDWQ_WQX-4925920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1882800000","-111.3832500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925920-0706-29-C/results/970083677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12510","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:10:00","MST","2022-09-21 17:10:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083685","UTAHDWQ_WQX-LAKES220919-4925920-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP RIGHT ARM 02","Lake",NA,"41.1882800000",41.18828,"-111.3832500000",-111.38325,"OK","16020101","UTAHDWQ_WQX-4925920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1882800000","-111.3832500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925920-0921-2-C/results/970083685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13604","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:10:00","MST","2022-09-21 17:10:00",NA,"0.325",325,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083689","UTAHDWQ_WQX-LAKES220919-4925920-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP RIGHT ARM 02","Lake",NA,"41.1882800000",41.18828,"-111.3832500000",-111.38325,"OK","16020101","UTAHDWQ_WQX-4925920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1882800000","-111.3832500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925920-0921-2-C/results/970083689/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13605","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:20:00","MST","2022-09-21 17:20:00",NA,"0.158",158,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083693","UTAHDWQ_WQX-LAKES220919-4925920-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP RIGHT ARM 02","Lake",NA,"41.1882800000",41.18828,"-111.3832500000",-111.38325,"OK","16020101","UTAHDWQ_WQX-4925920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1882800000","-111.3832500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925920-0921-29-C/results/970083693/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12513","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:20:00","MST","2022-09-21 17:20:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083698","UTAHDWQ_WQX-LAKES220919-4925920-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP RIGHT ARM 02","Lake",NA,"41.1882800000",41.18828,"-111.3832500000",-111.38325,"OK","16020101","UTAHDWQ_WQX-4925920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1882800000","-111.3832500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925920-0921-29-C/results/970083698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13607","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","13:15:00","MST","2022-04-06 20:15:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083705","UTAHDWQ_WQX-WRI220404-4925930-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925930-0406-4-C/results/970083705/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12515","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","13:15:00","MST","2022-04-06 20:15:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083726","UTAHDWQ_WQX-WRI220404-4925930-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925930-0406-4-C/results/970083726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12516","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","12:50:00","MST","2022-05-25 19:50:00",NA,"0.317",317,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083733","UTAHDWQ_WQX-WRI220509-4925930-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925930-0525-4-C/results/970083733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13610","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","12:50:00","MST","2022-05-25 19:50:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083735","UTAHDWQ_WQX-WRI220509-4925930-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925930-0525-4-C/results/970083735/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12518","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-23","11:30:00","MST","2022-06-23 18:30:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083740","UTAHDWQ_WQX-WRI220613-4925930-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925930-0623-4-C/results/970083740/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13612","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-23","11:30:00","MST","2022-06-23 18:30:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083758","UTAHDWQ_WQX-WRI220613-4925930-0623-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925930-0623-4-C/results/970083758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13613","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","09:45:00","MST","2022-07-06 16:45:00",NA,"0.374",374,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083766","UTAHDWQ_WQX-LAKES220705-4925930-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925930-0706-4-C/results/970083766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13614","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","09:45:00","MST","2022-07-06 16:45:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083780","UTAHDWQ_WQX-LAKES220705-4925930-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925930-0706-4-C/results/970083780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13615","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","12:30:00","MST","2022-07-13 19:30:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083796","UTAHDWQ_WQX-WRI220711-4925930-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:22:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925930-0713-4-C/results/970083796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13616","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","12:30:00","MST","2022-07-13 19:30:00",NA,"0.511",511,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083804","UTAHDWQ_WQX-WRI220711-4925930-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925930-0713-4-C/results/970083804/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13617","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","14:30:00","MST","2022-08-03 21:30:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083812","UTAHDWQ_WQX-WRI220801-4925930-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925930-0803-4-C/results/970083812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13618","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","14:30:00","MST","2022-08-03 21:30:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083818","UTAHDWQ_WQX-WRI220801-4925930-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925930-0803-4-C/results/970083818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13619","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-23","12:00:00","MST","2022-08-23 19:00:00",NA,"0.595",595,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083845","UTAHDWQ_WQX-WRI220829-4925930-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925930-0823-4-C/results/970083845/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13620","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","12:00:00","MST","2022-08-23 19:00:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083856","UTAHDWQ_WQX-WRI220829-4925930-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925930-0823-4-C/results/970083856/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13621","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","13:20:00","MST","2022-09-15 20:20:00",NA,"0.319",319,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083862","UTAHDWQ_WQX-WRI220912-4925930-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925930-0915-4-C/results/970083862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13622","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","13:20:00","MST","2022-09-15 20:20:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083863","UTAHDWQ_WQX-WRI220912-4925930-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925930-0915-4-C/results/970083863/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13623","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","13:00:00","MST","2022-09-21 20:00:00",NA,"0.344",344,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083867","UTAHDWQ_WQX-LAKES220919-4925930-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925930-0921-4-C/results/970083867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13624","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","13:00:00","MST","2022-09-21 20:00:00",NA,"0.316",316,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083889","UTAHDWQ_WQX-LAKES220919-4925930-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","FRANCIS CANYON CK AB LOST CK RES","River/Stream",NA,"41.1824400000",41.18244,"-111.3727000000",-111.3727,"OK","16020101","UTAHDWQ_WQX-4925930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1824400000","-111.3727000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925930-0921-4-C/results/970083889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13625","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","12:20:00","MST","2022-07-06 19:20:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083898","UTAHDWQ_WQX-LAKES220705-4925940-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP MAIN ARM 03","Lake",NA,"41.1971700000",41.19717,"-111.3843600000",-111.38436,"OK","16020101","UTAHDWQ_WQX-4925940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1971700000","-111.3843600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925940-0706-2-C/results/970083898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13626","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","12:20:00","MST","2022-07-06 19:20:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083905","UTAHDWQ_WQX-LAKES220705-4925940-0706-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP MAIN ARM 03","Lake",NA,"41.1971700000",41.19717,"-111.3843600000",-111.38436,"OK","16020101","UTAHDWQ_WQX-4925940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1971700000","-111.3843600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925940-0706-2-C/results/970083905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13627","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","12:35:00","MST","2022-07-06 19:35:00",NA,"0.391",391,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083917","UTAHDWQ_WQX-LAKES220705-4925940-0706-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP MAIN ARM 03","Lake",NA,"41.1971700000",41.19717,"-111.3843600000",-111.38436,"OK","16020101","UTAHDWQ_WQX-4925940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1971700000","-111.3843600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925940-0706-29-C/results/970083917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13628","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","12:35:00","MST","2022-07-06 19:35:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","19",19,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083918","UTAHDWQ_WQX-LAKES220705-4925940-0706-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP MAIN ARM 03","Lake",NA,"41.1971700000",41.19717,"-111.3843600000",-111.38436,"OK","16020101","UTAHDWQ_WQX-4925940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1971700000","-111.3843600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925940-0706-29-C/results/970083918/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13629","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","11:40:00","MST","2022-09-21 18:40:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083929","UTAHDWQ_WQX-LAKES220919-4925940-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP MAIN ARM 03","Lake",NA,"41.1971700000",41.19717,"-111.3843600000",-111.38436,"OK","16020101","UTAHDWQ_WQX-4925940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1971700000","-111.3843600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925940-0921-2-C/results/970083929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13630","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","11:40:00","MST","2022-09-21 18:40:00",NA,"0.71",710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083931","UTAHDWQ_WQX-LAKES220919-4925940-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP MAIN ARM 03","Lake",NA,"41.1971700000",41.19717,"-111.3843600000",-111.38436,"OK","16020101","UTAHDWQ_WQX-4925940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1971700000","-111.3843600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925940-0921-2-C/results/970083931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13631","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","11:50:00","MST","2022-09-21 18:50:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","14.1",14.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083932","UTAHDWQ_WQX-LAKES220919-4925940-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP MAIN ARM 03","Lake",NA,"41.1971700000",41.19717,"-111.3843600000",-111.38436,"OK","16020101","UTAHDWQ_WQX-4925940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1971700000","-111.3843600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925940-0921-29-C/results/970083932/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13632","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","11:50:00","MST","2022-09-21 18:50:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","14.1",14.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083936","UTAHDWQ_WQX-LAKES220919-4925940-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK RES MIDWAY UP MAIN ARM 03","Lake",NA,"41.1971700000",41.19717,"-111.3843600000",-111.38436,"OK","16020101","UTAHDWQ_WQX-4925940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1971700000","-111.3843600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925940-0921-29-C/results/970083936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13633","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-06","13:10:00","MST","2022-07-06 20:10:00",NA,"0.287",287,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083953","UTAHDWQ_WQX-LAKES220705-4925950-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK AB LOST CK RES","River/Stream",NA,"41.2135600000",41.21356,"-111.3657500000",-111.36575,"OK","16020101","UTAHDWQ_WQX-4925950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2135600000","-111.3657500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925950-0706-4-C/results/970083953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13634","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-06","13:10:00","MST","2022-07-06 20:10:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083969","UTAHDWQ_WQX-LAKES220705-4925950-0706-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK AB LOST CK RES","River/Stream",NA,"41.2135600000",41.21356,"-111.3657500000",-111.36575,"OK","16020101","UTAHDWQ_WQX-4925950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2135600000","-111.3657500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925950-0706-4-C/results/970083969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13635","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","12:10:00","MST","2022-09-21 19:10:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083980","UTAHDWQ_WQX-LAKES220919-4925950-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK AB LOST CK RES","River/Stream",NA,"41.2135600000",41.21356,"-111.3657500000",-111.36575,"OK","16020101","UTAHDWQ_WQX-4925950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2135600000","-111.3657500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925950-0921-4-C/results/970083980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13636","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","12:10:00","MST","2022-09-21 19:10:00",NA,"0.25",250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970083990","UTAHDWQ_WQX-LAKES220919-4925950-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","LOST CK AB LOST CK RES","River/Stream",NA,"41.2135600000",41.21356,"-111.3657500000",-111.36575,"OK","16020101","UTAHDWQ_WQX-4925950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.2135600000","-111.3657500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925950-0921-4-C/results/970083990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13637","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:30:00","MST","2022-09-21 17:30:00",NA,"0.403",403,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084024","UTAHDWQ_WQX-WLA2022-4925955-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB TAGGART TOWN BL I-84 XING (Hg Fish Tissue)","River/Stream",NA,"41.0587400000",41.05874,"-111.5873400000",-111.58734,"OK","16020102","UTAHDWQ_WQX-4925955",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0587400000","-111.5873400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925955-0921-4-C/results/970084024/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13638","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:30:00","MST","2022-09-21 17:30:00",NA,"0.405",405,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084049","UTAHDWQ_WQX-WLA2022-4925955-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB TAGGART TOWN BL I-84 XING (Hg Fish Tissue)","River/Stream",NA,"41.0587400000",41.05874,"-111.5873400000",-111.58734,"OK","16020102","UTAHDWQ_WQX-4925955",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0587400000","-111.5873400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925955-0921-4-C/results/970084049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13639","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","12:15:00","MST","2022-09-26 19:15:00",NA,"0.371",371,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084060","UTAHDWQ_WQX-WLA2022-4925955-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB TAGGART TOWN BL I-84 XING (Hg Fish Tissue)","River/Stream",NA,"41.0587400000",41.05874,"-111.5873400000",-111.58734,"OK","16020102","UTAHDWQ_WQX-4925955",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0587400000","-111.5873400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925955-0926-4-C/results/970084060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13640","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","12:15:00","MST","2022-09-26 19:15:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084061","UTAHDWQ_WQX-WLA2022-4925955-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB TAGGART TOWN BL I-84 XING (Hg Fish Tissue)","River/Stream",NA,"41.0587400000",41.05874,"-111.5873400000",-111.58734,"OK","16020102","UTAHDWQ_WQX-4925955",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0587400000","-111.5873400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925955-0926-4-C/results/970084061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13641","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","12:10:00","MST","2022-04-06 19:10:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084080","UTAHDWQ_WQX-WRI220404-4925960-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925960-0406-4-C/results/970084080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13642","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","12:10:00","MST","2022-04-06 19:10:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084089","UTAHDWQ_WQX-WRI220404-4925960-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925960-0406-4-C/results/970084089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13643","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","11:50:00","MST","2022-05-25 18:50:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084098","UTAHDWQ_WQX-WRI220509-4925960-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925960-0525-4-C/results/970084098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13644","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","11:50:00","MST","2022-05-25 18:50:00",NA,"0.51",510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084107","UTAHDWQ_WQX-WRI220509-4925960-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925960-0525-4-C/results/970084107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13645","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","15:50:00","MST","2022-06-16 22:50:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084123","UTAHDWQ_WQX-WRI220613-4925960-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925960-0616-4-C/results/970084123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13646","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","15:50:00","MST","2022-06-16 22:50:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084131","UTAHDWQ_WQX-WRI220613-4925960-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925960-0616-4-C/results/970084131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13647","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","11:30:00","MST","2022-07-13 18:30:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084136","UTAHDWQ_WQX-WRI220711-4925960-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925960-0713-4-C/results/970084136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13648","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","11:30:00","MST","2022-07-13 18:30:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084142","UTAHDWQ_WQX-WRI220711-4925960-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925960-0713-4-C/results/970084142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13649","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","13:20:00","MST","2022-08-03 20:20:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084145","UTAHDWQ_WQX-WRI220801-4925960-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925960-0803-4-C/results/970084145/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13650","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","13:20:00","MST","2022-08-03 20:20:00",NA,"0.488",488,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084152","UTAHDWQ_WQX-WRI220801-4925960-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925960-0803-4-C/results/970084152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13651","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","12:20:00","MST","2022-09-15 19:20:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084177","UTAHDWQ_WQX-WRI220912-4925960-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925960-0915-4-C/results/970084177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13652","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","12:20:00","MST","2022-09-15 19:20:00",NA,"0.327",327,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084179","UTAHDWQ_WQX-WRI220912-4925960-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925960-0915-4-C/results/970084179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13653","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:20:00","MST","2022-09-19 20:20:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084185","UTAHDWQ_WQX-WLA2022-4925960-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925960-0919-4-C/results/970084185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13654","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","13:20:00","MST","2022-09-19 20:20:00",NA,"0.306",306,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084211","UTAHDWQ_WQX-WLA2022-4925960-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925960-0919-4-C/results/970084211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13655","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","11:45:00","MST","2022-09-26 18:45:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084233","UTAHDWQ_WQX-WLA2022-4925960-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925960-0926-4-C/results/970084233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13656","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","11:45:00","MST","2022-09-26 18:45:00",NA,"0.355",355,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084237","UTAHDWQ_WQX-WLA2022-4925960-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925960-0926-4-C/results/970084237/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13657","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","10:30:00","MST","2022-09-28 17:30:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084253","UTAHDWQ_WQX-WLA2022-4925960-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK","River/Stream",NA,"41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925960-0928-4-C/results/970084253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13658","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","12:15:00","MST","2022-04-06 19:15:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084256","UTAHDWQ_WQX-WRI220404-4925962-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925962-0406-4-C/results/970084256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13659","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","12:15:00","MST","2022-04-06 19:15:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084267","UTAHDWQ_WQX-WRI220404-4925962-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925962-0406-4-C/results/970084267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13660","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","12:00:00","MST","2022-05-25 19:00:00",NA,"0.344",344,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084282","UTAHDWQ_WQX-WRI220509-4925962-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925962-0525-4-C/results/970084282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13661","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","12:00:00","MST","2022-05-25 19:00:00",NA,"0.464",464,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084283","UTAHDWQ_WQX-WRI220509-4925962-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925962-0525-4-C/results/970084283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13662","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","15:54:00","MST","2022-06-16 22:54:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084302","UTAHDWQ_WQX-WRI220613-4925962-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925962-0616-4-C/results/970084302/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13663","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","15:54:00","MST","2022-06-16 22:54:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084303","UTAHDWQ_WQX-WRI220613-4925962-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925962-0616-4-C/results/970084303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13664","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","11:40:00","MST","2022-07-13 18:40:00",NA,"0.539",539,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084316","UTAHDWQ_WQX-WRI220711-4925962-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925962-0713-4-C/results/970084316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13665","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","11:40:00","MST","2022-07-13 18:40:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084317","UTAHDWQ_WQX-WRI220711-4925962-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925962-0713-4-C/results/970084317/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13666","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","13:30:00","MST","2022-08-03 20:30:00",NA,"0.563",563,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084332","UTAHDWQ_WQX-WRI220801-4925962-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925962-0803-4-C/results/970084332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13667","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","13:30:00","MST","2022-08-03 20:30:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084339","UTAHDWQ_WQX-WRI220801-4925962-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925962-0803-4-C/results/970084339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13668","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","12:30:00","MST","2022-09-15 19:30:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084352","UTAHDWQ_WQX-WRI220912-4925962-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925962-0915-4-C/results/970084352/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13669","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","12:30:00","MST","2022-09-15 19:30:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084361","UTAHDWQ_WQX-WRI220912-4925962-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","029","WEBER R AB CNFL/ LOST CK Replicate of 4925960","River/Stream","Replicate of 4925960","41.0593900000",41.05939,"-111.5393700000",-111.53937,"OK","16020101","UTAHDWQ_WQX-4925962",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0593900000","-111.5393700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925962-0915-4-C/results/970084361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13670","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","12:00:00","MST","2022-04-06 19:00:00",NA,"0.505",505,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084381","UTAHDWQ_WQX-WRI220404-4925997-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925997-0406-4-C/results/970084381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13671","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","12:00:00","MST","2022-04-06 19:00:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084384","UTAHDWQ_WQX-WRI220404-4925997-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925997-0406-4-C/results/970084384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13672","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","11:30:00","MST","2022-05-25 18:30:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084393","UTAHDWQ_WQX-WRI220509-4925997-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925997-0525-4-C/results/970084393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13673","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","11:30:00","MST","2022-05-25 18:30:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084398","UTAHDWQ_WQX-WRI220509-4925997-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925997-0525-4-C/results/970084398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13674","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","15:15:00","MST","2022-06-16 22:15:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084401","UTAHDWQ_WQX-WRI220613-4925997-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925997-0616-4-C/results/970084401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13675","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","15:15:00","MST","2022-06-16 22:15:00",NA,"0.343",343,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084422","UTAHDWQ_WQX-WRI220613-4925997-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925997-0616-4-C/results/970084422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13676","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","11:10:00","MST","2022-07-13 18:10:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084426","UTAHDWQ_WQX-WRI220711-4925997-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925997-0713-4-C/results/970084426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13677","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","11:10:00","MST","2022-07-13 18:10:00",NA,"0.41",410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084431","UTAHDWQ_WQX-WRI220711-4925997-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925997-0713-4-C/results/970084431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13678","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","13:00:00","MST","2022-08-03 20:00:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084443","UTAHDWQ_WQX-WRI220801-4925997-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925997-0803-4-C/results/970084443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13679","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","13:00:00","MST","2022-08-03 20:00:00",NA,"0.48",480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084445","UTAHDWQ_WQX-WRI220801-4925997-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925997-0803-4-C/results/970084445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13680","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","12:00:00","MST","2022-09-15 19:00:00",NA,"0.319",319,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084468","UTAHDWQ_WQX-WRI220912-4925997-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925997-0915-4-C/results/970084468/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13681","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","12:00:00","MST","2022-09-15 19:00:00",NA,"0.363",363,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084470","UTAHDWQ_WQX-WRI220912-4925997-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925997-0915-4-C/results/970084470/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13682","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:00:00","MST","2022-09-21 17:00:00",NA,"0.786",786,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084488","UTAHDWQ_WQX-WLA2022-4925997-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925997-0921-4-C/results/970084488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13683","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:00:00","MST","2022-09-21 17:00:00",NA,"0.46",460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084518","UTAHDWQ_WQX-WLA2022-4925997-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925997-0921-4-C/results/970084518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13684","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","11:00:00","MST","2022-09-26 18:00:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084533","UTAHDWQ_WQX-WLA2022-4925997-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925997-0926-4-C/results/970084533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13685","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","11:00:00","MST","2022-09-26 18:00:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084538","UTAHDWQ_WQX-WLA2022-4925997-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL HENEFER LAGOONS BL I-84","River/Stream",NA,"41.0410500000",41.04105,"-111.5170100000",-111.51701,"OK","16020101","UTAHDWQ_WQX-4925997",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0410500000","-111.5170100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925997-0926-4-C/results/970084538/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13686","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","11:30:00","MST","2022-04-06 18:30:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084544","UTAHDWQ_WQX-WRI220404-4926000-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926000-0406-4-C/results/970084544/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13687","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","11:30:00","MST","2022-04-06 18:30:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084545","UTAHDWQ_WQX-WRI220404-4926000-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926000-0406-4-C/results/970084545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13688","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","11:15:00","MST","2022-05-25 18:15:00",NA,"0.431",431,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084573","UTAHDWQ_WQX-WRI220509-4926000-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926000-0525-4-C/results/970084573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13689","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-25","11:15:00","MST","2022-05-25 18:15:00",NA,"0.576",576,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084579","UTAHDWQ_WQX-WRI220509-4926000-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926000-0525-4-C/results/970084579/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13690","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","14:10:00","MST","2022-06-16 21:10:00",NA,"0.657",657,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084602","UTAHDWQ_WQX-WRI220613-4926000-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926000-0616-4-C/results/970084602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13691","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","14:10:00","MST","2022-06-16 21:10:00",NA,"0.417",417,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084603","UTAHDWQ_WQX-WRI220613-4926000-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926000-0616-4-C/results/970084603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13692","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","09:00:00","MST","2022-06-30 16:00:00",NA,"0.796",796,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084613","UTAHDWQ_WQX-WRI220629-4926000-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926000-0630-4-C/results/970084613/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13693","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","09:00:00","MST","2022-06-30 16:00:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084623","UTAHDWQ_WQX-WRI220629-4926000-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926000-0630-4-C/results/970084623/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13694","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","10:40:00","MST","2022-07-13 17:40:00",NA,"0.402",402,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084634","UTAHDWQ_WQX-WRI220711-4926000-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926000-0713-4-C/results/970084634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13695","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","10:40:00","MST","2022-07-13 17:40:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084639","UTAHDWQ_WQX-WRI220711-4926000-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926000-0713-4-C/results/970084639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13696","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","12:10:00","MST","2022-08-03 19:10:00",NA,"0.528",528,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084660","UTAHDWQ_WQX-WRI220801-4926000-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926000-0803-4-C/results/970084660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13697","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","12:10:00","MST","2022-08-03 19:10:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084666","UTAHDWQ_WQX-WRI220801-4926000-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926000-0803-4-C/results/970084666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13698","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-15","11:40:00","MST","2022-09-15 18:40:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084673","UTAHDWQ_WQX-WRI220912-4926000-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926000-0915-4-C/results/970084673/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13699","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-15","11:40:00","MST","2022-09-15 18:40:00",NA,"0.898",898,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084680","UTAHDWQ_WQX-WRI220912-4926000-0915-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926000-0915-4-C/results/970084680/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13700","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","14:30:00","MST","2022-09-19 21:30:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084709","UTAHDWQ_WQX-WLA2022-4926000-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926000-0919-4-C/results/970084709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13701","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","14:30:00","MST","2022-09-19 21:30:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084720","UTAHDWQ_WQX-WLA2022-4926000-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926000-0919-4-C/results/970084720/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13702","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","10:45:00","MST","2022-09-26 17:45:00",NA,"0.679",679,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084744","UTAHDWQ_WQX-WLA2022-4926000-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926000-0926-4-C/results/970084744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13703","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","10:45:00","MST","2022-09-26 17:45:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084746","UTAHDWQ_WQX-WLA2022-4926000-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB HENEFER LAGOONS","River/Stream",NA,"41.0181900000",41.01819,"-111.4952800000",-111.49528,"OK","16020101","UTAHDWQ_WQX-4926000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0181900000","-111.4952800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926000-0926-4-C/results/970084746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13704","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","11:45:00","MST","2022-04-06 18:45:00",NA,"5.48",5480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084768","UTAHDWQ_WQX-WRI220404-4926010-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HENEFER LAGOONS OUTFALL","Facility Other",NA,"41.0302600000",41.03026,"-111.5059200000",-111.50592,"OK","16020101","UTAHDWQ_WQX-4926010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0302600000","-111.5059200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926010-0406-4-C/results/970084768/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13705","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","11:45:00","MST","2022-04-06 18:45:00",NA,"5.84",5840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084775","UTAHDWQ_WQX-WRI220404-4926010-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HENEFER LAGOONS OUTFALL","Facility Other",NA,"41.0302600000",41.03026,"-111.5059200000",-111.50592,"OK","16020101","UTAHDWQ_WQX-4926010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0302600000","-111.5059200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926010-0406-4-C/results/970084775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13706","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","15:00:00","MST","2022-06-16 22:00:00",NA,"3.89",3890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084782","UTAHDWQ_WQX-WRI220613-4926010-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HENEFER LAGOONS OUTFALL","Facility Other",NA,"41.0302600000",41.03026,"-111.5059200000",-111.50592,"OK","16020101","UTAHDWQ_WQX-4926010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0302600000","-111.5059200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926010-0616-4-C/results/970084782/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13707","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","15:00:00","MST","2022-06-16 22:00:00",NA,"3.59",3590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084788","UTAHDWQ_WQX-WRI220613-4926010-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HENEFER LAGOONS OUTFALL","Facility Other",NA,"41.0302600000",41.03026,"-111.5059200000",-111.50592,"OK","16020101","UTAHDWQ_WQX-4926010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0302600000","-111.5059200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926010-0616-4-C/results/970084788/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13708","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-03","12:45:00","MST","2022-08-03 19:45:00",NA,"2.45",2450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084807","UTAHDWQ_WQX-WRI220801-4926010-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HENEFER LAGOONS OUTFALL","Facility Other",NA,"41.0302600000",41.03026,"-111.5059200000",-111.50592,"OK","16020101","UTAHDWQ_WQX-4926010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0302600000","-111.5059200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926010-0803-4-C/results/970084807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13709","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-03","12:45:00","MST","2022-08-03 19:45:00",NA,"3.34",3340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084822","UTAHDWQ_WQX-WRI220801-4926010-0803-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HENEFER LAGOONS OUTFALL","Facility Other",NA,"41.0302600000",41.03026,"-111.5059200000",-111.50592,"OK","16020101","UTAHDWQ_WQX-4926010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0302600000","-111.5059200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926010-0803-4-C/results/970084822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13710","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","11:40:00","MST","2022-04-06 18:40:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084851","UTAHDWQ_WQX-WRI220404-4926040-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926040-0406-4-C/results/970084851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13711","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","11:40:00","MST","2022-04-06 18:40:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084853","UTAHDWQ_WQX-WRI220404-4926040-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926040-0406-4-C/results/970084853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13712","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","13:00:00","MST","2022-05-11 20:00:00",NA,"0.767",767,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084862","UTAHDWQ_WQX-WRI220509-4926040-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926040-0511-4-C/results/970084862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13713","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","13:00:00","MST","2022-05-11 20:00:00",NA,"0.757",757,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084863","UTAHDWQ_WQX-WRI220509-4926040-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926040-0511-4-C/results/970084863/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13714","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","13:10:00","MST","2022-06-16 20:10:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084873","UTAHDWQ_WQX-WRI220613-4926040-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926040-0616-4-C/results/970084873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13715","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","13:10:00","MST","2022-06-16 20:10:00",NA,"0.633",633,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084876","UTAHDWQ_WQX-WRI220613-4926040-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926040-0616-4-C/results/970084876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13716","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","12:30:00","MST","2022-07-20 19:30:00",NA,"0.83",830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084895","UTAHDWQ_WQX-WRI220711-4926040-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926040-0720-4-C/results/970084895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13717","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","12:30:00","MST","2022-07-20 19:30:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084896","UTAHDWQ_WQX-WRI220711-4926040-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926040-0720-4-C/results/970084896/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13718","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-10","10:40:00","MST","2022-08-10 17:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084922","UTAHDWQ_WQX-WRI220801-4926040-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926040-0810-4-C/results/970084922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13719","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-10","10:40:00","MST","2022-08-10 17:40:00",NA,"0.391",391,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084930","UTAHDWQ_WQX-WRI220801-4926040-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926040-0810-4-C/results/970084930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13720","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","13:15:00","MST","2022-09-14 20:15:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084932","UTAHDWQ_WQX-WRI220912-4926040-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926040-0914-4-C/results/970084932/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13721","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","13:15:00","MST","2022-09-14 20:15:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084934","UTAHDWQ_WQX-WRI220912-4926040-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Sawmill Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.0124500000",41.01245,"-111.3713600000",-111.37136,"OK","16020101","UTAHDWQ_WQX-4926040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0124500000","-111.3713600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926040-0914-4-C/results/970084934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13722","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","12:20:00","MST","2022-04-06 19:20:00",NA,"0.657",657,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084957","UTAHDWQ_WQX-WRI220404-4926050-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Reese Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.1208900000",41.12089,"-111.1860800000",-111.18608,"OK","16020101","UTAHDWQ_WQX-4926050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1208900000","-111.1860800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926050-0406-4-C/results/970084957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13723","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","12:20:00","MST","2022-04-06 19:20:00",NA,"0.576",576,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084964","UTAHDWQ_WQX-WRI220404-4926050-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Reese Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.1208900000",41.12089,"-111.1860800000",-111.18608,"OK","16020101","UTAHDWQ_WQX-4926050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1208900000","-111.1860800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926050-0406-4-C/results/970084964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13724","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","12:15:00","MST","2022-05-11 19:15:00",NA,"0.487",487,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084969","UTAHDWQ_WQX-WRI220509-4926050-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Reese Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.1208900000",41.12089,"-111.1860800000",-111.18608,"OK","16020101","UTAHDWQ_WQX-4926050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1208900000","-111.1860800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926050-0511-4-C/results/970084969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13725","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","12:15:00","MST","2022-05-11 19:15:00",NA,"0.479",479,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084971","UTAHDWQ_WQX-WRI220509-4926050-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Reese Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.1208900000",41.12089,"-111.1860800000",-111.18608,"OK","16020101","UTAHDWQ_WQX-4926050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1208900000","-111.1860800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926050-0511-4-C/results/970084971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13726","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","13:50:00","MST","2022-06-16 20:50:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084981","UTAHDWQ_WQX-WRI220613-4926050-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Reese Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.1208900000",41.12089,"-111.1860800000",-111.18608,"OK","16020101","UTAHDWQ_WQX-4926050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1208900000","-111.1860800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926050-0616-4-C/results/970084981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13727","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","13:50:00","MST","2022-06-16 20:50:00",NA,"0.557",557,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970084999","UTAHDWQ_WQX-WRI220613-4926050-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Reese Ck ab cnfl/ Echo Ck","River/Stream",NA,"41.1208900000",41.12089,"-111.1860800000",-111.18608,"OK","16020101","UTAHDWQ_WQX-4926050",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1208900000","-111.1860800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926050-0616-4-C/results/970084999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13728","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","12:30:00","MST","2022-04-06 19:30:00",NA,"1.36",1360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085021","UTAHDWQ_WQX-WRI220404-4926060-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Echo Ck ab cnfl/ Reese Ck","River/Stream",NA,"41.1211900000",41.12119,"-111.1855700000",-111.18557,"OK","16020101","UTAHDWQ_WQX-4926060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1211900000","-111.1855700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926060-0406-4-C/results/970085021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13729","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","12:30:00","MST","2022-04-06 19:30:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085028","UTAHDWQ_WQX-WRI220404-4926060-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Echo Ck ab cnfl/ Reese Ck","River/Stream",NA,"41.1211900000",41.12119,"-111.1855700000",-111.18557,"OK","16020101","UTAHDWQ_WQX-4926060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1211900000","-111.1855700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926060-0406-4-C/results/970085028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13730","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","12:20:00","MST","2022-05-11 19:20:00",NA,"0.838",838,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085030","UTAHDWQ_WQX-WRI220509-4926060-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Echo Ck ab cnfl/ Reese Ck","River/Stream",NA,"41.1211900000",41.12119,"-111.1855700000",-111.18557,"OK","16020101","UTAHDWQ_WQX-4926060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1211900000","-111.1855700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926060-0511-4-C/results/970085030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13731","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","12:20:00","MST","2022-05-11 19:20:00",NA,"0.853",853,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085032","UTAHDWQ_WQX-WRI220509-4926060-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Echo Ck ab cnfl/ Reese Ck","River/Stream",NA,"41.1211900000",41.12119,"-111.1855700000",-111.18557,"OK","16020101","UTAHDWQ_WQX-4926060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.1211900000","-111.1855700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926060-0511-4-C/results/970085032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13732","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","11:20:00","MST","2022-04-06 18:20:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085042","UTAHDWQ_WQX-WRI220404-4926070-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926070-0406-4-C/results/970085042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13733","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","11:20:00","MST","2022-04-06 18:20:00",NA,"0.558",558,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085043","UTAHDWQ_WQX-WRI220404-4926070-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926070-0406-4-C/results/970085043/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13734","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","11:50:00","MST","2022-05-11 18:50:00",NA,"0.402",402,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085068","UTAHDWQ_WQX-WRI220509-4926070-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926070-0511-4-C/results/970085068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13735","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","11:50:00","MST","2022-05-11 18:50:00",NA,"0.389",389,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085070","UTAHDWQ_WQX-WRI220509-4926070-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926070-0511-4-C/results/970085070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13736","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","12:50:00","MST","2022-06-16 19:50:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085078","UTAHDWQ_WQX-WRI220613-4926070-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926070-0616-4-C/results/970085078/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13737","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","12:50:00","MST","2022-06-16 19:50:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085099","UTAHDWQ_WQX-WRI220613-4926070-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926070-0616-4-C/results/970085099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13738","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","11:20:00","MST","2022-06-30 18:20:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085110","UTAHDWQ_WQX-WRI220629-4926070-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926070-0630-4-C/results/970085110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13739","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","11:20:00","MST","2022-06-30 18:20:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085118","UTAHDWQ_WQX-WRI220629-4926070-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926070-0630-4-C/results/970085118/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13740","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","12:15:00","MST","2022-07-20 19:15:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085128","UTAHDWQ_WQX-WRI220711-4926070-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926070-0720-4-C/results/970085128/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13741","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","12:15:00","MST","2022-07-20 19:15:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085134","UTAHDWQ_WQX-WRI220711-4926070-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926070-0720-4-C/results/970085134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13742","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-10","10:15:00","MST","2022-08-10 17:15:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085138","UTAHDWQ_WQX-WRI220801-4926070-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926070-0810-4-C/results/970085138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13743","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-10","10:15:00","MST","2022-08-10 17:15:00",NA,"0.61",610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085151","UTAHDWQ_WQX-WRI220801-4926070-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926070-0810-4-C/results/970085151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13744","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","13:00:00","MST","2022-09-14 20:00:00",NA,"0.494",494,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085163","UTAHDWQ_WQX-WRI220912-4926070-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926070-0914-4-C/results/970085163/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13745","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","13:00:00","MST","2022-09-14 20:00:00",NA,"0.696",696,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085165","UTAHDWQ_WQX-WRI220912-4926070-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926070-0914-4-C/results/970085165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13746","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:50:00","MST","2022-09-19 20:50:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085182","UTAHDWQ_WQX-WLA2022-4926070-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926070-0919-4-C/results/970085182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13747","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","13:50:00","MST","2022-09-19 20:50:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085201","UTAHDWQ_WQX-WLA2022-4926070-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926070-0919-4-C/results/970085201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13748","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","09:45:00","MST","2022-09-28 16:45:00",NA,"0.514",514,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085229","UTAHDWQ_WQX-WLA2022-4926070-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926070-0928-4-C/results/970085229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13749","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","09:45:00","MST","2022-09-28 16:45:00",NA,"0.568",568,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085232","UTAHDWQ_WQX-WLA2022-4926070-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ECHO CK AB CNFL/ WEBER R","River/Stream",NA,"40.9683500000",40.96835,"-111.4378600000",-111.43786,"OK","16020101","UTAHDWQ_WQX-4926070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9683500000","-111.4378600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926070-0928-4-C/results/970085232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13750","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","12:00:00","MST","2022-04-06 19:00:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085250","UTAHDWQ_WQX-WRI220404-4926080-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926080-0406-4-C/results/970085250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13751","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","12:00:00","MST","2022-04-06 19:00:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085256","UTAHDWQ_WQX-WRI220404-4926080-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926080-0406-4-C/results/970085256/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13752","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","13:15:00","MST","2022-05-11 20:15:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085265","UTAHDWQ_WQX-WRI220509-4926080-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926080-0511-4-C/results/970085265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13753","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","13:15:00","MST","2022-05-11 20:15:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085270","UTAHDWQ_WQX-WRI220509-4926080-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926080-0511-4-C/results/970085270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13754","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","13:25:00","MST","2022-06-16 20:25:00",NA,"0.449",449,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085278","UTAHDWQ_WQX-WRI220613-4926080-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926080-0616-4-C/results/970085278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13755","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","13:25:00","MST","2022-06-16 20:25:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085286","UTAHDWQ_WQX-WRI220613-4926080-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926080-0616-4-C/results/970085286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13756","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","12:50:00","MST","2022-07-20 19:50:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085299","UTAHDWQ_WQX-WRI220711-4926080-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926080-0720-4-C/results/970085299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13757","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","12:50:00","MST","2022-07-20 19:50:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085303","UTAHDWQ_WQX-WRI220711-4926080-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926080-0720-4-C/results/970085303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13758","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-10","10:55:00","MST","2022-08-10 17:55:00",NA,"0.494",494,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085322","UTAHDWQ_WQX-WRI220801-4926080-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926080-0810-4-C/results/970085322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13759","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-10","10:55:00","MST","2022-08-10 17:55:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085325","UTAHDWQ_WQX-WRI220801-4926080-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926080-0810-4-C/results/970085325/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13760","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","13:30:00","MST","2022-09-14 20:30:00",NA,"0.976",976,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085335","UTAHDWQ_WQX-WRI220912-4926080-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926080-0914-4-C/results/970085335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13761","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","13:30:00","MST","2022-09-14 20:30:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085344","UTAHDWQ_WQX-WRI220912-4926080-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","HEINERS CK AB CNFL/ ECHO CK","River/Stream",NA,"41.0332700000",41.03327,"-111.3347200000",-111.33472,"OK","16020101","UTAHDWQ_WQX-4926080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.0332700000","-111.3347200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926080-0914-4-C/results/970085344/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13762","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","11:05:00","MST","2022-04-06 18:05:00",NA,"0.987",987,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085346","UTAHDWQ_WQX-WRI220404-4926100-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926100-0406-4-C/results/970085346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13763","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","11:05:00","MST","2022-04-06 18:05:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085358","UTAHDWQ_WQX-WRI220404-4926100-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926100-0406-4-C/results/970085358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13764","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","11:35:00","MST","2022-05-11 18:35:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085377","UTAHDWQ_WQX-WRI220509-4926100-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926100-0511-4-C/results/970085377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13765","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","11:35:00","MST","2022-05-11 18:35:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085380","UTAHDWQ_WQX-WRI220509-4926100-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926100-0511-4-C/results/970085380/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13766","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","12:40:00","MST","2022-06-16 19:40:00",NA,"0.806",806,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085389","UTAHDWQ_WQX-WRI220613-4926100-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926100-0616-4-C/results/970085389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13767","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","12:40:00","MST","2022-06-16 19:40:00",NA,"0.648",648,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085396","UTAHDWQ_WQX-WRI220613-4926100-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926100-0616-4-C/results/970085396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13768","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","11:00:00","MST","2022-06-30 18:00:00",NA,"0.723",723,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085422","UTAHDWQ_WQX-WRI220629-4926100-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926100-0630-4-C/results/970085422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13769","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","11:00:00","MST","2022-06-30 18:00:00",NA,"0.643",643,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085432","UTAHDWQ_WQX-WRI220629-4926100-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926100-0630-4-C/results/970085432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13770","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","12:00:00","MST","2022-07-20 19:00:00",NA,"0.459",459,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085438","UTAHDWQ_WQX-WRI220711-4926100-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926100-0720-4-C/results/970085438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13771","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","12:00:00","MST","2022-07-20 19:00:00",NA,"0.619",619,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085440","UTAHDWQ_WQX-WRI220711-4926100-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926100-0720-4-C/results/970085440/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13772","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-10","10:00:00","MST","2022-08-10 17:00:00",NA,"0.45",450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085455","UTAHDWQ_WQX-WRI220801-4926100-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926100-0810-4-C/results/970085455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13773","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-10","10:00:00","MST","2022-08-10 17:00:00",NA,"0.695",695,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085459","UTAHDWQ_WQX-WRI220801-4926100-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:23:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926100-0810-4-C/results/970085459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13774","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","12:50:00","MST","2022-09-14 19:50:00",NA,"0.959",959,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085470","UTAHDWQ_WQX-WRI220912-4926100-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926100-0914-4-C/results/970085470/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13775","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","12:50:00","MST","2022-09-14 19:50:00",NA,"0.656",656,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085477","UTAHDWQ_WQX-WRI220912-4926100-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926100-0914-4-C/results/970085477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13776","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:30:00","MST","2022-09-19 20:30:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085484","UTAHDWQ_WQX-WLA2022-4926100-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0919-4-C/results/970085484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13777","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","13:30:00","MST","2022-09-19 20:30:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085511","UTAHDWQ_WQX-WLA2022-4926100-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0919-4-C/results/970085511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13778","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","10:00:00","MST","2022-09-26 17:00:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085532","UTAHDWQ_WQX-WLA2022-4926100-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0926-4-C/results/970085532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13779","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","10:00:00","MST","2022-09-26 17:00:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085535","UTAHDWQ_WQX-WLA2022-4926100-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0926-4-C/results/970085535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13780","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","09:30:00","MST","2022-09-28 16:30:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085543","UTAHDWQ_WQX-WLA2022-4926100-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0928-4-C/results/970085543/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13781","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","09:30:00","MST","2022-09-28 16:30:00",NA,"0.377",377,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085545","UTAHDWQ_WQX-WLA2022-4926100-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES","River/Stream",NA,"40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0928-4-C/results/970085545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13782","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","11:10:00","MST","2022-04-06 18:10:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085560","UTAHDWQ_WQX-WRI220404-4926101-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926101-0406-4-C/results/970085560/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13783","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","11:10:00","MST","2022-04-06 18:10:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085566","UTAHDWQ_WQX-WRI220404-4926101-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926101-0406-4-C/results/970085566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13784","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","11:40:00","MST","2022-05-11 18:40:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085588","UTAHDWQ_WQX-WRI220509-4926101-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926101-0511-4-C/results/970085588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13785","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","11:40:00","MST","2022-05-11 18:40:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085589","UTAHDWQ_WQX-WRI220509-4926101-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926101-0511-4-C/results/970085589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13786","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","12:45:00","MST","2022-06-16 19:45:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085602","UTAHDWQ_WQX-WRI220613-4926101-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926101-0616-4-C/results/970085602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13787","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","12:45:00","MST","2022-06-16 19:45:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085612","UTAHDWQ_WQX-WRI220613-4926101-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926101-0616-4-C/results/970085612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13788","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","11:10:00","MST","2022-06-30 18:10:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085619","UTAHDWQ_WQX-WRI220629-4926101-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926101-0630-4-C/results/970085619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13789","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","11:10:00","MST","2022-06-30 18:10:00",NA,"0.694",694,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085626","UTAHDWQ_WQX-WRI220629-4926101-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926101-0630-4-C/results/970085626/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13790","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","12:10:00","MST","2022-07-20 19:10:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085645","UTAHDWQ_WQX-WRI220711-4926101-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926101-0720-4-C/results/970085645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13791","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","12:10:00","MST","2022-07-20 19:10:00",NA,"0.474",474,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085646","UTAHDWQ_WQX-WRI220711-4926101-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926101-0720-4-C/results/970085646/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13792","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-10","10:05:00","MST","2022-08-10 17:05:00",NA,"0.624",624,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085677","UTAHDWQ_WQX-WRI220801-4926101-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926101-0810-4-C/results/970085677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13793","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-10","10:05:00","MST","2022-08-10 17:05:00",NA,"0.546",546,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085678","UTAHDWQ_WQX-WRI220801-4926101-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926101-0810-4-C/results/970085678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13794","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","12:55:00","MST","2022-09-14 19:55:00",NA,"0.69",690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085681","UTAHDWQ_WQX-WRI220912-4926101-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926101-0914-4-C/results/970085681/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13795","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","12:55:00","MST","2022-09-14 19:55:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085684","UTAHDWQ_WQX-WRI220912-4926101-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ECHO RES Replicate of 4926100","River/Stream","Replicate of 4926100","40.9666100000",40.96661,"-111.4371400000",-111.43714,"OK","16020101","UTAHDWQ_WQX-4926101",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9666100000","-111.4371400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926101-0914-4-C/results/970085684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13796","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","10:00:00","MST","2022-04-06 17:00:00",NA,"0.983",983,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085709","UTAHDWQ_WQX-WRI220404-4926170-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926170-0406-4-C/results/970085709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13797","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","10:00:00","MST","2022-04-06 17:00:00",NA,"0.809",809,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085710","UTAHDWQ_WQX-WRI220404-4926170-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926170-0406-4-C/results/970085710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13798","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","10:40:00","MST","2022-05-11 17:40:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085718","UTAHDWQ_WQX-WRI220509-4926170-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926170-0511-4-C/results/970085718/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13799","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","10:40:00","MST","2022-05-11 17:40:00",NA,"0.222",222,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085721","UTAHDWQ_WQX-WRI220509-4926170-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926170-0511-4-C/results/970085721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13800","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:50:00","MST","2022-06-16 18:50:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085744","UTAHDWQ_WQX-WRI220613-4926170-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926170-0616-4-C/results/970085744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13801","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:50:00","MST","2022-06-16 18:50:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085746","UTAHDWQ_WQX-WRI220613-4926170-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926170-0616-4-C/results/970085746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13802","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","11:50:00","MST","2022-09-14 18:50:00",NA,"0.717",717,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085754","UTAHDWQ_WQX-WRI220912-4926170-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926170-0914-4-C/results/970085754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13803","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","11:50:00","MST","2022-09-14 18:50:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085755","UTAHDWQ_WQX-WRI220912-4926170-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926170-0914-4-C/results/970085755/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13804","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-29","12:00:00","MST","2022-09-29 19:00:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085770","UTAHDWQ_WQX-WRI220926-4926170-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4926170-0929-4-C/results/970085770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13805","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","12:00:00","MST","2022-09-29 19:00:00",NA,"2.49",2490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085779","UTAHDWQ_WQX-WRI220926-4926170-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT","River/Stream",NA,"40.9203800000",40.92038,"-111.4105800000",-111.41058,"OK","16020101","UTAHDWQ_WQX-4926170",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9203800000","-111.4105800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4926170-0929-4-C/results/970085779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13806","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","09:41:00","MST","2022-05-25 16:41:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085790","UTAHDWQ_WQX-CHALKCK220525-4926203-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Huff Ck at Flat Rock","River/Stream",NA,"40.9931000000",40.9931,"-111.2255000000",-111.2255,"OK","16020101","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9931000000","-111.2255000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926203-0525-4-C/results/970085790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13807","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","10:00:00","MST","2022-06-30 17:00:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085792","UTAHDWQ_WQX-CHALKCK220630-4926203-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Huff Ck at Flat Rock","River/Stream",NA,"40.9931000000",40.9931,"-111.2255000000",-111.2255,"OK","16020101","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9931000000","-111.2255000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926203-0630-4-C/results/970085792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13808","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","09:36:00","MST","2022-07-19 16:36:00",NA,"0.193",193,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085795","UTAHDWQ_WQX-CHALKCK220719-4926203-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Huff Ck at Flat Rock","River/Stream",NA,"40.9931000000",40.9931,"-111.2255000000",-111.2255,"OK","16020101","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9931000000","-111.2255000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926203-0719-4-C/results/970085795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13809","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","09:25:00","MST","2022-08-18 16:25:00",NA,"0.507",507,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085798","UTAHDWQ_WQX-CHALKCK220818-4926203-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Huff Ck at Flat Rock","River/Stream",NA,"40.9931000000",40.9931,"-111.2255000000",-111.2255,"OK","16020101","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9931000000","-111.2255000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926203-0818-4-C/results/970085798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13810","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","10:35:00","MST","2022-09-22 17:35:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085801","UTAHDWQ_WQX-CHALKCK220922-4926203-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Huff Ck at Flat Rock","River/Stream",NA,"40.9931000000",40.9931,"-111.2255000000",-111.2255,"OK","16020101","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9931000000","-111.2255000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926203-0922-4-C/results/970085801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13811","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","10:03:00","MST","2022-05-25 17:03:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085806","UTAHDWQ_WQX-CHALKCK220525-4926260-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"40.9630100000",40.96301,"-111.2349100000",-111.23491,"OK","16020101","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9630100000","-111.2349100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926260-0525-4-C/results/970085806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13812","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","10:25:00","MST","2022-06-30 17:25:00",NA,"0.335",335,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085808","UTAHDWQ_WQX-CHALKCK220630-4926260-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"40.9630100000",40.96301,"-111.2349100000",-111.23491,"OK","16020101","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9630100000","-111.2349100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926260-0630-4-C/results/970085808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13813","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","09:55:00","MST","2022-07-19 16:55:00",NA,"0.557",557,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085812","UTAHDWQ_WQX-CHALKCK220719-4926260-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"40.9630100000",40.96301,"-111.2349100000",-111.23491,"OK","16020101","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9630100000","-111.2349100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926260-0719-4-C/results/970085812/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13814","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","10:00:00","MST","2022-08-18 17:00:00",NA,"0.812",812,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085815","UTAHDWQ_WQX-CHALKCK220818-4926260-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"40.9630100000",40.96301,"-111.2349100000",-111.23491,"OK","16020101","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9630100000","-111.2349100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926260-0818-4-C/results/970085815/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14531","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","10:55:00","MST","2022-09-22 17:55:00",NA,"0.367",367,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085818","UTAHDWQ_WQX-CHALKCK220922-4926260-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"40.9630100000",40.96301,"-111.2349100000",-111.23491,"OK","16020101","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9630100000","-111.2349100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926260-0922-4-C/results/970085818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14505","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","10:30:00","MST","2022-05-25 17:30:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085819","UTAHDWQ_WQX-CHALKCK220525-4926290-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926290-0525-4-C/results/970085819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14182","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","10:45:00","MST","2022-06-30 17:45:00",NA,"0.257",257,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085823","UTAHDWQ_WQX-CHALKCK220630-4926290-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926290-0630-4-C/results/970085823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14584","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:10:00","MST","2022-07-19 17:10:00",NA,"0.209",209,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085825","UTAHDWQ_WQX-CHALKCK220719-4926290-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926290-0719-4-C/results/970085825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14508","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","10:20:00","MST","2022-08-18 17:20:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085828","UTAHDWQ_WQX-CHALKCK220818-4926290-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926290-0818-4-C/results/970085828/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14185","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","11:05:00","MST","2022-09-22 18:05:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085860","UTAHDWQ_WQX-CHALKCK220922-4926290-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926290-0922-4-C/results/970085860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14510","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","10:20:00","MST","2022-04-06 17:20:00",NA,"3.04",3040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085865","UTAHDWQ_WQX-WRI220404-4926323-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926323-0406-4-C/results/970085865/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14430","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","10:20:00","MST","2022-04-06 17:20:00",NA,"3",3000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085869","UTAHDWQ_WQX-WRI220404-4926323-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926323-0406-4-C/results/970085869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14552","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","10:50:00","MST","2022-05-11 17:50:00",NA,"1.39",1390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085889","UTAHDWQ_WQX-WRI220509-4926323-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926323-0511-4-C/results/970085889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14432","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","10:50:00","MST","2022-05-11 17:50:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085891","UTAHDWQ_WQX-WRI220509-4926323-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926323-0511-4-C/results/970085891/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14433","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","12:10:00","MST","2022-06-16 19:10:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085905","UTAHDWQ_WQX-WRI220613-4926323-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926323-0616-4-C/results/970085905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14555","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","12:10:00","MST","2022-06-16 19:10:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085911","UTAHDWQ_WQX-WRI220613-4926323-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926323-0616-4-C/results/970085911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14435","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","11:10:00","MST","2022-07-20 18:10:00",NA,"0.983",983,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085928","UTAHDWQ_WQX-WRI220711-4926323-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926323-0720-4-C/results/970085928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14436","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","11:10:00","MST","2022-07-20 18:10:00",NA,"0.837",837,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085931","UTAHDWQ_WQX-WRI220711-4926323-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926323-0720-4-C/results/970085931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14437","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-10","09:10:00","MST","2022-08-10 16:10:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085948","UTAHDWQ_WQX-WRI220801-4926323-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926323-0810-4-C/results/970085948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14438","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-10","09:10:00","MST","2022-08-10 16:10:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085962","UTAHDWQ_WQX-WRI220801-4926323-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926323-0810-4-C/results/970085962/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14439","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-10","09:35:00","MST","2022-08-10 16:35:00",NA,"5.26",5260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085983","UTAHDWQ_WQX-WRI220801-4926325-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926325-0810-4-C/results/970085983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14440","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-10","09:35:00","MST","2022-08-10 16:35:00",NA,"4.91",4910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085985","UTAHDWQ_WQX-WRI220801-4926325-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926325-0810-4-C/results/970085985/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14441","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","12:20:00","MST","2022-09-14 19:20:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970085994","UTAHDWQ_WQX-WRI220912-4926323-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926323-0914-4-C/results/970085994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14442","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","12:20:00","MST","2022-09-14 19:20:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086001","UTAHDWQ_WQX-WRI220912-4926323-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Receiving Stream ab New Coalville WWTP Discharge","Facility Other",NA,"40.9136400000",40.91364,"-111.3999700000",-111.39997,"OK","16020101","UTAHDWQ_WQX-4926323",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9136400000","-111.3999700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926323-0914-4-C/results/970086001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14443","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","10:45:00","MST","2022-04-06 17:45:00",NA,"5.25",5250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086008","UTAHDWQ_WQX-WRI220404-4926325-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926325-0406-4-C/results/970086008/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14444","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","10:45:00","MST","2022-04-06 17:45:00",NA,"5.2",5200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086016","UTAHDWQ_WQX-WRI220404-4926325-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926325-0406-4-C/results/970086016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14445","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","11:10:00","MST","2022-05-11 18:10:00",NA,"4.41",4410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086031","UTAHDWQ_WQX-WRI220509-4926325-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926325-0511-4-C/results/970086031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14446","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","11:10:00","MST","2022-05-11 18:10:00",NA,"4.3",4300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086037","UTAHDWQ_WQX-WRI220509-4926325-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926325-0511-4-C/results/970086037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14447","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","12:20:00","MST","2022-06-16 19:20:00",NA,"4.05",4050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086047","UTAHDWQ_WQX-WRI220613-4926325-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926325-0616-4-C/results/970086047/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14327","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","12:20:00","MST","2022-06-16 19:20:00",NA,"4.32",4320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086049","UTAHDWQ_WQX-WRI220613-4926325-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926325-0616-4-C/results/970086049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14449","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","11:40:00","MST","2022-07-20 18:40:00",NA,"5.79",5790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086073","UTAHDWQ_WQX-WRI220711-4926325-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926325-0720-4-C/results/970086073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14450","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","11:40:00","MST","2022-07-20 18:40:00",NA,"5.9",5900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086076","UTAHDWQ_WQX-WRI220711-4926325-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926325-0720-4-C/results/970086076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14330","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","12:40:00","MST","2022-09-14 19:40:00",NA,"4.67",4670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086080","UTAHDWQ_WQX-WRI220912-4926325-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926325-0914-4-C/results/970086080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14452","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","12:40:00","MST","2022-09-14 19:40:00",NA,"4.95",4950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086087","UTAHDWQ_WQX-WRI220912-4926325-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","New Coalville WWTP-Post 07/2015","Facility Other",NA,"40.9163600000",40.91636,"-111.4024800000",-111.40248,"OK","16020101","UTAHDWQ_WQX-4926325",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9163600000","-111.4024800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926325-0914-4-C/results/970086087/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14453","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","14:25:00","MST","2022-05-25 21:25:00",NA,"0.374",374,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086092","UTAHDWQ_WQX-CHALKCK220525-4926350-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926350-0525-4-C/results/970086092/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14454","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","14:00:00","MST","2022-06-30 21:00:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086093","UTAHDWQ_WQX-CHALKCK220630-4926350-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926350-0630-4-C/results/970086093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14455","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","13:20:00","MST","2022-07-19 20:20:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086098","UTAHDWQ_WQX-CHALKCK220719-4926350-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926350-0719-4-C/results/970086098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14456","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","13:50:00","MST","2022-08-18 20:50:00",NA,"0.463",463,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086099","UTAHDWQ_WQX-CHALKCK220818-4926350-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926350-0818-4-C/results/970086099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14538","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","14:35:00","MST","2022-09-22 21:35:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086132","UTAHDWQ_WQX-CHALKCK220922-4926350-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926350-0922-4-C/results/970086132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14337","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","14:25:00","MST","2022-05-25 21:25:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086133","UTAHDWQ_WQX-CHALKCK220525-4926352-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926352-0525-4-C/results/970086133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14459","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","14:00:00","MST","2022-06-30 21:00:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086136","UTAHDWQ_WQX-CHALKCK220630-4926352-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926352-0630-4-C/results/970086136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14460","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","13:20:00","MST","2022-07-19 20:20:00",NA,"0.189",189,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086141","UTAHDWQ_WQX-CHALKCK220719-4926352-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926352-0719-4-C/results/970086141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14461","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","13:55:00","MST","2022-08-18 20:55:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086144","UTAHDWQ_WQX-CHALKCK220818-4926352-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926352-0818-4-C/results/970086144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14462","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","14:40:00","MST","2022-09-22 21:40:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086146","UTAHDWQ_WQX-CHALKCK220922-4926352-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926352-0922-4-C/results/970086146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14463","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","13:33:00","MST","2022-05-25 20:33:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086149","UTAHDWQ_WQX-CHALKCK220525-4926355-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"40.9092700000",40.90927,"-111.2352500000",-111.23525,"OK","16020101","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9092700000","-111.2352500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926355-0525-4-C/results/970086149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14546","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","11:45:00","MST","2022-06-30 18:45:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086152","UTAHDWQ_WQX-CHALKCK220630-4926355-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"40.9092700000",40.90927,"-111.2352500000",-111.23525,"OK","16020101","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9092700000","-111.2352500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926355-0630-4-C/results/970086152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14465","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:00:00","MST","2022-07-19 18:00:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086155","UTAHDWQ_WQX-CHALKCK220719-4926355-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"40.9092700000",40.90927,"-111.2352500000",-111.23525,"OK","16020101","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9092700000","-111.2352500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926355-0719-4-C/results/970086155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14466","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","11:50:00","MST","2022-08-18 18:50:00",NA,"0.429",429,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086159","UTAHDWQ_WQX-CHALKCK220818-4926355-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"40.9092700000",40.90927,"-111.2352500000",-111.23525,"OK","16020101","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9092700000","-111.2352500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926355-0818-4-C/results/970086159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14588","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","11:55:00","MST","2022-09-22 18:55:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086162","UTAHDWQ_WQX-CHALKCK220922-4926355-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"40.9092700000",40.90927,"-111.2352500000",-111.23525,"OK","16020101","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9092700000","-111.2352500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926355-0922-4-C/results/970086162/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14468","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","11:12:00","MST","2022-05-25 18:12:00",NA,"0.276",276,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086191","UTAHDWQ_WQX-CHALKCK220525-4926360-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926360-0525-4-C/results/970086191/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14469","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","11:15:00","MST","2022-06-30 18:15:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086196","UTAHDWQ_WQX-CHALKCK220630-4926360-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926360-0630-4-C/results/970086196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14581","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:30:00","MST","2022-07-19 17:30:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086198","UTAHDWQ_WQX-CHALKCK220719-4926360-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926360-0719-4-C/results/970086198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14471","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","10:55:00","MST","2022-08-18 17:55:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086200","UTAHDWQ_WQX-CHALKCK220818-4926360-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926360-0818-4-C/results/970086200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14472","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","11:35:00","MST","2022-09-22 18:35:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086232","UTAHDWQ_WQX-CHALKCK220922-4926360-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926360-0922-4-C/results/970086232/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14514","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","12:15:00","MST","2022-05-25 19:15:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086236","UTAHDWQ_WQX-CHALKCK220525-4926361-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926361-0525-4-C/results/970086236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14474","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","12:30:00","MST","2022-06-30 19:30:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086238","UTAHDWQ_WQX-CHALKCK220630-4926361-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926361-0630-4-C/results/970086238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14475","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","12:05:00","MST","2022-07-19 19:05:00",NA,"0.465",465,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Relative Percentage difference (RPD) criteria not within quality control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086240","UTAHDWQ_WQX-CHALKCK220719-4926361-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926361-0719-4-C/results/970086240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14544","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","12:20:00","MST","2022-08-18 19:20:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086243","UTAHDWQ_WQX-CHALKCK220818-4926361-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926361-0818-4-C/results/970086243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14477","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","12:45:00","MST","2022-09-22 19:45:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086274","UTAHDWQ_WQX-CHALKCK220922-4926361-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926361-0922-4-C/results/970086274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14478","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","11:42:00","MST","2022-05-25 18:42:00",NA,"0.193",193,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086306","UTAHDWQ_WQX-CHALKCK220525-4926363-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926363-0525-4-C/results/970086306/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14592","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","13:10:00","MST","2022-06-30 20:10:00",NA,"0.236",236,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086308","UTAHDWQ_WQX-CHALKCK220630-4926363-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926363-0630-4-C/results/970086308/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14359","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","12:30:00","MST","2022-07-19 19:30:00",NA,"0.536",536,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086313","UTAHDWQ_WQX-CHALKCK220719-4926363-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926363-0719-4-C/results/970086313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14481","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","12:45:00","MST","2022-08-18 19:45:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086315","UTAHDWQ_WQX-CHALKCK220818-4926363-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926363-0818-4-C/results/970086315/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14565","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","13:15:00","MST","2022-09-22 20:15:00",NA,"0.189",189,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086346","UTAHDWQ_WQX-CHALKCK220922-4926363-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926363-0922-4-C/results/970086346/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14483","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","08:21:00","MST","2022-05-25 15:21:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086350","UTAHDWQ_WQX-CHALKCK220525-4926370-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926370-0525-4-C/results/970086350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14484","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","08:45:00","MST","2022-06-30 15:45:00",NA,"0.325",325,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086351","UTAHDWQ_WQX-CHALKCK220630-4926370-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926370-0630-4-C/results/970086351/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14485","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","08:45:00","MST","2022-07-19 15:45:00",NA,"0.676",676,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086356","UTAHDWQ_WQX-CHALKCK220719-4926370-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926370-0719-4-C/results/970086356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14486","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","08:20:00","MST","2022-08-18 15:20:00",NA,"0.331",331,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086359","UTAHDWQ_WQX-CHALKCK220818-4926370-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926370-0818-4-C/results/970086359/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14529","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","09:25:00","MST","2022-09-22 16:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086390","UTAHDWQ_WQX-CHALKCK220922-4926370-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926370-0922-4-C/results/970086390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14367","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","07:57:00","MST","2022-05-25 14:57:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086391","UTAHDWQ_WQX-CHALKCK220525-4926380-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926380-0525-4-C/results/970086391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14489","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","08:15:00","MST","2022-06-30 15:15:00",NA,"0.398",398,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086395","UTAHDWQ_WQX-CHALKCK220630-4926380-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926380-0630-4-C/results/970086395/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14560","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","08:15:00","MST","2022-07-19 15:15:00",NA,"0.582",582,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086398","UTAHDWQ_WQX-CHALKCK220719-4926380-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926380-0719-4-C/results/970086398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14451","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","08:00:00","MST","2022-08-18 15:00:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086401","UTAHDWQ_WQX-CHALKCK220818-4926380-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926380-0818-4-C/results/970086401/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14533","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","09:10:00","MST","2022-09-22 16:10:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086432","UTAHDWQ_WQX-CHALKCK220922-4926380-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926380-0922-4-C/results/970086432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14578","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-25","08:50:00","MST","2022-05-25 15:50:00",NA,"0.418",418,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086436","UTAHDWQ_WQX-CHALKCK220525-4926390-0525-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926390-0525-4-C/results/970086436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14494","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","09:19:00","MST","2022-06-30 16:19:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086438","UTAHDWQ_WQX-CHALKCK220630-4926390-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926390-0630-4-C/results/970086438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14495","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","09:05:00","MST","2022-07-19 16:05:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086442","UTAHDWQ_WQX-CHALKCK220719-4926390-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926390-0719-4-C/results/970086442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14375","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","08:45:00","MST","2022-08-18 15:45:00",NA,"0.258",258,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086445","UTAHDWQ_WQX-CHALKCK220818-4926390-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926390-0818-4-C/results/970086445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14376","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","09:55:00","MST","2022-09-22 16:55:00",NA,"0.164",164,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086474","UTAHDWQ_WQX-CHALKCK220922-4926390-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926390-0922-4-C/results/970086474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14377","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-06","10:10:00","MST","2022-04-06 17:10:00",NA,"0.5",500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086477","UTAHDWQ_WQX-WRI220404-4926400-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926400-0406-4-C/results/970086477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13891","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-06","10:10:00","MST","2022-04-06 17:10:00",NA,"0.504",504,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086495","UTAHDWQ_WQX-WRI220404-4926400-0406-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926400-0406-4-C/results/970086495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14379","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","11:25:00","MST","2022-05-11 18:25:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086506","UTAHDWQ_WQX-WRI220509-4926400-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926400-0511-4-C/results/970086506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14380","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","11:25:00","MST","2022-05-11 18:25:00",NA,"0.277",277,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086511","UTAHDWQ_WQX-WRI220509-4926400-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926400-0511-4-C/results/970086511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14381","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:45:00","MST","2022-06-16 18:45:00",NA,"0.423",423,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086516","UTAHDWQ_WQX-WRI220613-4926400-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926400-0616-4-C/results/970086516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14382","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:45:00","MST","2022-06-16 18:45:00",NA,"0.665",665,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086530","UTAHDWQ_WQX-WRI220613-4926400-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:24:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926400-0616-4-C/results/970086530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14383","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","11:00:00","MST","2022-07-20 18:00:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086545","UTAHDWQ_WQX-WRI220711-4926400-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926400-0720-4-C/results/970086545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13897","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","11:00:00","MST","2022-07-20 18:00:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086547","UTAHDWQ_WQX-WRI220711-4926400-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926400-0720-4-C/results/970086547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13898","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-10","08:55:00","MST","2022-08-10 15:55:00",NA,"0.744",744,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086550","UTAHDWQ_WQX-WRI220801-4926400-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926400-0810-4-C/results/970086550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13899","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-10","08:55:00","MST","2022-08-10 15:55:00",NA,"0.485",485,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086564","UTAHDWQ_WQX-WRI220801-4926400-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926400-0810-4-C/results/970086564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13900","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","12:10:00","MST","2022-09-14 19:10:00",NA,"0.747",747,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086575","UTAHDWQ_WQX-WRI220912-4926400-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926400-0914-4-C/results/970086575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13901","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","12:10:00","MST","2022-09-14 19:10:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086576","UTAHDWQ_WQX-WRI220912-4926400-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ECHO RES","River/Stream",NA,"40.9118900000",40.91189,"-111.4063100000",-111.40631,"OK","16020101","UTAHDWQ_WQX-4926400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9118900000","-111.4063100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926400-0914-4-C/results/970086576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13902","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","14:00:00","MST","2022-04-05 21:00:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086601","UTAHDWQ_WQX-WRI220404-4926700-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926700-0405-4-C/results/970086601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13903","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","10:00:00","MST","2022-05-11 17:00:00",NA,"0.339",339,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086609","UTAHDWQ_WQX-WRI220509-4926700-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926700-0511-4-C/results/970086609/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14391","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","10:00:00","MST","2022-05-11 17:00:00",NA,"0.287",287,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086616","UTAHDWQ_WQX-WRI220509-4926700-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926700-0511-4-C/results/970086616/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13905","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:15:00","MST","2022-06-16 18:15:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086631","UTAHDWQ_WQX-WRI220613-4926700-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926700-0616-4-C/results/970086631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13906","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:15:00","MST","2022-06-16 18:15:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086634","UTAHDWQ_WQX-WRI220613-4926700-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926700-0616-4-C/results/970086634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14394","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","10:30:00","MST","2022-07-20 17:30:00",NA,"0.812",812,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086648","UTAHDWQ_WQX-WRI220711-4926700-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926700-0720-4-C/results/970086648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13908","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:30:00","MST","2022-07-20 17:30:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086650","UTAHDWQ_WQX-WRI220711-4926700-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926700-0720-4-C/results/970086650/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13909","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","14:15:00","MST","2022-08-09 21:15:00",NA,"0.802",802,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086663","UTAHDWQ_WQX-WRI220801-4926700-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926700-0809-4-C/results/970086663/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13910","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","14:15:00","MST","2022-08-09 21:15:00",NA,"0.748",748,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086673","UTAHDWQ_WQX-WRI220801-4926700-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926700-0809-4-C/results/970086673/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13911","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","14:30:00","MST","2022-09-13 21:30:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086679","UTAHDWQ_WQX-WRI220912-4926700-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926700-0913-4-C/results/970086679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14399","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","14:30:00","MST","2022-09-13 21:30:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086688","UTAHDWQ_WQX-WRI220912-4926700-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Alexander Ck @ Highway Xing","River/Stream",NA,"40.8057900000",40.80579,"-111.4367000000",-111.4367,"OK","16020101","UTAHDWQ_WQX-4926700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8057900000","-111.4367000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926700-0913-4-C/results/970086688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13913","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","13:40:00","MST","2022-04-04 20:40:00",NA,"0.942",942,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086707","UTAHDWQ_WQX-WRI220404-4926740-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926740-0404-4-C/results/970086707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13914","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","13:40:00","MST","2022-04-04 20:40:00",NA,"0.883",883,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086708","UTAHDWQ_WQX-WRI220404-4926740-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926740-0404-4-C/results/970086708/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14402","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","15:20:00","MST","2022-05-09 22:20:00",NA,"0.894",894,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086736","UTAHDWQ_WQX-WRI220509-4926740-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926740-0509-4-C/results/970086736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13916","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","15:20:00","MST","2022-05-09 22:20:00",NA,"0.961",961,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086745","UTAHDWQ_WQX-WRI220509-4926740-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926740-0509-4-C/results/970086745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13917","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","14:00:00","MST","2022-06-13 21:00:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086783","UTAHDWQ_WQX-WRI220613-4926740-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926740-0613-4-C/results/970086783/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13918","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","14:00:00","MST","2022-06-13 21:00:00",NA,"2.96",2960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086809","UTAHDWQ_WQX-WRI220613-4926740-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926740-0613-4-C/results/970086809/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13919","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","15:30:00","MST","2022-07-18 22:30:00",NA,"0.784",784,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086821","UTAHDWQ_WQX-WRI220711-4926740-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926740-0718-4-C/results/970086821/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13920","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","15:30:00","MST","2022-07-18 22:30:00",NA,"0.967",967,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086843","UTAHDWQ_WQX-WRI220711-4926740-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926740-0718-4-C/results/970086843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13921","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","15:10:00","MST","2022-08-08 22:10:00",NA,"1.58",1580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086872","UTAHDWQ_WQX-WRI220801-4926740-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926740-0808-4-C/results/970086872/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13922","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","15:10:00","MST","2022-08-08 22:10:00",NA,"1.59",1590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086894","UTAHDWQ_WQX-WRI220801-4926740-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926740-0808-4-C/results/970086894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13923","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","13:50:00","MST","2022-09-12 20:50:00",NA,"1.96",1960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086941","UTAHDWQ_WQX-WRI220912-4926740-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT FARM XING IN ATKINSON","River/Stream",NA,"40.7417500000",40.74175,"-111.4748500000",-111.47485,"OK","16020101","UTAHDWQ_WQX-4926740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7417500000","-111.4748500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926740-0912-4-C/results/970086941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13924","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:50:00","MST","2022-04-05 20:50:00",NA,"0.899",899,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086953","UTAHDWQ_WQX-WRI220404-4926750-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926750-0405-4-C/results/970086953/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13925","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:50:00","MST","2022-04-05 20:50:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086955","UTAHDWQ_WQX-WRI220404-4926750-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926750-0405-4-C/results/970086955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13562","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","09:55:00","MST","2022-05-11 16:55:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970086996","UTAHDWQ_WQX-WRI220509-4926750-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926750-0511-4-C/results/970086996/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14171","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","09:55:00","MST","2022-05-11 16:55:00",NA,"0.569",569,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087025","UTAHDWQ_WQX-WRI220509-4926750-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926750-0511-4-C/results/970087025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14415","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:00:00","MST","2022-06-16 18:00:00",NA,"1.68",1680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087041","UTAHDWQ_WQX-WRI220613-4926750-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926750-0616-4-C/results/970087041/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13929","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:00:00","MST","2022-06-16 18:00:00",NA,"1.47",1470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087049","UTAHDWQ_WQX-WRI220613-4926750-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926750-0616-4-C/results/970087049/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13930","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","10:15:00","MST","2022-07-20 17:15:00",NA,"0.716",716,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087079","UTAHDWQ_WQX-WRI220711-4926750-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926750-0720-4-C/results/970087079/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13931","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:15:00","MST","2022-07-20 17:15:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087085","UTAHDWQ_WQX-WRI220711-4926750-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926750-0720-4-C/results/970087085/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13932","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","14:00:00","MST","2022-08-09 21:00:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087140","UTAHDWQ_WQX-WRI220801-4926750-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926750-0809-4-C/results/970087140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13933","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","14:00:00","MST","2022-08-09 21:00:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087148","UTAHDWQ_WQX-WRI220801-4926750-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926750-0809-4-C/results/970087148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13934","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","14:20:00","MST","2022-09-13 21:20:00",NA,"0.998",998,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087163","UTAHDWQ_WQX-WRI220912-4926750-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926750-0913-4-C/results/970087163/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13935","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","14:20:00","MST","2022-09-13 21:20:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087177","UTAHDWQ_WQX-WRI220912-4926750-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT WANSHIP AB CNFL / WEBER R","River/Stream",NA,"40.8096700000",40.80967,"-111.4074200000",-111.40742,"OK","16020101","UTAHDWQ_WQX-4926750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8096700000","-111.4074200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926750-0913-4-C/results/970087177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13936","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","13:50:00","MST","2022-04-04 20:50:00",NA,"2.13",2130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087197","UTAHDWQ_WQX-WRI220404-4926790-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926790-0404-4-C/results/970087197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13937","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","13:50:00","MST","2022-04-04 20:50:00",NA,"2.05",2050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087228","UTAHDWQ_WQX-WRI220404-4926790-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926790-0404-4-C/results/970087228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13938","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","15:05:00","MST","2022-05-09 22:05:00",NA,"2.79",2790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087269","UTAHDWQ_WQX-WRI220509-4926790-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926790-0509-4-C/results/970087269/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13939","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","15:05:00","MST","2022-05-09 22:05:00",NA,"2.69",2690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087278","UTAHDWQ_WQX-WRI220509-4926790-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926790-0509-4-C/results/970087278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13940","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","13:40:00","MST","2022-06-13 20:40:00",NA,"3.67",3670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087298","UTAHDWQ_WQX-WRI220613-4926790-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926790-0613-4-C/results/970087298/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13941","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","13:40:00","MST","2022-06-13 20:40:00",NA,"2.46",2460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087299","UTAHDWQ_WQX-WRI220613-4926790-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926790-0613-4-C/results/970087299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13942","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","15:10:00","MST","2022-07-18 22:10:00",NA,"1.99",1990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087333","UTAHDWQ_WQX-WRI220711-4926790-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926790-0718-4-C/results/970087333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13943","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","15:10:00","MST","2022-07-18 22:10:00",NA,"2.06",2060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087335","UTAHDWQ_WQX-WRI220711-4926790-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926790-0718-4-C/results/970087335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13944","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-02","10:30:00","MST","2022-06-02 17:30:00",NA,"2.08",2080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.14",0.14,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087365","UTAHDWQ_WQX-LAKES220531-4937120-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","Ouray Park Canal ab Pelican Lake at 7000 S Xing","Canal Irrigation",NA,"40.2032900000",40.20329,"-109.7029200000",-109.70292,"OK","14060001","UTAHDWQ_WQX-4937120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2032900000","-109.7029200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937120-0602-4-C/results/970087365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13945","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","10:30:00","MST","2022-08-08 17:30:00",NA,"5.37",5370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087376","UTAHDWQ_WQX-WRI220801-4926790-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926790-0808-4-C/results/970087376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13946","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","10:30:00","MST","2022-08-08 17:30:00",NA,"5.53",5530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087381","UTAHDWQ_WQX-WRI220801-4926790-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926790-0808-4-C/results/970087381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13947","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","13:30:00","MST","2022-09-12 20:30:00",NA,"3.08",3080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087434","UTAHDWQ_WQX-WRI220912-4926790-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926790-0912-4-C/results/970087434/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13948","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","13:30:00","MST","2022-09-12 20:30:00",NA,"2.74",2740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087443","UTAHDWQ_WQX-WRI220912-4926790-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CREEK WWTP","Facility Other",NA,"40.7344900000",40.73449,"-111.4798800000",-111.47988,"OK","16020101","UTAHDWQ_WQX-4926790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7344900000","-111.4798800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926790-0912-4-C/results/970087443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13949","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","13:30:00","MST","2022-04-04 20:30:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087471","UTAHDWQ_WQX-WRI220404-4926800-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926800-0404-4-C/results/970087471/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13950","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","13:30:00","MST","2022-04-04 20:30:00",NA,"0.396",396,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087491","UTAHDWQ_WQX-WRI220404-4926800-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926800-0404-4-C/results/970087491/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13951","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","14:45:00","MST","2022-05-09 21:45:00",NA,"0.17",170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087524","UTAHDWQ_WQX-WRI220509-4926800-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926800-0509-4-C/results/970087524/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13952","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","14:45:00","MST","2022-05-09 21:45:00",NA,"0.245",245,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087542","UTAHDWQ_WQX-WRI220509-4926800-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926800-0509-4-C/results/970087542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13953","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","13:20:00","MST","2022-06-13 20:20:00",NA,"0.456",456,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087565","UTAHDWQ_WQX-WRI220613-4926800-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926800-0613-4-C/results/970087565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13954","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","13:20:00","MST","2022-06-13 20:20:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087583","UTAHDWQ_WQX-WRI220613-4926800-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926800-0613-4-C/results/970087583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13955","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","14:35:00","MST","2022-07-18 21:35:00",NA,"0.411",411,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087614","UTAHDWQ_WQX-WRI220711-4926800-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926800-0718-4-C/results/970087614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13956","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","14:35:00","MST","2022-07-18 21:35:00",NA,"0.313",313,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087624","UTAHDWQ_WQX-WRI220711-4926800-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926800-0718-4-C/results/970087624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13957","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","10:00:00","MST","2022-08-08 17:00:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087645","UTAHDWQ_WQX-WRI220801-4926800-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926800-0808-4-C/results/970087645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13958","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","10:00:00","MST","2022-08-08 17:00:00",NA,"0.525",525,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087664","UTAHDWQ_WQX-WRI220801-4926800-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926800-0808-4-C/results/970087664/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13959","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","13:15:00","MST","2022-09-12 20:15:00",NA,"0.806",806,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087696","UTAHDWQ_WQX-WRI220912-4926800-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926800-0912-4-C/results/970087696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13960","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","13:15:00","MST","2022-09-12 20:15:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087702","UTAHDWQ_WQX-WRI220912-4926800-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing","River/Stream",NA,"40.7229700000",40.72297,"-111.4786800000",-111.47868,"OK","16020101","UTAHDWQ_WQX-4926800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7229700000","-111.4786800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926800-0912-4-C/results/970087702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13961","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","13:00:00","MST","2022-04-04 20:00:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087726","UTAHDWQ_WQX-WRI220404-4926850-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926850-0404-4-C/results/970087726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13962","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","13:00:00","MST","2022-04-04 20:00:00",NA,"0.543",543,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087759","UTAHDWQ_WQX-WRI220404-4926850-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926850-0404-4-C/results/970087759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13599","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","14:25:00","MST","2022-05-09 21:25:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087780","UTAHDWQ_WQX-WRI220509-4926850-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926850-0509-4-C/results/970087780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13964","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","14:25:00","MST","2022-05-09 21:25:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087783","UTAHDWQ_WQX-WRI220509-4926850-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926850-0509-4-C/results/970087783/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13965","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","13:10:00","MST","2022-06-13 20:10:00",NA,"0.494",494,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087813","UTAHDWQ_WQX-WRI220613-4926850-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926850-0613-4-C/results/970087813/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13602","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","13:10:00","MST","2022-06-13 20:10:00",NA,"2",2000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087816","UTAHDWQ_WQX-WRI220613-4926850-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926850-0613-4-C/results/970087816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13603","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","14:15:00","MST","2022-07-18 21:15:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087864","UTAHDWQ_WQX-WRI220711-4926850-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926850-0718-4-C/results/970087864/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13968","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","14:15:00","MST","2022-07-18 21:15:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087866","UTAHDWQ_WQX-WRI220711-4926850-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926850-0718-4-C/results/970087866/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13969","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","14:35:00","MST","2022-08-08 21:35:00",NA,"0.326",326,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087903","UTAHDWQ_WQX-WRI220801-4926850-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926850-0808-4-C/results/970087903/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13606","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","14:35:00","MST","2022-08-08 21:35:00",NA,"0.256",256,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087910","UTAHDWQ_WQX-WRI220801-4926850-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926850-0808-4-C/results/970087910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13971","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","12:50:00","MST","2022-09-12 19:50:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087917","UTAHDWQ_WQX-WRI220912-4926850-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926850-0912-4-C/results/970087917/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13972","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","12:50:00","MST","2022-09-12 19:50:00",NA,"0.868",868,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087919","UTAHDWQ_WQX-WRI220912-4926850-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SILVER CK AT US40 XING E OF PARK CITY","River/Stream",NA,"40.6738400000",40.67384,"-111.4644500000",-111.46445,"OK","16020101","UTAHDWQ_WQX-4926850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6738400000","-111.4644500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926850-0912-4-C/results/970087919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13609","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","12:45:00","MST","2022-04-04 19:45:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087977","UTAHDWQ_WQX-WRI220404-4926948-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926948-0404-4-C/results/970087977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13974","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","12:45:00","MST","2022-04-04 19:45:00",NA,"0.645",645,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970087994","UTAHDWQ_WQX-WRI220404-4926948-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926948-0404-4-C/results/970087994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13611","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","14:10:00","MST","2022-05-09 21:10:00",NA,"0.491",491,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088002","UTAHDWQ_WQX-WRI220509-4926948-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926948-0509-4-C/results/970088002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13976","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","14:10:00","MST","2022-05-09 21:10:00",NA,"0.432",432,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088028","UTAHDWQ_WQX-WRI220509-4926948-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926948-0509-4-C/results/970088028/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13977","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","12:50:00","MST","2022-06-13 19:50:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088037","UTAHDWQ_WQX-WRI220613-4926948-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926948-0613-4-C/results/970088037/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13978","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","12:50:00","MST","2022-06-13 19:50:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088050","UTAHDWQ_WQX-WRI220613-4926948-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926948-0613-4-C/results/970088050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13979","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","14:00:00","MST","2022-07-18 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088080","UTAHDWQ_WQX-WRI220711-4926948-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926948-0718-4-C/results/970088080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13980","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","14:00:00","MST","2022-07-18 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088101","UTAHDWQ_WQX-WRI220711-4926948-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926948-0718-4-C/results/970088101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13981","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","14:15:00","MST","2022-08-08 21:15:00",NA,"0.177",177,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088125","UTAHDWQ_WQX-WRI220801-4926948-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926948-0808-4-C/results/970088125/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13982","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","14:15:00","MST","2022-08-08 21:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088144","UTAHDWQ_WQX-WRI220801-4926948-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926948-0808-4-C/results/970088144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13983","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","12:35:00","MST","2022-09-12 19:35:00",NA,"0.497",497,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088147","UTAHDWQ_WQX-WRI220912-4926948-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926948-0912-4-C/results/970088147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13984","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","12:35:00","MST","2022-09-12 19:35:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088158","UTAHDWQ_WQX-WRI220912-4926948-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950","River/Stream","Replicate of 4926950","40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926948",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926948-0912-4-C/results/970088158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13985","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-04","12:40:00","MST","2022-04-04 19:40:00",NA,"0.784",784,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088204","UTAHDWQ_WQX-WRI220404-4926950-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926950-0404-4-C/results/970088204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13986","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-04","12:40:00","MST","2022-04-04 19:40:00",NA,"0.649",649,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088226","UTAHDWQ_WQX-WRI220404-4926950-0404-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926950-0404-4-C/results/970088226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13987","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","14:00:00","MST","2022-05-09 21:00:00",NA,"0.445",445,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088261","UTAHDWQ_WQX-WRI220509-4926950-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926950-0509-4-C/results/970088261/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13988","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","14:00:00","MST","2022-05-09 21:00:00",NA,"0.597",597,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088270","UTAHDWQ_WQX-WRI220509-4926950-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926950-0509-4-C/results/970088270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14585","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","12:45:00","MST","2022-06-13 19:45:00",NA,"2.45",2450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088281","UTAHDWQ_WQX-WRI220613-4926950-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926950-0613-4-C/results/970088281/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14554","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","12:45:00","MST","2022-06-13 19:45:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088294","UTAHDWQ_WQX-WRI220613-4926950-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926950-0613-4-C/results/970088294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14559","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","13:50:00","MST","2022-07-18 20:50:00",NA,"0.325",325,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088323","UTAHDWQ_WQX-WRI220711-4926950-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926950-0718-4-C/results/970088323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14591","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","13:50:00","MST","2022-07-18 20:50:00",NA,"0.272",272,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088354","UTAHDWQ_WQX-WRI220711-4926950-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926950-0718-4-C/results/970088354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14480","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","14:10:00","MST","2022-08-08 21:10:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088362","UTAHDWQ_WQX-WRI220801-4926950-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926950-0808-4-C/results/970088362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14558","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","14:10:00","MST","2022-08-08 21:10:00",NA,"0.157",157,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088372","UTAHDWQ_WQX-WRI220801-4926950-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926950-0808-4-C/results/970088372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14482","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-12","12:30:00","MST","2022-09-12 19:30:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088403","UTAHDWQ_WQX-WRI220912-4926950-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926950-0912-4-C/results/970088403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14551","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-12","12:30:00","MST","2022-09-12 19:30:00",NA,"0.462",462,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088405","UTAHDWQ_WQX-WRI220912-4926950-0912-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Silver Ck @ Iron Horse Dr Xing","River/Stream",NA,"40.6591500000",40.65915,"-111.5017500000",-111.50175,"OK","16020101","UTAHDWQ_WQX-4926950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6591500000","-111.5017500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926950-0912-4-C/results/970088405/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14525","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:50:00","MST","2022-04-05 20:50:00",NA,"0.623",623,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088432","UTAHDWQ_WQX-WRI220404-4927010-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927010-0405-4-C/results/970088432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14526","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:50:00","MST","2022-04-05 20:50:00",NA,"0.672",672,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088449","UTAHDWQ_WQX-WRI220404-4927010-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927010-0405-4-C/results/970088449/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14527","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","09:35:00","MST","2022-05-11 16:35:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088451","UTAHDWQ_WQX-WRI220509-4927010-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927010-0511-4-C/results/970088451/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14569","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","09:35:00","MST","2022-05-11 16:35:00",NA,"0.378",378,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088452","UTAHDWQ_WQX-WRI220509-4927010-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927010-0511-4-C/results/970088452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14448","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","10:55:00","MST","2022-06-16 17:55:00",NA,"0.455",455,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088466","UTAHDWQ_WQX-WRI220613-4927010-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927010-0616-4-C/results/970088466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14530","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","10:55:00","MST","2022-06-16 17:55:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088485","UTAHDWQ_WQX-WRI220613-4927010-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927010-0616-4-C/results/970088485/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14491","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","09:50:00","MST","2022-07-20 16:50:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088493","UTAHDWQ_WQX-WRI220711-4927010-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927010-0720-4-C/results/970088493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14532","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","09:50:00","MST","2022-07-20 16:50:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088496","UTAHDWQ_WQX-WRI220711-4927010-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:25:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927010-0720-4-C/results/970088496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14566","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","13:40:00","MST","2022-08-09 20:40:00",NA,"0.514",514,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088513","UTAHDWQ_WQX-WRI220801-4927010-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927010-0809-4-C/results/970088513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14493","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","13:40:00","MST","2022-08-09 20:40:00",NA,"0.561",561,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088515","UTAHDWQ_WQX-WRI220801-4927010-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927010-0809-4-C/results/970088515/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14571","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","14:00:00","MST","2022-09-13 21:00:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088526","UTAHDWQ_WQX-WRI220912-4927010-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927010-0913-4-C/results/970088526/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14576","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","14:00:00","MST","2022-09-13 21:00:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088529","UTAHDWQ_WQX-WRI220912-4927010-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R BL ROCKPORT RES","River/Stream",NA,"40.7921700000",40.79217,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-4927010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7921700000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927010-0913-4-C/results/970088529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14570","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:25:00","MST","2022-04-05 20:25:00",NA,"0.947",947,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088547","UTAHDWQ_WQX-WRI220404-4927245-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Crandall Canyon AB Rockport Reservoir at U-302 xing","River/Stream",NA,"40.7660400000",40.76604,"-111.3811600000",-111.38116,"OK","16020101","UTAHDWQ_WQX-4927245",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7660400000","-111.3811600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927245-0405-4-C/results/970088547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14497","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:25:00","MST","2022-04-05 20:25:00",NA,"0.364",364,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088552","UTAHDWQ_WQX-WRI220404-4927245-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Crandall Canyon AB Rockport Reservoir at U-302 xing","River/Stream",NA,"40.7660400000",40.76604,"-111.3811600000",-111.38116,"OK","16020101","UTAHDWQ_WQX-4927245",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7660400000","-111.3811600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927245-0405-4-C/results/970088552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14458","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","09:15:00","MST","2022-05-11 16:15:00",NA,"0.265",265,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088562","UTAHDWQ_WQX-WRI220509-4927245-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Crandall Canyon AB Rockport Reservoir at U-302 xing","River/Stream",NA,"40.7660400000",40.76604,"-111.3811600000",-111.38116,"OK","16020101","UTAHDWQ_WQX-4927245",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7660400000","-111.3811600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927245-0511-4-C/results/970088562/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14587","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","09:15:00","MST","2022-05-11 16:15:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088565","UTAHDWQ_WQX-WRI220509-4927245-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Crandall Canyon AB Rockport Reservoir at U-302 xing","River/Stream",NA,"40.7660400000",40.76604,"-111.3811600000",-111.38116,"OK","16020101","UTAHDWQ_WQX-4927245",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7660400000","-111.3811600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927245-0511-4-C/results/970088565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14500","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","12:00:00","MST","2022-06-30 19:00:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088576","UTAHDWQ_WQX-WRI220629-4927245-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Crandall Canyon AB Rockport Reservoir at U-302 xing","River/Stream",NA,"40.7660400000",40.76604,"-111.3811600000",-111.38116,"OK","16020101","UTAHDWQ_WQX-4927245",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7660400000","-111.3811600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4927245-0630-4-C/results/970088576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14501","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","12:00:00","MST","2022-06-30 19:00:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088585","UTAHDWQ_WQX-WRI220629-4927245-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Crandall Canyon AB Rockport Reservoir at U-302 xing","River/Stream",NA,"40.7660400000",40.76604,"-111.3811600000",-111.38116,"OK","16020101","UTAHDWQ_WQX-4927245",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7660400000","-111.3811600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4927245-0630-4-C/results/970088585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14502","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:10:00","MST","2022-04-05 20:10:00",NA,"0.422",422,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088601","UTAHDWQ_WQX-WRI220404-4927247-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927247-0405-4-C/results/970088601/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14503","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:10:00","MST","2022-04-05 20:10:00",NA,"0.463",463,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088617","UTAHDWQ_WQX-WRI220404-4927247-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927247-0405-4-C/results/970088617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14504","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","09:10:00","MST","2022-05-11 16:10:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088624","UTAHDWQ_WQX-WRI220509-4927247-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927247-0511-4-C/results/970088624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14384","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","09:10:00","MST","2022-05-11 16:10:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088625","UTAHDWQ_WQX-WRI220509-4927247-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927247-0511-4-C/results/970088625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14385","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","08:40:00","MST","2022-06-16 15:40:00",NA,"0.48",480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088641","UTAHDWQ_WQX-WRI220613-4927247-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927247-0616-4-C/results/970088641/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14386","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","08:40:00","MST","2022-06-16 15:40:00",NA,"0.541",541,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088644","UTAHDWQ_WQX-WRI220613-4927247-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927247-0616-4-C/results/970088644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14387","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","09:30:00","MST","2022-07-20 16:30:00",NA,"0.414",414,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088660","UTAHDWQ_WQX-WRI220711-4927247-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927247-0720-4-C/results/970088660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14388","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","09:30:00","MST","2022-07-20 16:30:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088661","UTAHDWQ_WQX-WRI220711-4927247-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927247-0720-4-C/results/970088661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14389","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","13:20:00","MST","2022-08-09 20:20:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088685","UTAHDWQ_WQX-WRI220801-4927247-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927247-0809-4-C/results/970088685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14390","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","13:20:00","MST","2022-08-09 20:20:00",NA,"0.373",373,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088688","UTAHDWQ_WQX-WRI220801-4927247-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927247-0809-4-C/results/970088688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14512","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","13:35:00","MST","2022-09-13 20:35:00",NA,"0.487",487,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088696","UTAHDWQ_WQX-WRI220912-4927247-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927247-0913-4-C/results/970088696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14392","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","13:35:00","MST","2022-09-13 20:35:00",NA,"0.565",565,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088699","UTAHDWQ_WQX-WRI220912-4927247-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES Replicate of 4927250","River/Stream","Replicate of 4927250","40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927247",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927247-0913-4-C/results/970088699/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14393","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","13:00:00","MST","2022-04-05 20:00:00",NA,"0.529",529,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088709","UTAHDWQ_WQX-WRI220404-4927250-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927250-0405-4-C/results/970088709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14515","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","13:00:00","MST","2022-04-05 20:00:00",NA,"0.586",586,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088725","UTAHDWQ_WQX-WRI220404-4927250-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927250-0405-4-C/results/970088725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14395","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","09:00:00","MST","2022-05-11 16:00:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088734","UTAHDWQ_WQX-WRI220509-4927250-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927250-0511-4-C/results/970088734/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14396","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","09:00:00","MST","2022-05-11 16:00:00",NA,"0.677",677,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088736","UTAHDWQ_WQX-WRI220509-4927250-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927250-0511-4-C/results/970088736/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14518","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","08:25:00","MST","2022-06-16 15:25:00",NA,"0.595",595,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088744","UTAHDWQ_WQX-WRI220613-4927250-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927250-0616-4-C/results/970088744/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14519","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","08:25:00","MST","2022-06-16 15:25:00",NA,"0.456",456,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088762","UTAHDWQ_WQX-WRI220613-4927250-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927250-0616-4-C/results/970088762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14520","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","09:15:00","MST","2022-07-20 16:15:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088766","UTAHDWQ_WQX-WRI220711-4927250-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927250-0720-4-C/results/970088766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14521","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","09:15:00","MST","2022-07-20 16:15:00",NA,"0.456",456,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088774","UTAHDWQ_WQX-WRI220711-4927250-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927250-0720-4-C/results/970088774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14522","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","13:15:00","MST","2022-08-09 20:15:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088790","UTAHDWQ_WQX-WRI220801-4927250-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927250-0809-4-C/results/970088790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14523","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","13:15:00","MST","2022-08-09 20:15:00",NA,"0.474",474,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088799","UTAHDWQ_WQX-WRI220801-4927250-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927250-0809-4-C/results/970088799/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14403","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","10:05:00","MST","2022-09-07 17:05:00",NA,"0.618",618,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088810","UTAHDWQ_WQX-LAKES220907-4927250-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4927250-0907-4-C/results/970088810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14404","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-07","10:05:00","MST","2022-09-07 17:05:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088819","UTAHDWQ_WQX-LAKES220907-4927250-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4927250-0907-4-C/results/970088819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14405","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","13:30:00","MST","2022-09-13 20:30:00",NA,"0.673",673,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088834","UTAHDWQ_WQX-WRI220912-4927250-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927250-0913-4-C/results/970088834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14406","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","13:30:00","MST","2022-09-13 20:30:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088837","UTAHDWQ_WQX-WRI220912-4927250-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB ROCKPORT RES","River/Stream",NA,"40.7529100000",40.75291,"-111.3737500000",-111.37375,"OK","16020101","UTAHDWQ_WQX-4927250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7529100000","-111.3737500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927250-0913-4-C/results/970088837/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14407","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","12:30:00","MST","2022-04-05 19:30:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088847","UTAHDWQ_WQX-WRI220404-4927500-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927500-0405-4-C/results/970088847/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14408","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","12:30:00","MST","2022-04-05 19:30:00",NA,"0.944",944,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088851","UTAHDWQ_WQX-WRI220404-4927500-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927500-0405-4-C/results/970088851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14409","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","15:15:00","MST","2022-05-10 22:15:00",NA,"0.764",764,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088874","UTAHDWQ_WQX-WRI220509-4927500-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927500-0510-4-C/results/970088874/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14410","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","15:15:00","MST","2022-05-10 22:15:00",NA,"0.815",815,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088875","UTAHDWQ_WQX-WRI220509-4927500-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927500-0510-4-C/results/970088875/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14411","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","14:40:00","MST","2022-06-14 21:40:00",NA,"0.876",876,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088879","UTAHDWQ_WQX-WRI220613-4927500-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927500-0614-4-C/results/970088879/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14412","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","14:40:00","MST","2022-06-14 21:40:00",NA,"0.699",699,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088892","UTAHDWQ_WQX-WRI220613-4927500-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927500-0614-4-C/results/970088892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14535","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","15:30:00","MST","2022-07-19 22:30:00",NA,"0.676",676,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088904","UTAHDWQ_WQX-WRI220711-4927500-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927500-0719-4-C/results/970088904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14414","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","15:30:00","MST","2022-07-19 22:30:00",NA,"0.611",611,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088905","UTAHDWQ_WQX-WRI220711-4927500-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927500-0719-4-C/results/970088905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14536","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","13:00:00","MST","2022-08-09 20:00:00",NA,"0.644",644,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088934","UTAHDWQ_WQX-WRI220801-4927500-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927500-0809-4-C/results/970088934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14498","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","13:00:00","MST","2022-08-09 20:00:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088938","UTAHDWQ_WQX-WRI220801-4927500-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927500-0809-4-C/results/970088938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14417","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","13:15:00","MST","2022-09-13 20:15:00",NA,"0.781",781,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088945","UTAHDWQ_WQX-WRI220912-4927500-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927500-0913-4-C/results/970088945/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14539","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","13:15:00","MST","2022-09-13 20:15:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088948","UTAHDWQ_WQX-WRI220912-4927500-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","FORT CK AB CNFL/ WEBER R","River/Stream",NA,"40.7247100000",40.72471,"-111.3415100000",-111.34151,"OK","16020101","UTAHDWQ_WQX-4927500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7247100000","-111.3415100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927500-0913-4-C/results/970088948/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14419","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","10:40:00","MST","2022-04-05 17:40:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088950","UTAHDWQ_WQX-WRI220404-4928005-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928005-0405-4-C/results/970088950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14420","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","10:40:00","MST","2022-04-05 17:40:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088974","UTAHDWQ_WQX-WRI220404-4928005-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928005-0405-4-C/results/970088974/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14421","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","11:20:00","MST","2022-05-10 18:20:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088982","UTAHDWQ_WQX-WRI220509-4928005-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928005-0510-4-C/results/970088982/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14543","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","11:20:00","MST","2022-05-10 18:20:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088987","UTAHDWQ_WQX-WRI220509-4928005-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928005-0510-4-C/results/970088987/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14572","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","11:20:00","MST","2022-06-14 18:20:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970088999","UTAHDWQ_WQX-WRI220613-4928005-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928005-0614-4-C/results/970088999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14573","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","11:20:00","MST","2022-06-14 18:20:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089002","UTAHDWQ_WQX-WRI220613-4928005-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928005-0614-4-C/results/970089002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14506","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","12:10:00","MST","2022-07-19 19:10:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089020","UTAHDWQ_WQX-WRI220711-4928005-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928005-0719-4-C/results/970089020/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14580","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","12:10:00","MST","2022-07-19 19:10:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089022","UTAHDWQ_WQX-WRI220711-4928005-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928005-0719-4-C/results/970089022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14589","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","10:00:00","MST","2022-08-09 17:00:00",NA,"0.406",406,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089027","UTAHDWQ_WQX-WRI220801-4928005-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928005-0809-4-C/results/970089027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14427","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","10:00:00","MST","2022-08-09 17:00:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089036","UTAHDWQ_WQX-WRI220801-4928005-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928005-0809-4-C/results/970089036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14428","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","10:35:00","MST","2022-09-13 17:35:00",NA,"0.968",968,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089055","UTAHDWQ_WQX-WRI220912-4928005-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928005-0913-4-C/results/970089055/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14429","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","10:35:00","MST","2022-09-13 17:35:00",NA,"0.174",174,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089056","UTAHDWQ_WQX-WRI220912-4928005-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River AB Oakley City WWTP AB Millrace Rd","River/Stream",NA,"40.7094600000",40.70946,"-111.2999300000",-111.29993,"OK","16020101","UTAHDWQ_WQX-4928005",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7094600000","-111.2999300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928005-0913-4-C/results/970089056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11878","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","10:50:00","MST","2022-04-05 17:50:00",NA,"15.1",15100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089064","UTAHDWQ_WQX-WRI220404-4928010-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928010-0405-4-C/results/970089064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14431","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","10:50:00","MST","2022-04-05 17:50:00",NA,"15.1",15100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089083","UTAHDWQ_WQX-WRI220404-4928010-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928010-0405-4-C/results/970089083/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11880","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","11:10:00","MST","2022-05-10 18:10:00",NA,"14.6",14600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089097","UTAHDWQ_WQX-WRI220509-4928010-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928010-0510-4-C/results/970089097/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11881","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","11:10:00","MST","2022-05-10 18:10:00",NA,"14.8",14800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089100","UTAHDWQ_WQX-WRI220509-4928010-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928010-0510-4-C/results/970089100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14434","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","11:30:00","MST","2022-06-14 18:30:00",NA,"12.4",12400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089108","UTAHDWQ_WQX-WRI220613-4928010-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928010-0614-4-C/results/970089108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11883","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","11:30:00","MST","2022-06-14 18:30:00",NA,"12.3",12300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089115","UTAHDWQ_WQX-WRI220613-4928010-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928010-0614-4-C/results/970089115/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11884","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:55:00","MST","2022-07-19 18:55:00",NA,"11",11000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089133","UTAHDWQ_WQX-WRI220711-4928010-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928010-0719-4-C/results/970089133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11885","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","11:55:00","MST","2022-07-19 18:55:00",NA,"11",11000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089136","UTAHDWQ_WQX-WRI220711-4928010-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928010-0719-4-C/results/970089136/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11886","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","10:15:00","MST","2022-08-09 17:15:00",NA,"5.6",5600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089150","UTAHDWQ_WQX-WRI220801-4928010-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928010-0809-4-C/results/970089150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11887","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","10:15:00","MST","2022-08-09 17:15:00",NA,"5.97",5970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089161","UTAHDWQ_WQX-WRI220801-4928010-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928010-0809-4-C/results/970089161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11888","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","10:45:00","MST","2022-09-13 17:45:00",NA,"8.84",8840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089170","UTAHDWQ_WQX-WRI220912-4928010-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928010-0913-4-C/results/970089170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11889","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","10:45:00","MST","2022-09-13 17:45:00",NA,"8.54",8540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089174","UTAHDWQ_WQX-WRI220912-4928010-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Oakley WWTP 002 New Plant","Facility Other",NA,"40.7096400000",40.70964,"-111.3003700000",-111.30037,"OK","16020101","UTAHDWQ_WQX-4928010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7096400000","-111.3003700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928010-0913-4-C/results/970089174/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11890","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","10:30:00","MST","2022-04-05 17:30:00",NA,"0.969",969,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089182","UTAHDWQ_WQX-WRI220404-4928300-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928300-0405-4-C/results/970089182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11891","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","10:30:00","MST","2022-04-05 17:30:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089195","UTAHDWQ_WQX-WRI220404-4928300-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928300-0405-4-C/results/970089195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11892","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","11:15:00","MST","2022-06-14 18:15:00",NA,"0.875",875,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089215","UTAHDWQ_WQX-WRI220613-4928300-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Drinking Water Systems;Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928300-0614-4-C/results/970089215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11893","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","11:15:00","MST","2022-06-14 18:15:00",NA,"0.851",851,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089219","UTAHDWQ_WQX-WRI220613-4928300-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Drinking Water Systems;Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928300-0614-4-C/results/970089219/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11894","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:40:00","MST","2022-07-19 18:40:00",NA,"0.86",860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089234","UTAHDWQ_WQX-WRI220711-4928300-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928300-0719-4-C/results/970089234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11895","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","11:40:00","MST","2022-07-19 18:40:00",NA,"0.808",808,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089236","UTAHDWQ_WQX-WRI220711-4928300-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928300-0719-4-C/results/970089236/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11896","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","09:50:00","MST","2022-08-09 16:50:00",NA,"0.917",917,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089254","UTAHDWQ_WQX-WRI220801-4928300-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928300-0809-4-C/results/970089254/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11897","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","09:50:00","MST","2022-08-09 16:50:00",NA,"0.863",863,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089260","UTAHDWQ_WQX-WRI220801-4928300-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928300-0809-4-C/results/970089260/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11898","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","10:20:00","MST","2022-09-13 17:20:00",NA,"0.992",992,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089270","UTAHDWQ_WQX-WRI220912-4928300-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928300-0913-4-C/results/970089270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11899","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","10:20:00","MST","2022-09-13 17:20:00",NA,"0.804",804,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089272","UTAHDWQ_WQX-WRI220912-4928300-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AB CROOKED CK","River/Stream",NA,"40.6805500000",40.68055,"-111.3190800000",-111.31908,"OK","16020101","UTAHDWQ_WQX-4928300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6805500000","-111.3190800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928300-0913-4-C/results/970089272/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11900","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","10:45:00","MST","2022-05-10 17:45:00",NA,"3.07",3070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089279","UTAHDWQ_WQX-WRI220509-4928500-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","KAMAS LAGOONS","Facility Other",NA,"40.6538700000",40.65387,"-111.2915600000",-111.29156,"OK","16020101","UTAHDWQ_WQX-4928500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6538700000","-111.2915600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928500-0510-4-C/results/970089279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11901","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","10:45:00","MST","2022-05-10 17:45:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089287","UTAHDWQ_WQX-WRI220509-4928500-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","KAMAS LAGOONS","Facility Other",NA,"40.6538700000",40.65387,"-111.2915600000",-111.29156,"OK","16020101","UTAHDWQ_WQX-4928500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6538700000","-111.2915600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928500-0510-4-C/results/970089287/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11902","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","10:45:00","MST","2022-06-14 17:45:00",NA,"5.95",5950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089295","UTAHDWQ_WQX-WRI220613-4928500-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","KAMAS LAGOONS","Facility Other",NA,"40.6538700000",40.65387,"-111.2915600000",-111.29156,"OK","16020101","UTAHDWQ_WQX-4928500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6538700000","-111.2915600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928500-0614-4-C/results/970089295/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11903","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","10:45:00","MST","2022-06-14 17:45:00",NA,"5.97",5970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089313","UTAHDWQ_WQX-WRI220613-4928500-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","KAMAS LAGOONS","Facility Other",NA,"40.6538700000",40.65387,"-111.2915600000",-111.29156,"OK","16020101","UTAHDWQ_WQX-4928500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6538700000","-111.2915600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928500-0614-4-C/results/970089313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11904","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","10:00:00","MST","2022-09-13 17:00:00",NA,"2.11",2110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089319","UTAHDWQ_WQX-WRI220912-4928500-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","KAMAS LAGOONS","Facility Other",NA,"40.6538700000",40.65387,"-111.2915600000",-111.29156,"OK","16020101","UTAHDWQ_WQX-4928500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6538700000","-111.2915600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928500-0913-4-C/results/970089319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14457","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","10:00:00","MST","2022-09-13 17:00:00",NA,"2.78",2780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089323","UTAHDWQ_WQX-WRI220912-4928500-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","KAMAS LAGOONS","Facility Other",NA,"40.6538700000",40.65387,"-111.2915600000",-111.29156,"OK","16020101","UTAHDWQ_WQX-4928500",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6538700000","-111.2915600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928500-0913-4-C/results/970089323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11906","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","09:00:00","MST","2022-04-05 16:00:00",NA,"0.68",680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089347","UTAHDWQ_WQX-WRI220404-4928530-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928530-0405-4-C/results/970089347/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11907","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","09:00:00","MST","2022-04-05 16:00:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089349","UTAHDWQ_WQX-WRI220404-4928530-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928530-0405-4-C/results/970089349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14339","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","08:50:00","MST","2022-05-10 15:50:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089356","UTAHDWQ_WQX-WRI220509-4928530-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928530-0510-4-C/results/970089356/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11909","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","08:50:00","MST","2022-05-10 15:50:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089360","UTAHDWQ_WQX-WRI220509-4928530-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928530-0510-4-C/results/970089360/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11910","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","09:20:00","MST","2022-06-14 16:20:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089368","UTAHDWQ_WQX-WRI220613-4928530-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928530-0614-4-C/results/970089368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11911","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","09:20:00","MST","2022-06-14 16:20:00",NA,"0.675",675,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089378","UTAHDWQ_WQX-WRI220613-4928530-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928530-0614-4-C/results/970089378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11912","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","09:40:00","MST","2022-07-19 16:40:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089391","UTAHDWQ_WQX-WRI220711-4928530-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928530-0719-4-C/results/970089391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11913","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","09:40:00","MST","2022-07-19 16:40:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089397","UTAHDWQ_WQX-WRI220711-4928530-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928530-0719-4-C/results/970089397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11914","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","08:40:00","MST","2022-08-09 15:40:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089416","UTAHDWQ_WQX-WRI220801-4928530-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928530-0809-4-C/results/970089416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11915","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","08:40:00","MST","2022-08-09 15:40:00",NA,"0.77",770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089421","UTAHDWQ_WQX-WRI220801-4928530-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928530-0809-4-C/results/970089421/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11916","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","08:50:00","MST","2022-09-13 15:50:00",NA,"0.784",784,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089431","UTAHDWQ_WQX-WRI220912-4928530-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928530-0913-4-C/results/970089431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11917","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","08:50:00","MST","2022-09-13 15:50:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089435","UTAHDWQ_WQX-WRI220912-4928530-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CREEK ABOVE WEBER-PROVO CANAL","River/Stream",NA,"40.6448800000",40.64488,"-111.2840500000",-111.28405,"OK","16020101","UTAHDWQ_WQX-4928530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6448800000","-111.2840500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928530-0913-4-C/results/970089435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11918","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","09:15:00","MST","2022-04-05 16:15:00",NA,"0.645",645,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089438","UTAHDWQ_WQX-WRI220404-4928540-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928540-0405-4-C/results/970089438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11919","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","09:15:00","MST","2022-04-05 16:15:00",NA,"0.693",693,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089454","UTAHDWQ_WQX-WRI220404-4928540-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928540-0405-4-C/results/970089454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11920","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","09:20:00","MST","2022-05-10 16:20:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089465","UTAHDWQ_WQX-WRI220509-4928540-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928540-0510-4-C/results/970089465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11921","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","09:20:00","MST","2022-05-10 16:20:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089472","UTAHDWQ_WQX-WRI220509-4928540-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928540-0510-4-C/results/970089472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11922","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","09:40:00","MST","2022-06-14 16:40:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089477","UTAHDWQ_WQX-WRI220613-4928540-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928540-0614-4-C/results/970089477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11923","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","09:40:00","MST","2022-06-14 16:40:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089495","UTAHDWQ_WQX-WRI220613-4928540-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928540-0614-4-C/results/970089495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11924","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:00:00","MST","2022-07-19 17:00:00",NA,"0.457",457,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089500","UTAHDWQ_WQX-WRI220711-4928540-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928540-0719-4-C/results/970089500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11925","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:00:00","MST","2022-07-19 17:00:00",NA,"0.429",429,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089505","UTAHDWQ_WQX-WRI220711-4928540-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928540-0719-4-C/results/970089505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11926","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","09:00:00","MST","2022-08-09 16:00:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089518","UTAHDWQ_WQX-WRI220801-4928540-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928540-0809-4-C/results/970089518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11927","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","09:00:00","MST","2022-08-09 16:00:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089527","UTAHDWQ_WQX-WRI220801-4928540-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928540-0809-4-C/results/970089527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11928","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","09:10:00","MST","2022-09-13 16:10:00",NA,"0.887",887,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089539","UTAHDWQ_WQX-WRI220912-4928540-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928540-0913-4-C/results/970089539/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11929","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","09:10:00","MST","2022-09-13 16:10:00",NA,"0.747",747,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089541","UTAHDWQ_WQX-WRI220912-4928540-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19","River/Stream",NA,"40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928540-0913-4-C/results/970089541/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11930","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","09:20:00","MST","2022-04-05 16:20:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089546","UTAHDWQ_WQX-WRI220404-4928541-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928541-0405-4-C/results/970089546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11931","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","09:20:00","MST","2022-04-05 16:20:00",NA,"0.446",446,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089548","UTAHDWQ_WQX-WRI220404-4928541-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928541-0405-4-C/results/970089548/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11932","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","09:30:00","MST","2022-05-10 16:30:00",NA,"0.386",386,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089580","UTAHDWQ_WQX-WRI220509-4928541-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928541-0510-4-C/results/970089580/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11933","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","09:30:00","MST","2022-05-10 16:30:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089581","UTAHDWQ_WQX-WRI220509-4928541-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928541-0510-4-C/results/970089581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11934","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","09:45:00","MST","2022-06-14 16:45:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089583","UTAHDWQ_WQX-WRI220613-4928541-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928541-0614-4-C/results/970089583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11935","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","09:45:00","MST","2022-06-14 16:45:00",NA,"0.476",476,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089584","UTAHDWQ_WQX-WRI220613-4928541-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928541-0614-4-C/results/970089584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11936","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:10:00","MST","2022-07-19 17:10:00",NA,"0.513",513,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089608","UTAHDWQ_WQX-WRI220711-4928541-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928541-0719-4-C/results/970089608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11937","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:10:00","MST","2022-07-19 17:10:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089616","UTAHDWQ_WQX-WRI220711-4928541-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928541-0719-4-C/results/970089616/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11938","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","09:10:00","MST","2022-08-09 16:10:00",NA,"0.779",779,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089618","UTAHDWQ_WQX-WRI220801-4928541-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928541-0809-4-C/results/970089618/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14127","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","09:10:00","MST","2022-08-09 16:10:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089642","UTAHDWQ_WQX-WRI220801-4928541-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928541-0809-4-C/results/970089642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11940","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","09:15:00","MST","2022-09-13 16:15:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089644","UTAHDWQ_WQX-WRI220912-4928541-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928541-0913-4-C/results/970089644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11941","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","09:15:00","MST","2022-09-13 16:15:00",NA,"0.531",531,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089647","UTAHDWQ_WQX-WRI220912-4928541-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540","River/Stream","Replicate of 4928540","40.6382900000",40.63829,"-111.2624100000",-111.26241,"OK","16020101","UTAHDWQ_WQX-4928541",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6382900000","-111.2624100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928541-0913-4-C/results/970089647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11942","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","09:35:00","MST","2022-04-05 16:35:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089656","UTAHDWQ_WQX-WRI220404-4929010-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929010-0405-4-C/results/970089656/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11943","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","09:35:00","MST","2022-04-05 16:35:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089672","UTAHDWQ_WQX-WRI220404-4929010-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929010-0405-4-C/results/970089672/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11944","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","09:50:00","MST","2022-05-10 16:50:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089684","UTAHDWQ_WQX-WRI220509-4929010-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929010-0510-4-C/results/970089684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11945","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","09:50:00","MST","2022-05-10 16:50:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089688","UTAHDWQ_WQX-WRI220509-4929010-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929010-0510-4-C/results/970089688/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11946","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","10:00:00","MST","2022-06-14 17:00:00",NA,"0.798",798,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089691","UTAHDWQ_WQX-WRI220613-4929010-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929010-0614-4-C/results/970089691/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11947","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","10:00:00","MST","2022-06-14 17:00:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089696","UTAHDWQ_WQX-WRI220613-4929010-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929010-0614-4-C/results/970089696/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11948","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:30:00","MST","2022-07-19 17:30:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089717","UTAHDWQ_WQX-WRI220711-4929010-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929010-0719-4-C/results/970089717/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11949","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:30:00","MST","2022-07-19 17:30:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089727","UTAHDWQ_WQX-WRI220711-4929010-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929010-0719-4-C/results/970089727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11950","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","09:15:00","MST","2022-08-09 16:15:00",NA,"0.289",289,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089733","UTAHDWQ_WQX-WRI220801-4929010-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929010-0809-4-C/results/970089733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11951","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","09:15:00","MST","2022-08-09 16:15:00",NA,"0.685",685,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089745","UTAHDWQ_WQX-WRI220801-4929010-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929010-0809-4-C/results/970089745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11952","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","09:30:00","MST","2022-09-13 16:30:00",NA,"0.258",258,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089759","UTAHDWQ_WQX-WRI220912-4929010-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929010-0913-4-C/results/970089759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11953","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","09:30:00","MST","2022-09-13 16:30:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089763","UTAHDWQ_WQX-WRI220912-4929010-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT BEAVER CK RD XING","River/Stream",NA,"40.6163700000",40.61637,"-111.2115300000",-111.21153,"OK","16020101","UTAHDWQ_WQX-4929010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6163700000","-111.2115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929010-0913-4-C/results/970089763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11954","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","09:50:00","MST","2022-04-05 16:50:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089769","UTAHDWQ_WQX-WRI220404-4929100-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929100-0405-4-C/results/970089769/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11955","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","09:50:00","MST","2022-04-05 16:50:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089770","UTAHDWQ_WQX-WRI220404-4929100-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929100-0405-4-C/results/970089770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11956","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","10:10:00","MST","2022-05-10 17:10:00",NA,"0.344",344,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089792","UTAHDWQ_WQX-WRI220509-4929100-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929100-0510-4-C/results/970089792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11957","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","10:10:00","MST","2022-05-10 17:10:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089794","UTAHDWQ_WQX-WRI220509-4929100-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929100-0510-4-C/results/970089794/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11958","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","10:15:00","MST","2022-06-14 17:15:00",NA,"0.743",743,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089817","UTAHDWQ_WQX-WRI220613-4929100-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929100-0614-4-C/results/970089817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11959","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","10:15:00","MST","2022-06-14 17:15:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089822","UTAHDWQ_WQX-WRI220613-4929100-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929100-0614-4-C/results/970089822/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11960","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","14:30:00","MST","2022-06-30 21:30:00",NA,"0.77",770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089834","UTAHDWQ_WQX-WRI220629-4929100-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929100-0630-4-C/results/970089834/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11961","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","14:30:00","MST","2022-06-30 21:30:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089835","UTAHDWQ_WQX-WRI220629-4929100-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929100-0630-4-C/results/970089835/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11962","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","11:00:00","MST","2022-07-19 18:00:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089858","UTAHDWQ_WQX-WRI220711-4929100-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929100-0719-4-C/results/970089858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11963","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:00:00","MST","2022-07-19 18:00:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089860","UTAHDWQ_WQX-WRI220711-4929100-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929100-0719-4-C/results/970089860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11964","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","09:25:00","MST","2022-08-09 16:25:00",NA,"0.465",465,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089867","UTAHDWQ_WQX-WRI220801-4929100-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929100-0809-4-C/results/970089867/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11965","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","09:25:00","MST","2022-08-09 16:25:00",NA,"0.511",511,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089876","UTAHDWQ_WQX-WRI220801-4929100-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929100-0809-4-C/results/970089876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11966","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","09:45:00","MST","2022-09-13 16:45:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089890","UTAHDWQ_WQX-WRI220912-4929100-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929100-0913-4-C/results/970089890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11967","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","09:45:00","MST","2022-09-13 16:45:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089895","UTAHDWQ_WQX-WRI220912-4929100-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","BEAVER CK AT USFS BOUNDARY 10","River/Stream",NA,"40.6307300000",40.63073,"-111.1868300000",-111.18683,"OK","16020101","UTAHDWQ_WQX-4929100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6307300000","-111.1868300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929100-0913-4-C/results/970089895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11968","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","11:50:00","MST","2022-05-10 18:50:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089919","UTAHDWQ_WQX-WRI220509-4929200-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929200-0510-4-C/results/970089919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11969","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","11:50:00","MST","2022-05-10 18:50:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089920","UTAHDWQ_WQX-WRI220509-4929200-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929200-0510-4-C/results/970089920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11970","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","12:00:00","MST","2022-06-14 19:00:00",NA,"0.315",315,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089941","UTAHDWQ_WQX-WRI220613-4929200-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929200-0614-4-C/results/970089941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11971","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","12:00:00","MST","2022-06-14 19:00:00",NA,"0.437",437,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089950","UTAHDWQ_WQX-WRI220613-4929200-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929200-0614-4-C/results/970089950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11972","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","12:20:00","MST","2022-07-19 19:20:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089960","UTAHDWQ_WQX-WRI220711-4929200-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929200-0719-4-C/results/970089960/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11973","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","12:20:00","MST","2022-07-19 19:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089962","UTAHDWQ_WQX-WRI220711-4929200-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:26:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929200-0719-4-C/results/970089962/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11974","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","10:45:00","MST","2022-08-09 17:45:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089968","UTAHDWQ_WQX-WRI220801-4929200-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929200-0809-4-C/results/970089968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11975","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","10:45:00","MST","2022-08-09 17:45:00",NA,"0.279",279,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089976","UTAHDWQ_WQX-WRI220801-4929200-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929200-0809-4-C/results/970089976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11976","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","10:50:00","MST","2022-09-13 17:50:00",NA,"0.967",967,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089990","UTAHDWQ_WQX-WRI220912-4929200-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929200-0913-4-C/results/970089990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11977","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","10:50:00","MST","2022-09-13 17:50:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970089994","UTAHDWQ_WQX-WRI220912-4929200-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION","River/Stream",NA,"40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929200-0913-4-C/results/970089994/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11978","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","12:00:00","MST","2022-05-10 19:00:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090026","UTAHDWQ_WQX-WRI220509-4929201-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929201-0510-4-C/results/970090026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11979","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","12:00:00","MST","2022-05-10 19:00:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090027","UTAHDWQ_WQX-WRI220509-4929201-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929201-0510-4-C/results/970090027/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11980","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","12:10:00","MST","2022-06-14 19:10:00",NA,"0.477",477,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090035","UTAHDWQ_WQX-WRI220613-4929201-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929201-0614-4-C/results/970090035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11981","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","12:10:00","MST","2022-06-14 19:10:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090046","UTAHDWQ_WQX-WRI220613-4929201-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929201-0614-4-C/results/970090046/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11982","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","12:30:00","MST","2022-07-19 19:30:00",NA,"0.172",172,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090060","UTAHDWQ_WQX-WRI220711-4929201-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929201-0719-4-C/results/970090060/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11983","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","12:30:00","MST","2022-07-19 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090063","UTAHDWQ_WQX-WRI220711-4929201-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929201-0719-4-C/results/970090063/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11984","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","10:50:00","MST","2022-08-09 17:50:00",NA,"0.188",188,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090068","UTAHDWQ_WQX-WRI220801-4929201-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929201-0809-4-C/results/970090068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11985","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","10:50:00","MST","2022-08-09 17:50:00",NA,"0.306",306,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090073","UTAHDWQ_WQX-WRI220801-4929201-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929201-0809-4-C/results/970090073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11986","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","11:00:00","MST","2022-09-13 18:00:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090092","UTAHDWQ_WQX-WRI220912-4929201-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929201-0913-4-C/results/970090092/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11987","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","11:00:00","MST","2022-09-13 18:00:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090099","UTAHDWQ_WQX-WRI220912-4929201-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200","River/Stream","Replicate of 4929200","40.7307800000",40.73078,"-111.2549100000",-111.25491,"OK","16020101","UTAHDWQ_WQX-4929201",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7307800000","-111.2549100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929201-0913-4-C/results/970090099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11988","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","13:50:00","MST","2022-05-10 20:50:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090104","UTAHDWQ_WQX-WRI220509-4929394-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing","River/Stream",NA,"40.7908800000",40.79088,"-110.9938500000",-110.99385,"OK","16020101","UTAHDWQ_WQX-4929394",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7908800000","-110.9938500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929394-0510-4-C/results/970090104/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11989","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","13:50:00","MST","2022-05-10 20:50:00",NA,"0.188",188,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090106","UTAHDWQ_WQX-WRI220509-4929394-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing","River/Stream",NA,"40.7908800000",40.79088,"-110.9938500000",-110.99385,"OK","16020101","UTAHDWQ_WQX-4929394",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7908800000","-110.9938500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929394-0510-4-C/results/970090106/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11990","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","13:30:00","MST","2022-06-14 20:30:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090121","UTAHDWQ_WQX-WRI220613-4929394-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing","River/Stream",NA,"40.7908800000",40.79088,"-110.9938500000",-110.99385,"OK","16020101","UTAHDWQ_WQX-4929394",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7908800000","-110.9938500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929394-0614-4-C/results/970090121/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11991","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","13:30:00","MST","2022-06-14 20:30:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090123","UTAHDWQ_WQX-WRI220613-4929394-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing","River/Stream",NA,"40.7908800000",40.79088,"-110.9938500000",-110.99385,"OK","16020101","UTAHDWQ_WQX-4929394",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7908800000","-110.9938500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929394-0614-4-C/results/970090123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11992","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","13:15:00","MST","2022-06-30 20:15:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090153","UTAHDWQ_WQX-WRI220629-4929394-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing","River/Stream",NA,"40.7908800000",40.79088,"-110.9938500000",-110.99385,"OK","16020101","UTAHDWQ_WQX-4929394",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7908800000","-110.9938500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929394-0630-4-C/results/970090153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11993","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","13:15:00","MST","2022-06-30 20:15:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090158","UTAHDWQ_WQX-WRI220629-4929394-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing","River/Stream",NA,"40.7908800000",40.79088,"-110.9938500000",-110.99385,"OK","16020101","UTAHDWQ_WQX-4929394",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7908800000","-110.9938500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929394-0630-4-C/results/970090158/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14181","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-23","16:20:00","MST","2022-08-23 23:20:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090175","UTAHDWQ_WQX-WRI220829-4929394-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing","River/Stream",NA,"40.7908800000",40.79088,"-110.9938500000",-110.99385,"OK","16020101","UTAHDWQ_WQX-4929394",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7908800000","-110.9938500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929394-0823-4-C/results/970090175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11995","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","16:20:00","MST","2022-08-23 23:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090186","UTAHDWQ_WQX-WRI220829-4929394-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing","River/Stream",NA,"40.7908800000",40.79088,"-110.9938500000",-110.99385,"OK","16020101","UTAHDWQ_WQX-4929394",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7908800000","-110.9938500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929394-0823-4-C/results/970090186/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11996","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","14:05:00","MST","2022-05-10 21:05:00",NA,"0.29",290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090197","UTAHDWQ_WQX-WRI220509-4929397-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929397-0510-4-C/results/970090197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14509","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","14:05:00","MST","2022-05-10 21:05:00",NA,"0.345",345,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090199","UTAHDWQ_WQX-WRI220509-4929397-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929397-0510-4-C/results/970090199/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11998","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","13:40:00","MST","2022-06-14 20:40:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090214","UTAHDWQ_WQX-WRI220613-4929397-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929397-0614-4-C/results/970090214/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11999","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","13:40:00","MST","2022-06-14 20:40:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090222","UTAHDWQ_WQX-WRI220613-4929397-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929397-0614-4-C/results/970090222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12000","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","13:00:00","MST","2022-06-30 20:00:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090245","UTAHDWQ_WQX-WRI220629-4929397-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929397-0630-4-C/results/970090245/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12001","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","13:00:00","MST","2022-06-30 20:00:00",NA,"0.165",165,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090246","UTAHDWQ_WQX-WRI220629-4929397-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929397-0630-4-C/results/970090246/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12002","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","14:35:00","MST","2022-07-19 21:35:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090268","UTAHDWQ_WQX-WRI220711-4929397-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929397-0719-4-C/results/970090268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12003","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","14:35:00","MST","2022-07-19 21:35:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090277","UTAHDWQ_WQX-WRI220711-4929397-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929397-0719-4-C/results/970090277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14517","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","12:15:00","MST","2022-08-09 19:15:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090286","UTAHDWQ_WQX-WRI220801-4929397-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929397-0809-4-C/results/970090286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12005","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","12:15:00","MST","2022-08-09 19:15:00",NA,"0.354",354,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090289","UTAHDWQ_WQX-WRI220801-4929397-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929397-0809-4-C/results/970090289/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12006","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","16:00:00","MST","2022-08-23 23:00:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090309","UTAHDWQ_WQX-WRI220829-4929397-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929397-0823-4-C/results/970090309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14547","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-23","16:00:00","MST","2022-08-23 23:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090312","UTAHDWQ_WQX-WRI220829-4929397-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929397-0823-4-C/results/970090312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12008","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","12:25:00","MST","2022-09-13 19:25:00",NA,"0.326",326,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090334","UTAHDWQ_WQX-WRI220912-4929397-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929397-0913-4-C/results/970090334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12009","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","12:25:00","MST","2022-09-13 19:25:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090336","UTAHDWQ_WQX-WRI220912-4929397-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929397-0913-4-C/results/970090336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14563","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","10:10:00","MST","2022-09-29 17:10:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090358","UTAHDWQ_WQX-WRI220926-4929397-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4929397-0929-4-C/results/970090358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12011","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-29","10:10:00","MST","2022-09-29 17:10:00",NA,"0.163",163,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090372","UTAHDWQ_WQX-WRI220926-4929397-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7830000000",40.783,"-110.9911400000",-110.99114,"OK","16020101","UTAHDWQ_WQX-4929397",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7830000000","-110.9911400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4929397-0929-4-C/results/970090372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12012","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","14:20:00","MST","2022-05-10 21:20:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090385","UTAHDWQ_WQX-WRI220509-4929403-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929403-0510-4-C/results/970090385/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12013","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","14:20:00","MST","2022-05-10 21:20:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090386","UTAHDWQ_WQX-WRI220509-4929403-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929403-0510-4-C/results/970090386/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12014","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","14:00:00","MST","2022-06-14 21:00:00",NA,"0.469",469,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090414","UTAHDWQ_WQX-WRI220613-4929403-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Drinking Water Systems",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929403-0614-4-C/results/970090414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12015","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","14:00:00","MST","2022-06-14 21:00:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090415","UTAHDWQ_WQX-WRI220613-4929403-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Drinking Water Systems",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929403-0614-4-C/results/970090415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12016","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","12:40:00","MST","2022-06-30 19:40:00",NA,"0.204",204,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090423","UTAHDWQ_WQX-WRI220629-4929403-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929403-0630-4-C/results/970090423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12017","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","12:40:00","MST","2022-06-30 19:40:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090431","UTAHDWQ_WQX-WRI220629-4929403-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929403-0630-4-C/results/970090431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12018","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","14:50:00","MST","2022-07-19 21:50:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090454","UTAHDWQ_WQX-WRI220711-4929403-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929403-0719-4-C/results/970090454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12019","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","14:50:00","MST","2022-07-19 21:50:00",NA,"0.179",179,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090461","UTAHDWQ_WQX-WRI220711-4929403-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929403-0719-4-C/results/970090461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12020","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","12:30:00","MST","2022-08-09 19:30:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090493","UTAHDWQ_WQX-WRI220801-4929403-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929403-0809-4-C/results/970090493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14534","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","12:30:00","MST","2022-08-09 19:30:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090494","UTAHDWQ_WQX-WRI220801-4929403-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929403-0809-4-C/results/970090494/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12022","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-23","15:30:00","MST","2022-08-23 22:30:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090506","UTAHDWQ_WQX-WRI220829-4929403-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929403-0823-4-C/results/970090506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12023","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","15:30:00","MST","2022-08-23 22:30:00",NA,"0.403",403,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090511","UTAHDWQ_WQX-WRI220829-4929403-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929403-0823-4-C/results/970090511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12024","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","12:40:00","MST","2022-09-13 19:40:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090535","UTAHDWQ_WQX-WRI220912-4929403-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929403-0913-4-C/results/970090535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12025","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","12:40:00","MST","2022-09-13 19:40:00",NA,"0.17",170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090542","UTAHDWQ_WQX-WRI220912-4929403-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929403-0913-4-C/results/970090542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12026","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-29","10:20:00","MST","2022-09-29 17:20:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090566","UTAHDWQ_WQX-WRI220926-4929403-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4929403-0929-4-C/results/970090566/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12027","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-29","10:20:00","MST","2022-09-29 17:20:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090575","UTAHDWQ_WQX-WRI220926-4929403-0929-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing","River/Stream",NA,"40.7763400000",40.77634,"-110.9939600000",-110.99396,"OK","16020101","UTAHDWQ_WQX-4929403",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7763400000","-110.9939600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4929403-0929-4-C/results/970090575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12028","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","11:30:00","MST","2022-04-05 18:30:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090578","UTAHDWQ_WQX-WRI220404-4929490-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929490-0405-4-C/results/970090578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12029","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","11:30:00","MST","2022-04-05 18:30:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090600","UTAHDWQ_WQX-WRI220404-4929490-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929490-0405-4-C/results/970090600/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12030","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","12:30:00","MST","2022-05-10 19:30:00",NA,"0.268",268,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090608","UTAHDWQ_WQX-WRI220509-4929490-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929490-0510-4-C/results/970090608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12031","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","12:30:00","MST","2022-05-10 19:30:00",NA,"0.307",307,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090610","UTAHDWQ_WQX-WRI220509-4929490-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929490-0510-4-C/results/970090610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12032","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","12:20:00","MST","2022-06-14 19:20:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090634","UTAHDWQ_WQX-WRI220613-4929490-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929490-0614-4-C/results/970090634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12033","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","12:20:00","MST","2022-06-14 19:20:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090637","UTAHDWQ_WQX-WRI220613-4929490-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929490-0614-4-C/results/970090637/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12034","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","13:50:00","MST","2022-06-30 20:50:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090647","UTAHDWQ_WQX-WRI220629-4929490-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929490-0630-4-C/results/970090647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12035","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","13:50:00","MST","2022-06-30 20:50:00",NA,"0.27",270,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090658","UTAHDWQ_WQX-WRI220629-4929490-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929490-0630-4-C/results/970090658/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12036","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","13:00:00","MST","2022-07-19 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090670","UTAHDWQ_WQX-WRI220711-4929490-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929490-0719-4-C/results/970090670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12037","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","13:00:00","MST","2022-07-19 20:00:00",NA,"0.229",229,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090672","UTAHDWQ_WQX-WRI220711-4929490-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929490-0719-4-C/results/970090672/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12038","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","11:20:00","MST","2022-08-09 18:20:00",NA,"0.68",680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090679","UTAHDWQ_WQX-WRI220801-4929490-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929490-0809-4-C/results/970090679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12039","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","11:20:00","MST","2022-08-09 18:20:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090697","UTAHDWQ_WQX-WRI220801-4929490-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929490-0809-4-C/results/970090697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12040","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","11:30:00","MST","2022-09-13 18:30:00",NA,"0.597",597,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090701","UTAHDWQ_WQX-WRI220912-4929490-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929490-0913-4-C/results/970090701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12041","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","11:30:00","MST","2022-09-13 18:30:00",NA,"0.183",183,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090707","UTAHDWQ_WQX-WRI220912-4929490-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH MOREHOUSE CK AB CNFL/ WEBER R","River/Stream",NA,"40.7849500000",40.78495,"-111.1554600000",-111.15546,"OK","16020101","UTAHDWQ_WQX-4929490",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7849500000","-111.1554600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929490-0913-4-C/results/970090707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12042","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-05","12:00:00","MST","2022-04-05 19:00:00",NA,"0.276",276,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090731","UTAHDWQ_WQX-WRI220404-4929590-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929590-0405-4-C/results/970090731/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12043","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-05","12:00:00","MST","2022-04-05 19:00:00",NA,"0.7",700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090733","UTAHDWQ_WQX-WRI220404-4929590-0405-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929590-0405-4-C/results/970090733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12044","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-10","12:45:00","MST","2022-05-10 19:45:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090739","UTAHDWQ_WQX-WRI220509-4929590-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929590-0510-4-C/results/970090739/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12045","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-10","12:45:00","MST","2022-05-10 19:45:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090743","UTAHDWQ_WQX-WRI220509-4929590-0510-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929590-0510-4-C/results/970090743/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12046","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","12:35:00","MST","2022-06-14 19:35:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090762","UTAHDWQ_WQX-WRI220613-4929590-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-28","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929590-0614-4-C/results/970090762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12047","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","12:35:00","MST","2022-06-14 19:35:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090772","UTAHDWQ_WQX-WRI220613-4929590-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929590-0614-4-C/results/970090772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12048","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","13:25:00","MST","2022-07-19 20:25:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090774","UTAHDWQ_WQX-WRI220711-4929590-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929590-0719-4-C/results/970090774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12049","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","13:25:00","MST","2022-07-19 20:25:00",NA,"0.172",172,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090779","UTAHDWQ_WQX-WRI220711-4929590-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929590-0719-4-C/results/970090779/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12050","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","11:35:00","MST","2022-08-09 18:35:00",NA,"0.655",655,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090792","UTAHDWQ_WQX-WRI220801-4929590-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929590-0809-4-C/results/970090792/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12051","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","11:35:00","MST","2022-08-09 18:35:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090809","UTAHDWQ_WQX-WRI220801-4929590-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-18","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929590-0809-4-C/results/970090809/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14562","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-13","11:45:00","MST","2022-09-13 18:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090816","UTAHDWQ_WQX-WRI220912-4929590-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929590-0913-4-C/results/970090816/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12053","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-13","11:45:00","MST","2022-09-13 18:45:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090818","UTAHDWQ_WQX-WRI220912-4929590-0913-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","WEBER R AB CNFL/ SMITH MOREHOUSE CK","River/Stream",NA,"40.7874500000",40.78745,"-111.1335200000",-111.13352,"OK","16020101","UTAHDWQ_WQX-4929590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7874500000","-111.1335200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929590-0913-4-C/results/970090818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12054","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-02","15:10:00","MST","2022-06-02 22:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090824","UTAHDWQ_WQX-LAKES220531-4930007-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4930007-0602-4-C/results/970090824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12055","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-02","15:10:00","MST","2022-06-02 22:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090825","UTAHDWQ_WQX-LAKES220531-4930007-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4930007-0602-4-C/results/970090825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12056","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","15:00:00","MST","2022-07-13 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090853","UTAHDWQ_WQX-LAKES220712-4930007-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4930007-0713-4-C/results/970090853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12057","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","15:00:00","MST","2022-07-13 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090863","UTAHDWQ_WQX-LAKES220712-4930007-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4930007-0713-4-C/results/970090863/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12058","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","13:45:00","MST","2022-09-08 20:45:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Relative Percentage difference (RPD) criteria not within quality control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090889","UTAHDWQ_WQX-LAKES220907-4930007-0908-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4930007-0908-4-C/results/970090889/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12059","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","13:45:00","MST","2022-09-08 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090908","UTAHDWQ_WQX-LAKES220907-4930007-0908-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4930007-0908-4-C/results/970090908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12060","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","14:30:00","MST","2022-09-22 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090928","UTAHDWQ_WQX-LAKES220919-4930007-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4930007-0922-4-C/results/970090928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12061","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","14:30:00","MST","2022-09-22 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090942","UTAHDWQ_WQX-LAKES220919-4930007-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4930007-0922-4-C/results/970090942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12062","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-02","15:00:00","MST","2022-06-02 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090949","UTAHDWQ_WQX-LAKES220531-4930009-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4930009-0602-4-C/results/970090949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12063","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-02","15:00:00","MST","2022-06-02 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090955","UTAHDWQ_WQX-LAKES220531-4930009-0602-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4930009-0602-4-C/results/970090955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12064","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-13","14:45:00","MST","2022-07-13 21:45:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090963","UTAHDWQ_WQX-LAKES220712-4930009-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4930009-0713-4-C/results/970090963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12065","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-13","14:45:00","MST","2022-07-13 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090966","UTAHDWQ_WQX-LAKES220712-4930009-0713-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4930009-0713-4-C/results/970090966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12066","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-08","13:55:00","MST","2022-09-08 20:55:00",NA,"0.763",763,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090972","UTAHDWQ_WQX-LAKES220907-4930009-0908-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4930009-0908-4-C/results/970090972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14499","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-08","13:55:00","MST","2022-09-08 20:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090978","UTAHDWQ_WQX-LAKES220907-4930009-0908-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4930009-0908-4-C/results/970090978/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12068","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-22","14:40:00","MST","2022-09-22 21:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090988","UTAHDWQ_WQX-LAKES220919-4930009-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4930009-0922-4-C/results/970090988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12069","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","14:40:00","MST","2022-09-22 21:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970090991","UTAHDWQ_WQX-LAKES220919-4930009-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4930009-0922-4-C/results/970090991/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14557","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-20","08:17:00","MST","2022-04-20 15:17:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091005","UTAHDWQ_WQX-NPSCAN220416-4930010-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4930010-0420-4-C/results/970091005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12071","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-20","08:17:00","MST","2022-04-20 15:17:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091019","UTAHDWQ_WQX-NPSCAN220416-4930010-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4930010-0420-4-C/results/970091019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12072","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-26","16:40:00","MST","2022-05-26 23:40:00",NA,"0.613",613,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091042","UTAHDWQ_WQX-NPSCAN220524-4930010-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4930010-0526-4-C/results/970091042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12073","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-26","16:40:00","MST","2022-05-26 23:40:00",NA,"0.608",608,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091056","UTAHDWQ_WQX-NPSCAN220524-4930010-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4930010-0526-4-C/results/970091056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12074","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","11:30:00","MST","2022-06-30 18:30:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091061","UTAHDWQ_WQX-NPSCAN220629-4930010-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4930010-0630-4-C/results/970091061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12075","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","11:30:00","MST","2022-06-30 18:30:00",NA,"0.246",246,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091062","UTAHDWQ_WQX-NPSCAN220629-4930010-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4930010-0630-4-C/results/970091062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12076","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","08:20:00","MST","2022-07-27 15:20:00",NA,"0.398",398,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091102","UTAHDWQ_WQX-NPSCAN220727-4930010-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4930010-0727-4-C/results/970091102/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12077","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","08:20:00","MST","2022-07-27 15:20:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091103","UTAHDWQ_WQX-NPSCAN220727-4930010-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4930010-0727-4-C/results/970091103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12078","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-18","15:20:00","MST","2022-08-18 22:20:00",NA,"0.713",713,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091128","UTAHDWQ_WQX-NPSCAN220815-4930010-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4930010-0818-4-C/results/970091128/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12079","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","15:20:00","MST","2022-08-18 22:20:00",NA,"0.679",679,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091140","UTAHDWQ_WQX-NPSCAN220815-4930010-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","GREEN R AB CNFL / COLORADO R","River/Stream",NA,"38.1902600000",38.19026,"-109.8898400000",-109.88984,"OK","14060008","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1902600000","-109.8898400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4930010-0818-4-C/results/970091140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12080","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","15:30:00","MST","2022-06-09 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091169","UTAHDWQ_WQX-NFSASHLEY220608-4930017-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-NFS Ashley","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930017",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4930017-0609-4-C/results/970091169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12081","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","15:30:00","MST","2022-06-09 22:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091175","UTAHDWQ_WQX-NFSASHLEY220608-4930017-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-NFS Ashley","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930017",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4930017-0609-4-C/results/970091175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12082","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-18","14:30:00","MST","2022-08-18 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091186","UTAHDWQ_WQX-NFSASHLEY220817-4930017-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-NFS Ashley","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930017",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4930017-0818-4-C/results/970091186/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12083","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","14:30:00","MST","2022-08-18 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091198","UTAHDWQ_WQX-NFSASHLEY220817-4930017-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-NFS Ashley","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4930017",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4930017-0818-4-C/results/970091198/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12084","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-22","12:10:00","MST","2022-04-22 19:10:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091210","UTAHDWQ_WQX-NPSCAN220416-4930150-0422-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4930150-0422-4-C/results/970091210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12085","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-22","12:10:00","MST","2022-04-22 19:10:00",NA,"0.425",425,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091239","UTAHDWQ_WQX-NPSCAN220416-4930150-0422-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4930150-0422-4-C/results/970091239/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12086","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-30","11:25:00","MST","2022-05-30 18:25:00",NA,"0.524",524,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091265","UTAHDWQ_WQX-NPSCAN220524-4930150-0530-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4930150-0530-4-C/results/970091265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12087","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-30","11:25:00","MST","2022-05-30 18:25:00",NA,"0.353",353,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091274","UTAHDWQ_WQX-NPSCAN220524-4930150-0530-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4930150-0530-4-C/results/970091274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12088","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","10:10:00","MST","2022-06-30 17:10:00",NA,"0.263",263,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091293","UTAHDWQ_WQX-NPSCAN220629-4930150-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4930150-0630-4-C/results/970091293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12089","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","10:10:00","MST","2022-06-30 17:10:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091300","UTAHDWQ_WQX-NPSCAN220629-4930150-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4930150-0630-4-C/results/970091300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12090","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-16","09:20:00","MST","2022-08-16 16:20:00",NA,"0.505",505,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091314","UTAHDWQ_WQX-NPSCAN220815-4930150-0816-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4930150-0816-4-C/results/970091314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12091","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","09:20:00","MST","2022-08-16 16:20:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091326","UTAHDWQ_WQX-NPSCAN220815-4930150-0816-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"38.5266400000",38.52664,"-109.9934600000",-109.99346,"OK","14060008","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.5266400000","-109.9934600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4930150-0816-4-C/results/970091326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12092","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","13:50:00","MST","2022-07-12 20:50:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091341","UTAHDWQ_WQX-LAKES220712-4932910-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","MUD CREEK AB SCOFIELD RES","River/Stream",NA,"39.7271800000",39.72718,"-111.1610100000",-111.16101,"OK","14060007","UTAHDWQ_WQX-4932910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7271800000","-111.1610100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4932910-0712-4-C/results/970091341/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12093","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","13:50:00","MST","2022-07-12 20:50:00",NA,"0.453",453,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091368","UTAHDWQ_WQX-LAKES220712-4932910-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","MUD CREEK AB SCOFIELD RES","River/Stream",NA,"39.7271800000",39.72718,"-111.1610100000",-111.16101,"OK","14060007","UTAHDWQ_WQX-4932910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7271800000","-111.1610100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4932910-0712-4-C/results/970091368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12094","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","15:30:00","MST","2022-06-08 22:30:00",NA,"0.333",333,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091376","UTAHDWQ_WQX-NFSASHLEY220608-4935450-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","ROCK CREEK @ USFS BNDRY","River/Stream",NA,"40.5040300000",40.50403,"-110.5811100000",-110.58111,"OK","14060003","UTAHDWQ_WQX-4935450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5040300000","-110.5811100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935450-0608-4-C/results/970091376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12095","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","15:30:00","MST","2022-06-08 22:30:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091385","UTAHDWQ_WQX-NFSASHLEY220608-4935450-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","ROCK CREEK @ USFS BNDRY","River/Stream",NA,"40.5040300000",40.50403,"-110.5811100000",-110.58111,"OK","14060003","UTAHDWQ_WQX-4935450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5040300000","-110.5811100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935450-0608-4-C/results/970091385/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12096","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","11:30:00","MST","2022-08-18 18:30:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091402","UTAHDWQ_WQX-NFSASHLEY220817-4935450-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","ROCK CREEK @ USFS BNDRY","River/Stream",NA,"40.5040300000",40.50403,"-110.5811100000",-110.58111,"OK","14060003","UTAHDWQ_WQX-4935450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5040300000","-110.5811100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935450-0818-4-C/results/970091402/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12097","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-18","11:30:00","MST","2022-08-18 18:30:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091403","UTAHDWQ_WQX-NFSASHLEY220817-4935450-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","ROCK CREEK @ USFS BNDRY","River/Stream",NA,"40.5040300000",40.50403,"-110.5811100000",-110.58111,"OK","14060003","UTAHDWQ_WQX-4935450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5040300000","-110.5811100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935450-0818-4-C/results/970091403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12098","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","14:00:00","MST","2022-06-08 21:00:00",NA,"0.287",287,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091429","UTAHDWQ_WQX-NFSASHLEY220608-4935860-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch","River/Stream",NA,"40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935860-0608-4-C/results/970091429/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12099","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","14:00:00","MST","2022-06-08 21:00:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091430","UTAHDWQ_WQX-NFSASHLEY220608-4935860-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch","River/Stream",NA,"40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935860-0608-4-C/results/970091430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12100","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","14:00:00","MST","2022-08-17 21:00:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091452","UTAHDWQ_WQX-NFSASHLEY220817-4935860-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch","River/Stream",NA,"40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935860-0817-4-C/results/970091452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12101","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","14:00:00","MST","2022-08-17 21:00:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091458","UTAHDWQ_WQX-NFSASHLEY220817-4935860-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch","River/Stream",NA,"40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935860-0817-4-C/results/970091458/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12102","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","14:05:00","MST","2022-06-08 21:05:00",NA,"0.311",311,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091478","UTAHDWQ_WQX-NFSASHLEY220608-4935861-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch Replicate of 4935860","River/Stream","Replicate of 4935860","40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935861",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935861-0608-4-C/results/970091478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12103","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","14:05:00","MST","2022-06-08 21:05:00",NA,"0.297",297,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091488","UTAHDWQ_WQX-NFSASHLEY220608-4935861-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch Replicate of 4935860","River/Stream","Replicate of 4935860","40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935861",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935861-0608-4-C/results/970091488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12104","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","14:05:00","MST","2022-08-17 21:05:00",NA,"0.329",329,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091498","UTAHDWQ_WQX-NFSASHLEY220817-4935861-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch Replicate of 4935860","River/Stream","Replicate of 4935860","40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935861",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935861-0817-4-C/results/970091498/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14537","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","14:05:00","MST","2022-08-17 21:05:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091518","UTAHDWQ_WQX-NFSASHLEY220817-4935861-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","Lake Fork River at Fisher Ranch Replicate of 4935860","River/Stream","Replicate of 4935860","40.5306800000",40.53068,"-110.4535000000",-110.4535,"OK","14060003","UTAHDWQ_WQX-4935861",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.5306800000","-110.4535000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935861-0817-4-C/results/970091518/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12106","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-08","11:55:00","MST","2022-06-08 18:55:00",NA,"0.227",227,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091527","UTAHDWQ_WQX-NFSASHLEY220608-4935970-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","LAKE FK R AB MOON LAKE","River/Stream",NA,"40.6032800000",40.60328,"-110.5201600000",-110.52016,"OK","14060003","UTAHDWQ_WQX-4935970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.6032800000","-110.5201600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935970-0608-4-C/results/970091527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12107","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-08","11:55:00","MST","2022-06-08 18:55:00",NA,"0.226",226,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091538","UTAHDWQ_WQX-NFSASHLEY220608-4935970-0608-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","LAKE FK R AB MOON LAKE","River/Stream",NA,"40.6032800000",40.60328,"-110.5201600000",-110.52016,"OK","14060003","UTAHDWQ_WQX-4935970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.6032800000","-110.5201600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935970-0608-4-C/results/970091538/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14418","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","10:50:00","MST","2022-08-17 17:50:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091547","UTAHDWQ_WQX-NFSASHLEY220817-4935970-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","LAKE FK R AB MOON LAKE","River/Stream",NA,"40.6032800000",40.60328,"-110.5201600000",-110.52016,"OK","14060003","UTAHDWQ_WQX-4935970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.6032800000","-110.5201600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935970-0817-4-C/results/970091547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12109","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:50:00","MST","2022-08-17 17:50:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091549","UTAHDWQ_WQX-NFSASHLEY220817-4935970-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","013","LAKE FK R AB MOON LAKE","River/Stream",NA,"40.6032800000",40.60328,"-110.5201600000",-110.52016,"OK","14060003","UTAHDWQ_WQX-4935970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.6032800000","-110.5201600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935970-0817-4-C/results/970091549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12110","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-02","08:40:00","MST","2022-06-02 15:40:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091576","UTAHDWQ_WQX-LAKES220531-4937130-0602-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937130-0602-2-C/results/970091576/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12111","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-02","08:40:00","MST","2022-06-02 15:40:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091577","UTAHDWQ_WQX-LAKES220531-4937130-0602-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:27:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937130-0602-2-C/results/970091577/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12112","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-02","09:10:00","MST","2022-06-02 16:10:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.39",3.39,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091583","UTAHDWQ_WQX-LAKES220531-4937130-0602-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE","Lake",NA,"40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937130-0602-29-C/results/970091583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12113","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-02","09:30:00","MST","2022-06-02 16:30:00",NA,"0.394",394,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091591","UTAHDWQ_WQX-LAKES220531-4937140-0602-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937140-0602-2-C/results/970091591/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12114","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-02","09:30:00","MST","2022-06-02 16:30:00",NA,"0.365",365,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091594","UTAHDWQ_WQX-LAKES220531-4937140-0602-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937140-0602-2-C/results/970091594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12115","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-02","09:40:00","MST","2022-06-02 16:40:00",NA,"0.359",359,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.17",3.17,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091600","UTAHDWQ_WQX-LAKES220531-4937140-0602-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937140-0602-29-C/results/970091600/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12116","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-02","09:40:00","MST","2022-06-02 16:40:00",NA,"0.339",339,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.17",3.17,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091604","UTAHDWQ_WQX-LAKES220531-4937140-0602-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 02 E MIDLAKE","Lake",NA,"40.1924600000",40.19246,"-109.6715200000",-109.67152,"OK","14060001","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1924600000","-109.6715200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937140-0602-29-C/results/970091604/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12117","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-02","08:50:00","MST","2022-06-02 15:50:00",NA,"0.496",496,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091607","UTAHDWQ_WQX-LAKES220531-4937180-0602-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937180-0602-2-C/results/970091607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12118","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-02","08:50:00","MST","2022-06-02 15:50:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091614","UTAHDWQ_WQX-LAKES220531-4937180-0602-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","40.1908000000",40.1908,"-109.6890300000",-109.68903,"OK","14060001","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1908000000","-109.6890300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937180-0602-2-C/results/970091614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12119","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-03","10:35:00","MST","2022-05-03 17:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091622","UTAHDWQ_WQX-SANPITCHNPS220502-4946000-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","San Pitch River NPS QAQC Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946000-0503-4-C/results/970091622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12120","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-03","12:35:00","MST","2022-05-03 19:35:00",NA,"1.9",1900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091628","UTAHDWQ_WQX-SANPITCHNPS220502-4946450-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"39.2787100000",39.27871,"-111.6782500000",-111.67825,"OK","16030004","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.2787100000","-111.6782500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946450-0503-4-C/results/970091628/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14541","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-03","12:00:00","MST","2022-05-03 19:00:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091661","UTAHDWQ_WQX-SANPITCHNPS220502-4946650-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"39.4756600000",39.47566,"-111.5991100000",-111.59911,"OK","16030004","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4756600000","-111.5991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946650-0503-4-C/results/970091661/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12122","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-03","11:23:00","MST","2022-05-03 18:23:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091697","UTAHDWQ_WQX-SANPITCHNPS220502-4946750-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946750-0503-4-C/results/970091697/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12123","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-03","11:25:00","MST","2022-05-03 18:25:00",NA,"0.484",484,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091728","UTAHDWQ_WQX-SANPITCHNPS220502-4946751-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946751-0503-4-C/results/970091728/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14556","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-03","11:05:00","MST","2022-05-03 18:05:00",NA,"0.861",861,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091733","UTAHDWQ_WQX-SANPITCHNPS220502-4946756-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R Bl Fairview WWTP","River/Stream",NA,"39.5747900000",39.57479,"-111.4703900000",-111.47039,"OK","16030004","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5747900000","-111.4703900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946756-0503-4-C/results/970091733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12125","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-03","10:35:00","MST","2022-05-03 17:35:00",NA,"0.94",940,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091771","UTAHDWQ_WQX-SANPITCHNPS220502-4946790-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R @ US 89 XING N OF FAIRVIEW","River/Stream",NA,"39.6382900000",39.63829,"-111.4465800000",-111.44658,"OK","16030004","UTAHDWQ_WQX-4946790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6382900000","-111.4465800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946790-0503-4-C/results/970091771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12126","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-03","10:40:00","MST","2022-05-03 17:40:00",NA,"0.84",840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091776","UTAHDWQ_WQX-SANPITCHNPS220502-4946840-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"39.6086000000",39.6086,"-111.4483200000",-111.44832,"OK","16030004","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6086000000","-111.4483200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946840-0503-4-C/results/970091776/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12127","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-03","11:38:00","MST","2022-05-03 18:38:00",NA,"0.92",920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091809","UTAHDWQ_WQX-SANPITCHNPS220502-4946960-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AB MORONI WWTP","River/Stream",NA,"39.5147000000",39.5147,"-111.5862800000",-111.58628,"OK","16030004","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5147000000","-111.5862800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946960-0503-4-C/results/970091809/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12128","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-03","11:50:00","MST","2022-05-03 18:50:00",NA,"1.82",1820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091843","UTAHDWQ_WQX-SANPITCHNPS220502-4946980-0503-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","039","SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"39.5010700000",39.50107,"-111.5854800000",-111.58548,"OK","16030004","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5010700000","-111.5854800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946980-0503-4-C/results/970091843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12129","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-02","14:00:00","MST","2022-05-02 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091876","UTAHDWQ_WQX-OTTERCKNPS220502-4948868-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4948868",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4948868-0502-4-C/results/970091876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12130","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-02","14:05:00","MST","2022-05-02 21:05:00",NA,"0.657",657,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091885","UTAHDWQ_WQX-OTTERCKNPS220502-4948870-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4948870-0502-4-C/results/970091885/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12131","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-02","14:55:00","MST","2022-05-02 21:55:00",NA,"0.859",859,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091922","UTAHDWQ_WQX-OTTERCKNPS220502-4948930-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AT CR XING 2MI S E OF GREENWICH","River/Stream",NA,"38.4160900000",38.41609,"-111.9029700000",-111.90297,"OK","16030002","UTAHDWQ_WQX-4948930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.4160900000","-111.9029700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4948930-0502-4-C/results/970091922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12132","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-02","14:35:00","MST","2022-05-02 21:35:00",NA,"0.256",256,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091956","UTAHDWQ_WQX-OTTERCKNPS220502-4948940-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CREEK AT THE NARROWS","River/Stream",NA,"38.3520900000",38.35209,"-111.9464200000",-111.94642,"OK","16030002","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3520900000","-111.9464200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4948940-0502-4-C/results/970091956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12133","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-02","15:20:00","MST","2022-05-02 22:20:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970091990","UTAHDWQ_WQX-OTTERCKNPS220502-4949040-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","041","OTTER CK AT CR XING NE OF KOOSHAREM","River/Stream",NA,"38.5202600000",38.52026,"-111.8638000000",-111.8638,"OK","16030002","UTAHDWQ_WQX-4949040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5202600000","-111.8638000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4949040-0502-4-C/results/970091990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12134","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-02","15:30:00","MST","2022-05-02 22:30:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092023","UTAHDWQ_WQX-OTTERCKNPS220502-4949070-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","041","OTTER CK AT U62 XING N OF KOOSHAREM","River/Stream",NA,"38.5641400000",38.56414,"-111.8493600000",-111.84936,"OK","16030002","UTAHDWQ_WQX-4949070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5641400000","-111.8493600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4949070-0502-4-C/results/970092023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12135","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","11:10:00","MST","2022-05-04 18:10:00",NA,"0.194",194,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092057","UTAHDWQ_WQX-UPRSEVNPS220504-4949630-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R AT U12 XING","River/Stream",NA,"37.7494200000",37.74942,"-112.3749200000",-112.37492,"OK","16030001","UTAHDWQ_WQX-4949630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7494200000","-112.3749200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949630-0504-4-C/results/970092057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12136","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","11:55:00","MST","2022-05-04 18:55:00",NA,"0.473",473,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092091","UTAHDWQ_WQX-UPRSEVNPS220504-4949640-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R @ SANFORD ROAD XING","River/Stream",NA,"37.9419200000",37.94192,"-112.4166000000",-112.4166,"OK","16030001","UTAHDWQ_WQX-4949640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.9419200000","-112.4166000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949640-0504-4-C/results/970092091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12137","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","10:50:00","MST","2022-05-04 17:50:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092128","UTAHDWQ_WQX-UPRSEVNPS220504-4949650-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R NEAR HATCH","River/Stream",NA,"37.6515000000",37.6515,"-112.4304300000",-112.43043,"OK","16030001","UTAHDWQ_WQX-4949650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6515000000","-112.4304300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949650-0504-4-C/results/970092128/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12138","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","12:20:00","MST","2022-05-04 19:20:00",NA,"0.194",194,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092161","UTAHDWQ_WQX-UPRSEVNPS220504-4949670-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","SEVIER R @ PANGUITCH AIRPORT RD XING","River/Stream",NA,"37.8516400000",37.85164,"-112.4360400000",-112.43604,"OK","16030001","UTAHDWQ_WQX-4949670",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8516400000","-112.4360400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949670-0504-4-C/results/970092161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12139","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","10:30:00","MST","2022-05-04 17:30:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092168","UTAHDWQ_WQX-UPRSEVNPS220504-4949700-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","MAMMOTH CK AT US89 XING","River/Stream",NA,"37.6281000000",37.6281,"-112.4553100000",-112.45531,"OK","16030001","UTAHDWQ_WQX-4949700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6281000000","-112.4553100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949700-0504-4-C/results/970092168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12140","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","10:30:00","MST","2022-05-04 17:30:00",NA,"0.336",336,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092200","UTAHDWQ_WQX-UPRSEVNPS220504-4949702-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","MAMMOTH CK AT US89 XING Replicate of 4949700","River/Stream","Replicate of 4949700","37.6281000000",37.6281,"-112.4553100000",-112.45531,"OK","16030001","UTAHDWQ_WQX-4949702",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6281000000","-112.4553100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949702-0504-4-C/results/970092200/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12141","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","11:40:00","MST","2022-05-04 18:40:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092208","UTAHDWQ_WQX-UPRSEVNPS220504-4949710-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","Sevier R bl USU Farm @ Sandwash Rd Xing","River/Stream",NA,"37.8762300000",37.87623,"-112.4277600000",-112.42776,"OK","16030001","UTAHDWQ_WQX-4949710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8762300000","-112.4277600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949710-0504-4-C/results/970092208/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12142","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","11:40:00","MST","2022-05-04 18:40:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092243","UTAHDWQ_WQX-UPRSEVNPS220504-4949718-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Upper Sevier Watershed Nonpoint Source Monitoring Blank","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4949718",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949718-0504-4-C/results/970092243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14331","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","10:00:00","MST","2022-05-04 17:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092249","UTAHDWQ_WQX-UPRSEVNPS220504-4949900-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","017","ASAY CK AT US89 XING","River/Stream",NA,"37.5841500000",37.58415,"-112.4766000000",-112.4766,"OK","16030001","UTAHDWQ_WQX-4949900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5841500000","-112.4766000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949900-0504-4-C/results/970092249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12144","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-02","14:05:00","MST","2022-05-02 21:05:00",NA,"0.735",735,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092282","UTAHDWQ_WQX-OTTERCKNPS220502-4949950-0502-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870","River/Stream","Replicate of 4948870","38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4949950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4949950-0502-4-C/results/970092282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12145","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-20","15:10:00","MST","2022-06-20 22:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092290","UTAHDWQ_WQX-WLA2022-4950003-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Trip Blank-Colorado Basin Intensive Crew #3","River/Stream","Trip Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950003",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950003-0620-4-C/results/970092290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14564","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-19","12:20:00","MST","2022-06-19 19:20:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092296","UTAHDWQ_WQX-WLA2022-4950020-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R BL FIRST NARROWS & New St George WWTP","River/Stream",NA,"37.0201200000",37.02012,"-113.6727200000",-113.67272,"OK","15010010","UTAHDWQ_WQX-4950020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0201200000","-113.6727200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950020-0619-4-C/results/970092296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12147","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-19","12:20:00","MST","2022-06-19 19:20:00",NA,"0.79",790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092332","UTAHDWQ_WQX-WLA2022-4950020-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R BL FIRST NARROWS & New St George WWTP","River/Stream",NA,"37.0201200000",37.02012,"-113.6727200000",-113.67272,"OK","15010010","UTAHDWQ_WQX-4950020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0201200000","-113.6727200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950020-0619-4-C/results/970092332/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12148","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-20","10:00:00","MST","2022-06-20 17:00:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092362","UTAHDWQ_WQX-WLA2022-4950020-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R BL FIRST NARROWS & New St George WWTP","River/Stream",NA,"37.0201200000",37.02012,"-113.6727200000",-113.67272,"OK","15010010","UTAHDWQ_WQX-4950020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0201200000","-113.6727200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950020-0620-4-C/results/970092362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12149","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-20","10:00:00","MST","2022-06-20 17:00:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092384","UTAHDWQ_WQX-WLA2022-4950020-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R BL FIRST NARROWS & New St George WWTP","River/Stream",NA,"37.0201200000",37.02012,"-113.6727200000",-113.67272,"OK","15010010","UTAHDWQ_WQX-4950020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0201200000","-113.6727200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950020-0620-4-C/results/970092384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12150","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-17","11:00:00","MST","2022-06-17 18:00:00",NA,"1.43",1430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","#N/A",NA,"Text","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","No field data were available for this sample","No field data available for this sampling event.",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092425","UTAHDWQ_WQX-WLA2022-4950046-0617-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 1000 ft BL St. George WWTP","River/Stream",NA,"37.0355100000",37.03551,"-113.6317700000",-113.63177,"OK","15010010","UTAHDWQ_WQX-4950046",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0355100000","-113.6317700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950046-0617-4-C/results/970092425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12151","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-17","11:00:00","MST","2022-06-17 18:00:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","#N/A",NA,"Text","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","No field data were available for this sample","No field data available for this sampling event.",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092445","UTAHDWQ_WQX-WLA2022-4950046-0617-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 1000 ft BL St. George WWTP","River/Stream",NA,"37.0355100000",37.03551,"-113.6317700000",-113.63177,"OK","15010010","UTAHDWQ_WQX-4950046",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0355100000","-113.6317700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950046-0617-4-C/results/970092445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12152","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","13:50:00","MST","2022-06-21 20:50:00",NA,"2.5",2500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","#N/A",NA,"Text","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","No field data were available for this sample","No field data available for this sampling event.",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092484","UTAHDWQ_WQX-WLA2022-4950046-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 1000 ft BL St. George WWTP","River/Stream",NA,"37.0355100000",37.03551,"-113.6317700000",-113.63177,"OK","15010010","UTAHDWQ_WQX-4950046",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0355100000","-113.6317700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950046-0621-4-C/results/970092484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12153","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","13:50:00","MST","2022-06-21 20:50:00",NA,"2.51",2510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","#N/A",NA,"Text","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","No field data were available for this sample","No field data available for this sampling event.",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092495","UTAHDWQ_WQX-WLA2022-4950046-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 1000 ft BL St. George WWTP","River/Stream",NA,"37.0355100000",37.03551,"-113.6317700000",-113.63177,"OK","15010010","UTAHDWQ_WQX-4950046",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0355100000","-113.6317700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950046-0621-4-C/results/970092495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12154","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-17","10:00:00","MST","2022-06-17 17:00:00",NA,"0.691",691,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","#N/A",NA,"Text","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","No field data were available for this sample","No field data available for this sampling event.",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092515","UTAHDWQ_WQX-WLA2022-4950048-0617-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 500 ft AB St. George WWTP","River/Stream",NA,"37.0383200000",37.03832,"-113.6283000000",-113.6283,"OK","15010010","UTAHDWQ_WQX-4950048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0383200000","-113.6283000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950048-0617-4-C/results/970092515/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12155","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-17","10:00:00","MST","2022-06-17 17:00:00",NA,"0.664",664,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","#N/A",NA,"Text","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","No field data were available for this sample","No field data available for this sampling event.",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092527","UTAHDWQ_WQX-WLA2022-4950048-0617-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 500 ft AB St. George WWTP","River/Stream",NA,"37.0383200000",37.03832,"-113.6283000000",-113.6283,"OK","15010010","UTAHDWQ_WQX-4950048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0383200000","-113.6283000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950048-0617-4-C/results/970092527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12156","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","13:40:00","MST","2022-06-21 20:40:00",NA,"0.882",882,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","#N/A",NA,"Text","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","No field data were available for this sample","No field data available for this sampling event.",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092554","UTAHDWQ_WQX-WLA2022-4950048-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 500 ft AB St. George WWTP","River/Stream",NA,"37.0383200000",37.03832,"-113.6283000000",-113.6283,"OK","15010010","UTAHDWQ_WQX-4950048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0383200000","-113.6283000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950048-0621-4-C/results/970092554/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12157","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","13:40:00","MST","2022-06-21 20:40:00",NA,"0.942",942,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","#N/A",NA,"Text","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","No field data were available for this sample","No field data available for this sampling event.",NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092593","UTAHDWQ_WQX-WLA2022-4950048-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 500 ft AB St. George WWTP","River/Stream",NA,"37.0383200000",37.03832,"-113.6283000000",-113.6283,"OK","15010010","UTAHDWQ_WQX-4950048",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0383200000","-113.6283000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950048-0621-4-C/results/970092593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12158","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","19:45:00","MST","2022-06-15 02:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092615","UTAHDWQ_WQX-WLA2022-4950053-0614-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0614-4%2F1-C/results/970092615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14550","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","19:45:00","MST","2022-06-15 02:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092631","UTAHDWQ_WQX-WLA2022-4950053-0614-4/1-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0614-4%2F1-C/results/970092631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12160","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","08:30:00","MST","2022-06-14 15:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092665","UTAHDWQ_WQX-WLA2022-4950053-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0614-4-C/results/970092665/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12161","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","08:30:00","MST","2022-06-14 15:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092700","UTAHDWQ_WQX-WLA2022-4950053-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0614-4-C/results/970092700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14553","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","17:00:00","MST","2022-06-16 00:00:00",NA,"0.273",273,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092725","UTAHDWQ_WQX-WLA2022-4950053-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0615-4-C/results/970092725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12163","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","17:00:00","MST","2022-06-16 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092754","UTAHDWQ_WQX-WLA2022-4950053-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0615-4-C/results/970092754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12164","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","14:45:00","MST","2022-06-16 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092770","UTAHDWQ_WQX-WLA2022-4950053-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0616-4-C/results/970092770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12165","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","14:45:00","MST","2022-06-16 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092785","UTAHDWQ_WQX-WLA2022-4950053-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0616-4-C/results/970092785/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12166","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-19","15:00:00","MST","2022-06-19 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092823","UTAHDWQ_WQX-WLA2022-4950053-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0619-4-C/results/970092823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12167","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-19","15:00:00","MST","2022-06-19 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092839","UTAHDWQ_WQX-WLA2022-4950053-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0619-4-C/results/970092839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12168","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-20","15:10:00","MST","2022-06-20 22:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092873","UTAHDWQ_WQX-WLA2022-4950053-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Equipment Blank-Colorado Basin Intensive Crew #3","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4950053",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0620-4-C/results/970092873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12169","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-17","09:24:00","MST","2022-06-17 16:24:00",NA,"4",4000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092915","UTAHDWQ_WQX-WLA2022-4950060-0617-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","St. George WWTP new plant","Facility Other",NA,"37.0386000000",37.0386,"-113.6299800000",-113.62998,"OK","15010010","UTAHDWQ_WQX-4950060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0386000000","-113.6299800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950060-0617-4-C/results/970092915/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12170","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-17","09:24:00","MST","2022-06-17 16:24:00",NA,"4.41",4410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970092955","UTAHDWQ_WQX-WLA2022-4950060-0617-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","St. George WWTP new plant","Facility Other",NA,"37.0386000000",37.0386,"-113.6299800000",-113.62998,"OK","15010010","UTAHDWQ_WQX-4950060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0386000000","-113.6299800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950060-0617-4-C/results/970092955/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12171","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","13:30:00","MST","2022-06-21 20:30:00",NA,"3.86",3860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093001","UTAHDWQ_WQX-WLA2022-4950060-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","St. George WWTP new plant","Facility Other",NA,"37.0386000000",37.0386,"-113.6299800000",-113.62998,"OK","15010010","UTAHDWQ_WQX-4950060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0386000000","-113.6299800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950060-0621-4-C/results/970093001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12172","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","13:30:00","MST","2022-06-21 20:30:00",NA,"4.4",4400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093002","UTAHDWQ_WQX-WLA2022-4950060-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","St. George WWTP new plant","Facility Other",NA,"37.0386000000",37.0386,"-113.6299800000",-113.62998,"OK","15010010","UTAHDWQ_WQX-4950060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0386000000","-113.6299800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950060-0621-4-C/results/970093002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12173","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-19","10:00:00","MST","2022-06-19 17:00:00",NA,"1.88",1880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093035","UTAHDWQ_WQX-WLA2022-4950090-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","SANTA CLARA R AB VIRGIN RIVER","River/Stream",NA,"37.0737600000",37.07376,"-113.5836200000",-113.58362,"OK","15010008","UTAHDWQ_WQX-4950090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0737600000","-113.5836200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950090-0619-4-C/results/970093035/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12174","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-19","10:00:00","MST","2022-06-19 17:00:00",NA,"2.07",2070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093048","UTAHDWQ_WQX-WLA2022-4950090-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","SANTA CLARA R AB VIRGIN RIVER","River/Stream",NA,"37.0737600000",37.07376,"-113.5836200000",-113.58362,"OK","15010008","UTAHDWQ_WQX-4950090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0737600000","-113.5836200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950090-0619-4-C/results/970093048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12175","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-20","12:30:00","MST","2022-06-20 19:30:00",NA,"1.82",1820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093070","UTAHDWQ_WQX-WLA2022-4950090-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","SANTA CLARA R AB VIRGIN RIVER","River/Stream",NA,"37.0737600000",37.07376,"-113.5836200000",-113.58362,"OK","15010008","UTAHDWQ_WQX-4950090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0737600000","-113.5836200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950090-0620-4-C/results/970093070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12176","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-20","12:30:00","MST","2022-06-20 19:30:00",NA,"1.72",1720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093072","UTAHDWQ_WQX-WLA2022-4950090-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","SANTA CLARA R AB VIRGIN RIVER","River/Stream",NA,"37.0737600000",37.07376,"-113.5836200000",-113.58362,"OK","15010008","UTAHDWQ_WQX-4950090",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0737600000","-113.5836200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950090-0620-4-C/results/970093072/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12177","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-19","11:00:00","MST","2022-06-19 18:00:00",NA,"0.727",727,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093131","UTAHDWQ_WQX-WLA2022-4950120-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT BLOOMINGTON XING ab St George WWTP","River/Stream",NA,"37.0522000000",37.0522,"-113.6007900000",-113.60079,"OK","15010010","UTAHDWQ_WQX-4950120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0522000000","-113.6007900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950120-0619-4-C/results/970093131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12178","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-19","11:00:00","MST","2022-06-19 18:00:00",NA,"0.767",767,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093140","UTAHDWQ_WQX-WLA2022-4950120-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT BLOOMINGTON XING ab St George WWTP","River/Stream",NA,"37.0522000000",37.0522,"-113.6007900000",-113.60079,"OK","15010010","UTAHDWQ_WQX-4950120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:28:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0522000000","-113.6007900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950120-0619-4-C/results/970093140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12179","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-20","11:15:00","MST","2022-06-20 18:15:00",NA,"0.869",869,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093175","UTAHDWQ_WQX-WLA2022-4950120-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT BLOOMINGTON XING ab St George WWTP","River/Stream",NA,"37.0522000000",37.0522,"-113.6007900000",-113.60079,"OK","15010010","UTAHDWQ_WQX-4950120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0522000000","-113.6007900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950120-0620-4-C/results/970093175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12180","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-20","11:15:00","MST","2022-06-20 18:15:00",NA,"0.936",936,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093192","UTAHDWQ_WQX-WLA2022-4950120-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT BLOOMINGTON XING ab St George WWTP","River/Stream",NA,"37.0522000000",37.0522,"-113.6007900000",-113.60079,"OK","15010010","UTAHDWQ_WQX-4950120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0522000000","-113.6007900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950120-0620-4-C/results/970093192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14590","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-19","10:30:00","MST","2022-06-19 17:30:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093226","UTAHDWQ_WQX-WLA2022-4950132-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Fort Pearce Wash AB confluence with Virgin River","River/Stream",NA,"37.0775200000",37.07752,"-113.5719700000",-113.57197,"OK","15010009","UTAHDWQ_WQX-4950132",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0775200000","-113.5719700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950132-0619-4-C/results/970093226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12182","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-19","10:30:00","MST","2022-06-19 17:30:00",NA,"1.85",1850,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093241","UTAHDWQ_WQX-WLA2022-4950132-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Fort Pearce Wash AB confluence with Virgin River","River/Stream",NA,"37.0775200000",37.07752,"-113.5719700000",-113.57197,"OK","15010009","UTAHDWQ_WQX-4950132",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0775200000","-113.5719700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950132-0619-4-C/results/970093241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12183","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-20","12:00:00","MST","2022-06-20 19:00:00",NA,"0.932",932,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093285","UTAHDWQ_WQX-WLA2022-4950132-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Fort Pearce Wash AB confluence with Virgin River","River/Stream",NA,"37.0775200000",37.07752,"-113.5719700000",-113.57197,"OK","15010009","UTAHDWQ_WQX-4950132",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0775200000","-113.5719700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950132-0620-4-C/results/970093285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14583","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-20","12:00:00","MST","2022-06-20 19:00:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093292","UTAHDWQ_WQX-WLA2022-4950132-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Fort Pearce Wash AB confluence with Virgin River","River/Stream",NA,"37.0775200000",37.07752,"-113.5719700000",-113.57197,"OK","15010009","UTAHDWQ_WQX-4950132",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0775200000","-113.5719700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950132-0620-4-C/results/970093292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12185","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-19","09:15:00","MST","2022-06-19 16:15:00",NA,"0.935",935,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093334","UTAHDWQ_WQX-WLA2022-4950200-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R SE OF ST GEORGE @ CR XING","River/Stream",NA,"37.0863700000",37.08637,"-113.5566200000",-113.55662,"OK","15010008","UTAHDWQ_WQX-4950200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0863700000","-113.5566200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950200-0619-4-C/results/970093334/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12186","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-19","09:15:00","MST","2022-06-19 16:15:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093365","UTAHDWQ_WQX-WLA2022-4950200-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R SE OF ST GEORGE @ CR XING","River/Stream",NA,"37.0863700000",37.08637,"-113.5566200000",-113.55662,"OK","15010008","UTAHDWQ_WQX-4950200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0863700000","-113.5566200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950200-0619-4-C/results/970093365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12187","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-20","13:00:00","MST","2022-06-20 20:00:00",NA,"0.639",639,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093404","UTAHDWQ_WQX-WLA2022-4950200-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R SE OF ST GEORGE @ CR XING","River/Stream",NA,"37.0863700000",37.08637,"-113.5566200000",-113.55662,"OK","15010008","UTAHDWQ_WQX-4950200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0863700000","-113.5566200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950200-0620-4-C/results/970093404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12188","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-20","13:00:00","MST","2022-06-20 20:00:00",NA,"0.72",720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093431","UTAHDWQ_WQX-WLA2022-4950200-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R SE OF ST GEORGE @ CR XING","River/Stream",NA,"37.0863700000",37.08637,"-113.5566200000",-113.55662,"OK","15010008","UTAHDWQ_WQX-4950200",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0863700000","-113.5566200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950200-0620-4-C/results/970093431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14542","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-19","08:30:00","MST","2022-06-19 15:30:00",NA,"0.775",775,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093438","UTAHDWQ_WQX-WLA2022-4950251-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at Mall Drive bridge","River/Stream",NA,"37.0966500000",37.09665,"-113.5328700000",-113.53287,"OK","15010008","UTAHDWQ_WQX-4950251",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0966500000","-113.5328700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950251-0619-4-C/results/970093438/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12190","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-19","08:30:00","MST","2022-06-19 15:30:00",NA,"0.653",653,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093442","UTAHDWQ_WQX-WLA2022-4950251-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at Mall Drive bridge","River/Stream",NA,"37.0966500000",37.09665,"-113.5328700000",-113.53287,"OK","15010008","UTAHDWQ_WQX-4950251",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0966500000","-113.5328700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950251-0619-4-C/results/970093442/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12191","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-20","13:45:00","MST","2022-06-20 20:45:00",NA,"0.525",525,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093507","UTAHDWQ_WQX-WLA2022-4950251-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at Mall Drive bridge","River/Stream",NA,"37.0966500000",37.09665,"-113.5328700000",-113.53287,"OK","15010008","UTAHDWQ_WQX-4950251",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0966500000","-113.5328700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950251-0620-4-C/results/970093507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14582","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-20","13:45:00","MST","2022-06-20 20:45:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093516","UTAHDWQ_WQX-WLA2022-4950251-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at Mall Drive bridge","River/Stream",NA,"37.0966500000",37.09665,"-113.5328700000",-113.53287,"OK","15010008","UTAHDWQ_WQX-4950251",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0966500000","-113.5328700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950251-0620-4-C/results/970093516/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12193","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-19","07:30:00","MST","2022-06-19 14:30:00",NA,"0.601",601,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093565","UTAHDWQ_WQX-WLA2022-4950263-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at Country Way Bridge crossing","River/Stream",NA,"37.1200500000",37.12005,"-113.4662800000",-113.46628,"OK","15010008","UTAHDWQ_WQX-4950263",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1200500000","-113.4662800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950263-0619-4-C/results/970093565/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12194","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-19","07:30:00","MST","2022-06-19 14:30:00",NA,"0.76",760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093573","UTAHDWQ_WQX-WLA2022-4950263-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at Country Way Bridge crossing","River/Stream",NA,"37.1200500000",37.12005,"-113.4662800000",-113.46628,"OK","15010008","UTAHDWQ_WQX-4950263",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1200500000","-113.4662800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950263-0619-4-C/results/970093573/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12195","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-20","14:23:00","MST","2022-06-20 21:23:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093606","UTAHDWQ_WQX-WLA2022-4950263-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at Country Way Bridge crossing","River/Stream",NA,"37.1200500000",37.12005,"-113.4662800000",-113.46628,"OK","15010008","UTAHDWQ_WQX-4950263",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1200500000","-113.4662800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950263-0620-4-C/results/970093606/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12196","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-20","14:23:00","MST","2022-06-20 21:23:00",NA,"0.331",331,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093642","UTAHDWQ_WQX-WLA2022-4950263-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at Country Way Bridge crossing","River/Stream",NA,"37.1200500000",37.12005,"-113.4662800000",-113.46628,"OK","15010008","UTAHDWQ_WQX-4950263",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1200500000","-113.4662800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950263-0620-4-C/results/970093642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12197","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","15:45:00","MST","2022-06-13 22:45:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093645","UTAHDWQ_WQX-WLA2022-4950268-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.9 mile via road AB St. George/Washington Canal dam entrance","River/Stream",NA,"37.1202300000",37.12023,"-113.4299000000",-113.4299,"OK","15010008","UTAHDWQ_WQX-4950268",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1202300000","-113.4299000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950268-0613-4-C/results/970093645/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12198","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","15:45:00","MST","2022-06-13 22:45:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093695","UTAHDWQ_WQX-WLA2022-4950268-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.9 mile via road AB St. George/Washington Canal dam entrance","River/Stream",NA,"37.1202300000",37.12023,"-113.4299000000",-113.4299,"OK","15010008","UTAHDWQ_WQX-4950268",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1202300000","-113.4299000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950268-0613-4-C/results/970093695/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12199","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","09:30:00","MST","2022-06-15 16:30:00",NA,"0.551",551,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093730","UTAHDWQ_WQX-WLA2022-4950268-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.9 mile via road AB St. George/Washington Canal dam entrance","River/Stream",NA,"37.1202300000",37.12023,"-113.4299000000",-113.4299,"OK","15010008","UTAHDWQ_WQX-4950268",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1202300000","-113.4299000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950268-0615-4-C/results/970093730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12200","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","09:30:00","MST","2022-06-15 16:30:00",NA,"0.591",591,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093742","UTAHDWQ_WQX-WLA2022-4950268-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.9 mile via road AB St. George/Washington Canal dam entrance","River/Stream",NA,"37.1202300000",37.12023,"-113.4299000000",-113.4299,"OK","15010008","UTAHDWQ_WQX-4950268",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1202300000","-113.4299000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950268-0615-4-C/results/970093742/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12201","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-19","12:30:00","MST","2022-06-19 19:30:00",NA,"0.846",846,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093766","UTAHDWQ_WQX-WLA2022-4950300-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R SE OF ST GEORGE @ CR XING Replicate of 4950200","River/Stream","Replicate of 4950200","37.0863700000",37.08637,"-113.5566200000",-113.55662,"OK","15010008","UTAHDWQ_WQX-4950300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0863700000","-113.5566200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950300-0619-4-C/results/970093766/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12202","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-19","12:30:00","MST","2022-06-19 19:30:00",NA,"0.775",775,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093793","UTAHDWQ_WQX-WLA2022-4950300-0619-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R SE OF ST GEORGE @ CR XING Replicate of 4950200","River/Stream","Replicate of 4950200","37.0863700000",37.08637,"-113.5566200000",-113.55662,"OK","15010008","UTAHDWQ_WQX-4950300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0863700000","-113.5566200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950300-0619-4-C/results/970093793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12203","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-20","10:15:00","MST","2022-06-20 17:15:00",NA,"0.927",927,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093805","UTAHDWQ_WQX-WLA2022-4950300-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R SE OF ST GEORGE @ CR XING Replicate of 4950200","River/Stream","Replicate of 4950200","37.0863700000",37.08637,"-113.5566200000",-113.55662,"OK","15010008","UTAHDWQ_WQX-4950300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0863700000","-113.5566200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950300-0620-4-C/results/970093805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12204","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-20","10:15:00","MST","2022-06-20 17:15:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093839","UTAHDWQ_WQX-WLA2022-4950300-0620-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R SE OF ST GEORGE @ CR XING Replicate of 4950200","River/Stream","Replicate of 4950200","37.0863700000",37.08637,"-113.5566200000",-113.55662,"OK","15010008","UTAHDWQ_WQX-4950300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.0863700000","-113.5566200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950300-0620-4-C/results/970093839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12205","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","18:45:00","MST","2022-06-15 01:45:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093857","UTAHDWQ_WQX-WLA2022-4950320-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT HWY 9 XING W OF HURRICANE","River/Stream",NA,"37.1627600000",37.16276,"-113.3955000000",-113.3955,"OK","15010008","UTAHDWQ_WQX-4950320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1627600000","-113.3955000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950320-0614-4-C/results/970093857/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12206","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","18:45:00","MST","2022-06-15 01:45:00",NA,"0.557",557,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093904","UTAHDWQ_WQX-WLA2022-4950320-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT HWY 9 XING W OF HURRICANE","River/Stream",NA,"37.1627600000",37.16276,"-113.3955000000",-113.3955,"OK","15010008","UTAHDWQ_WQX-4950320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1627600000","-113.3955000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950320-0614-4-C/results/970093904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12207","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","10:15:00","MST","2022-06-15 17:15:00",NA,"0.509",509,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093925","UTAHDWQ_WQX-WLA2022-4950320-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT HWY 9 XING W OF HURRICANE","River/Stream",NA,"37.1627600000",37.16276,"-113.3955000000",-113.3955,"OK","15010008","UTAHDWQ_WQX-4950320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1627600000","-113.3955000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950320-0615-4-C/results/970093925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12208","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","10:15:00","MST","2022-06-15 17:15:00",NA,"0.525",525,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093950","UTAHDWQ_WQX-WLA2022-4950320-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT HWY 9 XING W OF HURRICANE","River/Stream",NA,"37.1627600000",37.16276,"-113.3955000000",-113.3955,"OK","15010008","UTAHDWQ_WQX-4950320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1627600000","-113.3955000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950320-0615-4-C/results/970093950/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12209","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","19:00:00","MST","2022-06-15 02:00:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093966","UTAHDWQ_WQX-WLA2022-4950321-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT HWY 9 XING W OF HURRICANE Replicate of 4950320","River/Stream","Replicate of 4950320","37.1627600000",37.16276,"-113.3955000000",-113.3955,"OK","15010008","UTAHDWQ_WQX-4950321",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1627600000","-113.3955000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950321-0614-4-C/results/970093966/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12210","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","19:00:00","MST","2022-06-15 02:00:00",NA,"0.577",577,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970093980","UTAHDWQ_WQX-WLA2022-4950321-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT HWY 9 XING W OF HURRICANE Replicate of 4950320","River/Stream","Replicate of 4950320","37.1627600000",37.16276,"-113.3955000000",-113.3955,"OK","15010008","UTAHDWQ_WQX-4950321",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1627600000","-113.3955000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950321-0614-4-C/results/970093980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12211","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","10:30:00","MST","2022-06-15 17:30:00",NA,"0.472",472,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094044","UTAHDWQ_WQX-WLA2022-4950321-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT HWY 9 XING W OF HURRICANE Replicate of 4950320","River/Stream","Replicate of 4950320","37.1627600000",37.16276,"-113.3955000000",-113.3955,"OK","15010008","UTAHDWQ_WQX-4950321",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1627600000","-113.3955000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950321-0615-4-C/results/970094044/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12212","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","10:30:00","MST","2022-06-15 17:30:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094057","UTAHDWQ_WQX-WLA2022-4950321-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT HWY 9 XING W OF HURRICANE Replicate of 4950320","River/Stream","Replicate of 4950320","37.1627600000",37.16276,"-113.3955000000",-113.3955,"OK","15010008","UTAHDWQ_WQX-4950321",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1627600000","-113.3955000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950321-0615-4-C/results/970094057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12213","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","17:45:00","MST","2022-06-15 00:45:00",NA,"0.369",369,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094073","UTAHDWQ_WQX-WLA2022-4950418-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Interstate Rock Products pond outlet to Virgin River","Facility Other",NA,"37.1754200000",37.17542,"-113.3778900000",-113.37789,"OK","15010008","UTAHDWQ_WQX-4950418",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1754200000","-113.3778900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950418-0614-4-C/results/970094073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12214","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","17:45:00","MST","2022-06-15 00:45:00",NA,"0.33",330,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094074","UTAHDWQ_WQX-WLA2022-4950418-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Interstate Rock Products pond outlet to Virgin River","Facility Other",NA,"37.1754200000",37.17542,"-113.3778900000",-113.37789,"OK","15010008","UTAHDWQ_WQX-4950418",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1754200000","-113.3778900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950418-0614-4-C/results/970094074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12215","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","11:45:00","MST","2022-06-15 18:45:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094122","UTAHDWQ_WQX-WLA2022-4950418-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Interstate Rock Products pond outlet to Virgin River","Facility Other",NA,"37.1754200000",37.17542,"-113.3778900000",-113.37789,"OK","15010008","UTAHDWQ_WQX-4950418",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1754200000","-113.3778900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950418-0615-4-C/results/970094122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12216","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","11:45:00","MST","2022-06-15 18:45:00",NA,"0.327",327,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094134","UTAHDWQ_WQX-WLA2022-4950418-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Interstate Rock Products pond outlet to Virgin River","Facility Other",NA,"37.1754200000",37.17542,"-113.3778900000",-113.37789,"OK","15010008","UTAHDWQ_WQX-4950418",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1754200000","-113.3778900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950418-0615-4-C/results/970094134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12217","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","11:00:00","MST","2022-06-14 18:00:00",NA,"0.628",628,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094182","UTAHDWQ_WQX-WLA2022-4950422-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.3mi BL confl w/Grapevine Wash at Stormont Mill homestead","River/Stream",NA,"37.1920100000",37.19201,"-113.3529200000",-113.35292,"OK","15010008","UTAHDWQ_WQX-4950422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1920100000","-113.3529200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950422-0614-4-C/results/970094182/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12218","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","11:00:00","MST","2022-06-14 18:00:00",NA,"0.557",557,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094188","UTAHDWQ_WQX-WLA2022-4950422-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.3mi BL confl w/Grapevine Wash at Stormont Mill homestead","River/Stream",NA,"37.1920100000",37.19201,"-113.3529200000",-113.35292,"OK","15010008","UTAHDWQ_WQX-4950422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1920100000","-113.3529200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950422-0614-4-C/results/970094188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12219","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","14:30:00","MST","2022-06-16 21:30:00",NA,"0.498",498,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094247","UTAHDWQ_WQX-WLA2022-4950422-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.3mi BL confl w/Grapevine Wash at Stormont Mill homestead","River/Stream",NA,"37.1920100000",37.19201,"-113.3529200000",-113.35292,"OK","15010008","UTAHDWQ_WQX-4950422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1920100000","-113.3529200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950422-0616-4-C/results/970094247/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12220","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","14:30:00","MST","2022-06-16 21:30:00",NA,"0.517",517,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094257","UTAHDWQ_WQX-WLA2022-4950422-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.3mi BL confl w/Grapevine Wash at Stormont Mill homestead","River/Stream",NA,"37.1920100000",37.19201,"-113.3529200000",-113.35292,"OK","15010008","UTAHDWQ_WQX-4950422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1920100000","-113.3529200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950422-0616-4-C/results/970094257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12221","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","10:40:00","MST","2022-06-13 17:40:00",NA,"0.434",434,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094303","UTAHDWQ_WQX-WLA2022-4950770-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","LA VERKIN CK AT U17 XING","River/Stream",NA,"37.2197000000",37.2197,"-113.2760000000",-113.276,"OK","15010008","UTAHDWQ_WQX-4950770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2197000000","-113.2760000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950770-0613-4-C/results/970094303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12222","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","10:40:00","MST","2022-06-13 17:40:00",NA,"0.4",400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094316","UTAHDWQ_WQX-WLA2022-4950770-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","LA VERKIN CK AT U17 XING","River/Stream",NA,"37.2197000000",37.2197,"-113.2760000000",-113.276,"OK","15010008","UTAHDWQ_WQX-4950770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2197000000","-113.2760000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950770-0613-4-C/results/970094316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12223","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","12:30:00","MST","2022-06-15 19:30:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094369","UTAHDWQ_WQX-WLA2022-4950770-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","LA VERKIN CK AT U17 XING","River/Stream",NA,"37.2197000000",37.2197,"-113.2760000000",-113.276,"OK","15010008","UTAHDWQ_WQX-4950770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2197000000","-113.2760000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950770-0615-4-C/results/970094369/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12224","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","12:30:00","MST","2022-06-15 19:30:00",NA,"0.356",356,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094382","UTAHDWQ_WQX-WLA2022-4950770-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","LA VERKIN CK AT U17 XING","River/Stream",NA,"37.2197000000",37.2197,"-113.2760000000",-113.276,"OK","15010008","UTAHDWQ_WQX-4950770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2197000000","-113.2760000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950770-0615-4-C/results/970094382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12225","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-13","12:05:00","MST","2022-04-13 19:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094392","UTAHDWQ_WQX-NPSETAL220410-4950800-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4950800-0413-4-C/results/970094392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12226","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-13","12:05:00","MST","2022-04-13 19:05:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094397","UTAHDWQ_WQX-NPSETAL220410-4950800-0413-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4950800-0413-4-C/results/970094397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14540","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-08","11:30:00","MST","2022-05-08 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094418","UTAHDWQ_WQX-NPSETAL220506-4950800-0508-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4950800-0508-4-C/results/970094418/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12228","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-08","11:30:00","MST","2022-05-08 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094431","UTAHDWQ_WQX-NPSETAL220506-4950800-0508-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4950800-0508-4-C/results/970094431/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12229","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-10","10:50:00","MST","2022-06-10 17:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094446","UTAHDWQ_WQX-NPSETAL220603-4950800-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4950800-0610-4-C/results/970094446/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14528","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-10","10:50:00","MST","2022-06-10 17:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094447","UTAHDWQ_WQX-NPSETAL220603-4950800-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4950800-0610-4-C/results/970094447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12231","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-08","11:30:00","MST","2022-07-08 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094466","UTAHDWQ_WQX-NPSETAL220707-4950800-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4950800-0708-4-C/results/970094466/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12232","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-08","11:30:00","MST","2022-07-08 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094478","UTAHDWQ_WQX-NPSETAL220707-4950800-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4950800-0708-4-C/results/970094478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12233","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-09","10:30:00","MST","2022-08-09 17:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094489","UTAHDWQ_WQX-NPSETAL220808-4950800-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4950800-0809-4-C/results/970094489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12234","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-09","10:30:00","MST","2022-08-09 17:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094496","UTAHDWQ_WQX-NPSETAL220808-4950800-0809-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4950800-0809-4-C/results/970094496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12235","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-02","11:30:00","MST","2022-09-02 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094500","UTAHDWQ_WQX-NPSETAL220901-4950800-0902-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4950800-0902-4-C/results/970094500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12236","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-02","11:30:00","MST","2022-09-02 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094514","UTAHDWQ_WQX-NPSETAL220901-4950800-0902-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","La Verkin Ck at Lee Pass Trail","River/Stream",NA,"37.4072000000",37.4072,"-113.1757800000",-113.17578,"OK","15010008","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.4072000000","-113.1757800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4950800-0902-4-C/results/970094514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12237","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","08:55:00","MST","2022-06-13 15:55:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094533","UTAHDWQ_WQX-WLA2022-4950807-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.4 mile BL Powerplant BL SR9","River/Stream",NA,"37.1974100000",37.19741,"-113.2853800000",-113.28538,"OK","15010008","UTAHDWQ_WQX-4950807",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1974100000","-113.2853800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950807-0613-4-C/results/970094533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12238","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","08:55:00","MST","2022-06-13 15:55:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094551","UTAHDWQ_WQX-WLA2022-4950807-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.4 mile BL Powerplant BL SR9","River/Stream",NA,"37.1974100000",37.19741,"-113.2853800000",-113.28538,"OK","15010008","UTAHDWQ_WQX-4950807",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1974100000","-113.2853800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950807-0613-4-C/results/970094551/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12239","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","13:00:00","MST","2022-06-15 20:00:00",NA,"0.519",519,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094581","UTAHDWQ_WQX-WLA2022-4950807-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.4 mile BL Powerplant BL SR9","River/Stream",NA,"37.1974100000",37.19741,"-113.2853800000",-113.28538,"OK","15010008","UTAHDWQ_WQX-4950807",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1974100000","-113.2853800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950807-0615-4-C/results/970094581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12240","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","13:00:00","MST","2022-06-15 20:00:00",NA,"0.578",578,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094599","UTAHDWQ_WQX-WLA2022-4950807-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.4 mile BL Powerplant BL SR9","River/Stream",NA,"37.1974100000",37.19741,"-113.2853800000",-113.28538,"OK","15010008","UTAHDWQ_WQX-4950807",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1974100000","-113.2853800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950807-0615-4-C/results/970094599/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12241","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","11:45:00","MST","2022-06-13 18:45:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094630","UTAHDWQ_WQX-WLA2022-4950812-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Pah Tempe Hot Springs Outfall to Virgin River","Spring",NA,"37.1885300000",37.18853,"-113.2691300000",-113.26913,"OK","15010008","UTAHDWQ_WQX-4950812",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1885300000","-113.2691300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950812-0613-4-C/results/970094630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12242","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","11:45:00","MST","2022-06-13 18:45:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094650","UTAHDWQ_WQX-WLA2022-4950812-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Pah Tempe Hot Springs Outfall to Virgin River","Spring",NA,"37.1885300000",37.18853,"-113.2691300000",-113.26913,"OK","15010008","UTAHDWQ_WQX-4950812",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1885300000","-113.2691300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950812-0613-4-C/results/970094650/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12243","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","13:30:00","MST","2022-06-15 20:30:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094677","UTAHDWQ_WQX-WLA2022-4950812-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Pah Tempe Hot Springs Outfall to Virgin River","Spring",NA,"37.1885300000",37.18853,"-113.2691300000",-113.26913,"OK","15010008","UTAHDWQ_WQX-4950812",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1885300000","-113.2691300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950812-0615-4-C/results/970094677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12244","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","13:30:00","MST","2022-06-15 20:30:00",NA,"1.41",1410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094719","UTAHDWQ_WQX-WLA2022-4950812-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Pah Tempe Hot Springs Outfall to Virgin River","Spring",NA,"37.1885300000",37.18853,"-113.2691300000",-113.26913,"OK","15010008","UTAHDWQ_WQX-4950812",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1885300000","-113.2691300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950812-0615-4-C/results/970094719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12245","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","14:30:00","MST","2022-06-13 21:30:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094738","UTAHDWQ_WQX-WLA2022-4950814-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River below Quail Creek Diversion Structure","River/Stream",NA,"37.1991200000",37.19912,"-113.2348500000",-113.23485,"OK","15010008","UTAHDWQ_WQX-4950814",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1991200000","-113.2348500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950814-0613-4-C/results/970094738/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12246","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-13","14:30:00","MST","2022-06-13 21:30:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094748","UTAHDWQ_WQX-WLA2022-4950814-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River below Quail Creek Diversion Structure","River/Stream",NA,"37.1991200000",37.19912,"-113.2348500000",-113.23485,"OK","15010008","UTAHDWQ_WQX-4950814",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1991200000","-113.2348500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950814-0613-4-C/results/970094748/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12247","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","15:00:00","MST","2022-06-15 22:00:00",NA,"0.393",393,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094790","UTAHDWQ_WQX-WLA2022-4950814-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River below Quail Creek Diversion Structure","River/Stream",NA,"37.1991200000",37.19912,"-113.2348500000",-113.23485,"OK","15010008","UTAHDWQ_WQX-4950814",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1991200000","-113.2348500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950814-0615-4-C/results/970094790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12248","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","15:00:00","MST","2022-06-15 22:00:00",NA,"0.321",321,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094793","UTAHDWQ_WQX-WLA2022-4950814-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River below Quail Creek Diversion Structure","River/Stream",NA,"37.1991200000",37.19912,"-113.2348500000",-113.23485,"OK","15010008","UTAHDWQ_WQX-4950814",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1991200000","-113.2348500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950814-0615-4-C/results/970094793/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12249","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","16:45:00","MST","2022-06-14 23:45:00",NA,"0.416",416,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094875","UTAHDWQ_WQX-WLA2022-4950816-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.4 mi AB Sheep Bridge Rd crossing at Virgin Falls Park","River/Stream",NA,"37.1980200000",37.19802,"-113.2073500000",-113.20735,"OK","15010008","UTAHDWQ_WQX-4950816",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1980200000","-113.2073500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950816-0614-4-C/results/970094875/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12250","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","16:45:00","MST","2022-06-14 23:45:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094886","UTAHDWQ_WQX-WLA2022-4950816-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.4 mi AB Sheep Bridge Rd crossing at Virgin Falls Park","River/Stream",NA,"37.1980200000",37.19802,"-113.2073500000",-113.20735,"OK","15010008","UTAHDWQ_WQX-4950816",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1980200000","-113.2073500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950816-0614-4-C/results/970094886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12251","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","15:45:00","MST","2022-06-15 22:45:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094911","UTAHDWQ_WQX-WLA2022-4950816-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.4 mi AB Sheep Bridge Rd crossing at Virgin Falls Park","River/Stream",NA,"37.1980200000",37.19802,"-113.2073500000",-113.20735,"OK","15010008","UTAHDWQ_WQX-4950816",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1980200000","-113.2073500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950816-0615-4-C/results/970094911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12252","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-15","15:45:00","MST","2022-06-15 22:45:00",NA,"0.438",438,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094923","UTAHDWQ_WQX-WLA2022-4950816-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River 0.4 mi AB Sheep Bridge Rd crossing at Virgin Falls Park","River/Stream",NA,"37.1980200000",37.19802,"-113.2073500000",-113.20735,"OK","15010008","UTAHDWQ_WQX-4950816",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1980200000","-113.2073500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950816-0615-4-C/results/970094923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12253","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","16:30:00","MST","2022-06-14 23:30:00",NA,"0.466",466,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094979","UTAHDWQ_WQX-WLA2022-4950850-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R 1 MI E OF VIRGIN","River/Stream",NA,"37.2037600000",37.20376,"-113.1800800000",-113.18008,"OK","15010008","UTAHDWQ_WQX-4950850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2037600000","-113.1800800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950850-0614-4-C/results/970094979/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12254","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","16:30:00","MST","2022-06-14 23:30:00",NA,"0.404",404,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970094984","UTAHDWQ_WQX-WLA2022-4950850-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R 1 MI E OF VIRGIN","River/Stream",NA,"37.2037600000",37.20376,"-113.1800800000",-113.18008,"OK","15010008","UTAHDWQ_WQX-4950850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2037600000","-113.1800800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950850-0614-4-C/results/970094984/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12255","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","11:00:00","MST","2022-06-16 18:00:00",NA,"0.371",371,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095025","UTAHDWQ_WQX-WLA2022-4950850-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R 1 MI E OF VIRGIN","River/Stream",NA,"37.2037600000",37.20376,"-113.1800800000",-113.18008,"OK","15010008","UTAHDWQ_WQX-4950850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2037600000","-113.1800800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950850-0616-4-C/results/970095025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12256","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","11:00:00","MST","2022-06-16 18:00:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095045","UTAHDWQ_WQX-WLA2022-4950850-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R 1 MI E OF VIRGIN","River/Stream",NA,"37.2037600000",37.20376,"-113.1800800000",-113.18008,"OK","15010008","UTAHDWQ_WQX-4950850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2037600000","-113.1800800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950850-0616-4-C/results/970095045/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12257","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","16:00:00","MST","2022-06-14 23:00:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095050","UTAHDWQ_WQX-WLA2022-4950890-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","NORTH CK AB CNFL/ VIRGIN R","River/Stream",NA,"37.2027600000",37.20276,"-113.1752200000",-113.17522,"OK","15010008","UTAHDWQ_WQX-4950890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2027600000","-113.1752200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950890-0614-4-C/results/970095050/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12258","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","16:00:00","MST","2022-06-14 23:00:00",NA,"0.36",360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095066","UTAHDWQ_WQX-WLA2022-4950890-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","NORTH CK AB CNFL/ VIRGIN R","River/Stream",NA,"37.2027600000",37.20276,"-113.1752200000",-113.17522,"OK","15010008","UTAHDWQ_WQX-4950890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2027600000","-113.1752200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950890-0614-4-C/results/970095066/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12259","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","10:45:00","MST","2022-06-16 17:45:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095102","UTAHDWQ_WQX-WLA2022-4950890-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","NORTH CK AB CNFL/ VIRGIN R","River/Stream",NA,"37.2027600000",37.20276,"-113.1752200000",-113.17522,"OK","15010008","UTAHDWQ_WQX-4950890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2027600000","-113.1752200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950890-0616-4-C/results/970095102/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12260","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","10:45:00","MST","2022-06-16 17:45:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095103","UTAHDWQ_WQX-WLA2022-4950890-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","NORTH CK AB CNFL/ VIRGIN R","River/Stream",NA,"37.2027600000",37.20276,"-113.1752200000",-113.17522,"OK","15010008","UTAHDWQ_WQX-4950890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2027600000","-113.1752200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950890-0616-4-C/results/970095103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12261","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","15:30:00","MST","2022-06-14 22:30:00",NA,"0.458",458,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095159","UTAHDWQ_WQX-WLA2022-4950892-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at 2020 E crossing near Virgin","River/Stream",NA,"37.1936200000",37.19362,"-113.1522500000",-113.15225,"OK","15010008","UTAHDWQ_WQX-4950892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1936200000","-113.1522500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950892-0614-4-C/results/970095159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12262","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","15:30:00","MST","2022-06-14 22:30:00",NA,"0.429",429,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095177","UTAHDWQ_WQX-WLA2022-4950892-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at 2020 E crossing near Virgin","River/Stream",NA,"37.1936200000",37.19362,"-113.1522500000",-113.15225,"OK","15010008","UTAHDWQ_WQX-4950892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1936200000","-113.1522500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950892-0614-4-C/results/970095177/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12263","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","10:15:00","MST","2022-06-16 17:15:00",NA,"0.397",397,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095230","UTAHDWQ_WQX-WLA2022-4950892-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at 2020 E crossing near Virgin","River/Stream",NA,"37.1936200000",37.19362,"-113.1522500000",-113.15225,"OK","15010008","UTAHDWQ_WQX-4950892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1936200000","-113.1522500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950892-0616-4-C/results/970095230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12264","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","10:15:00","MST","2022-06-16 17:15:00",NA,"0.414",414,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095243","UTAHDWQ_WQX-WLA2022-4950892-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","Virgin River at 2020 E crossing near Virgin","River/Stream",NA,"37.1936200000",37.19362,"-113.1522500000",-113.15225,"OK","15010008","UTAHDWQ_WQX-4950892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1936200000","-113.1522500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950892-0616-4-C/results/970095243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12265","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","15:40:00","MST","2022-06-14 22:40:00",NA,"0.497",497,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095264","UTAHDWQ_WQX-WLA2022-4950900-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT CR XING IN ROCKVILLE","River/Stream",NA,"37.1588100000",37.15881,"-113.0376300000",-113.03763,"OK","15010008","UTAHDWQ_WQX-4950900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1588100000","-113.0376300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950900-0614-4-C/results/970095264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12266","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","15:40:00","MST","2022-06-14 22:40:00",NA,"0.465",465,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095278","UTAHDWQ_WQX-WLA2022-4950900-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT CR XING IN ROCKVILLE","River/Stream",NA,"37.1588100000",37.15881,"-113.0376300000",-113.03763,"OK","15010008","UTAHDWQ_WQX-4950900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1588100000","-113.0376300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950900-0614-4-C/results/970095278/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12267","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","09:30:00","MST","2022-06-16 16:30:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095342","UTAHDWQ_WQX-WLA2022-4950900-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT CR XING IN ROCKVILLE","River/Stream",NA,"37.1588100000",37.15881,"-113.0376300000",-113.03763,"OK","15010008","UTAHDWQ_WQX-4950900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1588100000","-113.0376300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950900-0616-4-C/results/970095342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12268","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","09:30:00","MST","2022-06-16 16:30:00",NA,"0.501",501,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095362","UTAHDWQ_WQX-WLA2022-4950900-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","053","VIRGIN R AT CR XING IN ROCKVILLE","River/Stream",NA,"37.1588100000",37.15881,"-113.0376300000",-113.03763,"OK","15010008","UTAHDWQ_WQX-4950900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1588100000","-113.0376300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950900-0616-4-C/results/970095362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12269","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-14","10:57:00","MST","2022-04-14 17:57:00",NA,"0.643",643,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095374","UTAHDWQ_WQX-NPSETAL220410-4950920-0414-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4950920-0414-4-C/results/970095374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12270","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-14","10:57:00","MST","2022-04-14 17:57:00",NA,"0.594",594,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095393","UTAHDWQ_WQX-NPSETAL220410-4950920-0414-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4950920-0414-4-C/results/970095393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12271","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-06","14:20:00","MST","2022-05-06 21:20:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095396","UTAHDWQ_WQX-NPSETAL220506-4950920-0506-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4950920-0506-4-C/results/970095396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12272","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-06","14:20:00","MST","2022-05-06 21:20:00",NA,"0.596",596,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095400","UTAHDWQ_WQX-NPSETAL220506-4950920-0506-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4950920-0506-4-C/results/970095400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12273","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-10","16:30:00","MST","2022-06-10 23:30:00",NA,"0.547",547,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095424","UTAHDWQ_WQX-NPSETAL220603-4950920-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4950920-0610-4-C/results/970095424/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12274","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-10","16:30:00","MST","2022-06-10 23:30:00",NA,"0.548",548,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095428","UTAHDWQ_WQX-NPSETAL220603-4950920-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:59",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4950920-0610-4-C/results/970095428/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12275","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-08","17:35:00","MST","2022-07-09 00:35:00",NA,"0.465",465,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095437","UTAHDWQ_WQX-NPSETAL220707-4950920-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:59",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4950920-0708-4-C/results/970095437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12276","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-08","17:35:00","MST","2022-07-09 00:35:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095441","UTAHDWQ_WQX-NPSETAL220707-4950920-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:29:59",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4950920-0708-4-C/results/970095441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12277","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-10","09:30:00","MST","2022-08-10 16:30:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095465","UTAHDWQ_WQX-NPSETAL220808-4950920-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:00",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4950920-0810-4-C/results/970095465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12278","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-10","09:30:00","MST","2022-08-10 16:30:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095476","UTAHDWQ_WQX-NPSETAL220808-4950920-0810-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:01",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4950920-0810-4-C/results/970095476/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12279","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-02","17:15:00","MST","2022-09-03 00:15:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095488","UTAHDWQ_WQX-NPSETAL220901-4950920-0902-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:01",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4950920-0902-4-C/results/970095488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12280","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-02","17:15:00","MST","2022-09-03 00:15:00",NA,"0.479",479,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095494","UTAHDWQ_WQX-NPSETAL220901-4950920-0902-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","053","North Ck at Planned Gage in Park","River/Stream",NA,"37.2616900000",37.26169,"-113.1071900000",-113.10719,"OK","15010008","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:02",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.2616900000","-113.1071900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4950920-0902-4-C/results/970095494/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12281","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-12","12:35:00","MST","2022-04-12 19:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095510","UTAHDWQ_WQX-NPSETAL220410-4951265-0412-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:02",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951265-0412-4-C/results/970095510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12282","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-12","12:35:00","MST","2022-04-12 19:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095515","UTAHDWQ_WQX-NPSETAL220410-4951265-0412-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:02",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951265-0412-4-C/results/970095515/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12283","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-07","11:15:00","MST","2022-05-07 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095529","UTAHDWQ_WQX-NPSETAL220506-4951265-0507-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:03",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951265-0507-4-C/results/970095529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12284","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-07","11:15:00","MST","2022-05-07 18:15:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095530","UTAHDWQ_WQX-NPSETAL220506-4951265-0507-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:03",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951265-0507-4-C/results/970095530/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12285","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","14:30:00","MST","2022-06-09 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095547","UTAHDWQ_WQX-NPSETAL220603-4951265-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:04",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951265-0609-4-C/results/970095547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14473","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","14:30:00","MST","2022-06-09 21:30:00",NA,"0.215",215,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095554","UTAHDWQ_WQX-NPSETAL220603-4951265-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:04",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951265-0609-4-C/results/970095554/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12287","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-07","15:15:00","MST","2022-07-07 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095570","UTAHDWQ_WQX-NPSETAL220707-4951265-0707-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:05",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951265-0707-4-C/results/970095570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12288","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-07","15:15:00","MST","2022-07-07 22:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095582","UTAHDWQ_WQX-NPSETAL220707-4951265-0707-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:05",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951265-0707-4-C/results/970095582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14476","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","13:35:00","MST","2022-08-08 20:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095600","UTAHDWQ_WQX-NPSETAL220808-4951265-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:06",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951265-0808-4-C/results/970095600/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12290","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","13:35:00","MST","2022-08-08 20:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095603","UTAHDWQ_WQX-NPSETAL220808-4951265-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:06",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951265-0808-4-C/results/970095603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12291","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-01","13:30:00","MST","2022-09-01 20:30:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095617","UTAHDWQ_WQX-NPSETAL220901-4951265-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:06",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951265-0901-4-C/results/970095617/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14479","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-01","13:30:00","MST","2022-09-01 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095618","UTAHDWQ_WQX-NPSETAL220901-4951265-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:06",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951265-0901-4-C/results/970095618/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12293","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-12","12:50:00","MST","2022-04-12 19:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095634","UTAHDWQ_WQX-NPSETAL220410-4951266-0412-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:07",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951266-0412-4-C/results/970095634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12294","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-12","12:50:00","MST","2022-04-12 19:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095652","UTAHDWQ_WQX-NPSETAL220410-4951266-0412-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:08",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951266-0412-4-C/results/970095652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14118","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","14:35:00","MST","2022-06-09 21:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095662","UTAHDWQ_WQX-NPSETAL220603-4951266-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:08",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951266-0609-4-C/results/970095662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12296","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","14:35:00","MST","2022-06-09 21:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095668","UTAHDWQ_WQX-NPSETAL220603-4951266-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:09",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951266-0609-4-C/results/970095668/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12297","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-08","13:40:00","MST","2022-08-08 20:40:00",NA,"0.161",161,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095681","UTAHDWQ_WQX-NPSETAL220808-4951266-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:09",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951266-0808-4-C/results/970095681/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12298","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-08","13:40:00","MST","2022-08-08 20:40:00",NA,"0.203",203,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095684","UTAHDWQ_WQX-NPSETAL220808-4951266-0808-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","37.3709800000",37.37098,"-112.8827700000",-112.88277,"OK","15010008","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:09",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.3709800000","-112.8827700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951266-0808-4-C/results/970095684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12299","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-13","15:05:00","MST","2022-05-13 22:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095703","UTAHDWQ_WQX-BLMGSE220512-4951766-0513-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4951766-0513-4-C/results/970095703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12300","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-13","15:05:00","MST","2022-05-13 22:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095719","UTAHDWQ_WQX-BLMGSE220512-4951766-0513-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4951766-0513-4-C/results/970095719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12301","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-28","09:00:00","MST","2022-06-28 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095726","UTAHDWQ_WQX-BLMGSE220626-4951766-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4951766-0628-4-C/results/970095726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12302","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-28","09:00:00","MST","2022-06-28 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095730","UTAHDWQ_WQX-BLMGSE220626-4951766-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4951766-0628-4-C/results/970095730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12303","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-17","10:08:00","MST","2022-07-17 17:08:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095752","UTAHDWQ_WQX-BLMGSE220715-4951766-0717-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4951766-0717-4-C/results/970095752/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12304","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-17","10:08:00","MST","2022-07-17 17:08:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095754","UTAHDWQ_WQX-BLMGSE220715-4951766-0717-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4951766-0717-4-C/results/970095754/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12305","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","18:45:00","MST","2022-08-02 01:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095780","UTAHDWQ_WQX-BLMGSE220801-4951766-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4951766-0801-4-C/results/970095780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12306","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","18:45:00","MST","2022-08-02 01:45:00",NA,"0.313",313,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095787","UTAHDWQ_WQX-BLMGSE220801-4951766-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4951766-0801-4-C/results/970095787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12307","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","14:15:00","MST","2022-09-28 21:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095806","UTAHDWQ_WQX-BLMGSE220927-4951766-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management;Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4951766-0928-4-C/results/970095806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12308","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","14:15:00","MST","2022-09-28 21:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095808","UTAHDWQ_WQX-BLMGSE220927-4951766-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment blank GSENM field crew","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management;Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4951766-0928-4-C/results/970095808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12309","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-12","13:25:00","MST","2022-05-12 20:25:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095831","UTAHDWQ_WQX-BLMGSE220512-4951850-0512-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT US89 XING","River/Stream",NA,"37.1074900000",37.10749,"-111.9068500000",-111.90685,"OK","14070007","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1074900000","-111.9068500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4951850-0512-4-C/results/970095831/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12310","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-16","08:44:00","MST","2022-07-16 15:44:00",NA,"0.808",808,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095842","UTAHDWQ_WQX-BLMGSE220715-4951850-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT US89 XING","River/Stream",NA,"37.1074900000",37.10749,"-111.9068500000",-111.90685,"OK","14070007","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management;National Park Service",NA,"37.1074900000","-111.9068500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4951850-0716-4-C/results/970095842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12311","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","11:27:00","MST","2022-08-01 18:27:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095844","UTAHDWQ_WQX-BLMGSE220801-4951850-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT US89 XING","River/Stream",NA,"37.1074900000",37.10749,"-111.9068500000",-111.90685,"OK","14070007","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1074900000","-111.9068500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4951850-0801-4-C/results/970095844/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12312","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","12:52:00","MST","2022-09-28 19:52:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095851","UTAHDWQ_WQX-BLMGSE220927-4951850-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT US89 XING","River/Stream",NA,"37.1074900000",37.10749,"-111.9068500000",-111.90685,"OK","14070007","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Bureau of Land Management",NA,"37.1074900000","-111.9068500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4951850-0928-4-C/results/970095851/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12313","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-10","14:25:00","MST","2022-04-10 21:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095857","UTAHDWQ_WQX-NPSETAL220410-4951855-0410-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:16",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951855-0410-4-C/results/970095857/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12314","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-10","14:25:00","MST","2022-04-10 21:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095876","UTAHDWQ_WQX-NPSETAL220410-4951855-0410-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:17",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951855-0410-4-C/results/970095876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12315","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","15:00:00","MST","2022-05-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095893","UTAHDWQ_WQX-NPSETAL220506-4951855-0516-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:17",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951855-0516-4-C/results/970095893/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12316","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","15:00:00","MST","2022-05-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095896","UTAHDWQ_WQX-NPSETAL220506-4951855-0516-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:17",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951855-0516-4-C/results/970095896/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12317","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-06","14:30:00","MST","2022-06-06 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095905","UTAHDWQ_WQX-NPSETAL220603-4951855-0606-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:18",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951855-0606-4-C/results/970095905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12318","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-06","14:30:00","MST","2022-06-06 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095919","UTAHDWQ_WQX-NPSETAL220603-4951855-0606-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:18",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951855-0606-4-C/results/970095919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12319","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:00:00","MST","2022-07-19 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095939","UTAHDWQ_WQX-NPSETAL220707-4951855-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:19",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951855-0719-4-C/results/970095939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12320","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","11:00:00","MST","2022-07-19 18:00:00",NA,"0.167",167,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095943","UTAHDWQ_WQX-NPSETAL220707-4951855-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:19",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951855-0719-4-C/results/970095943/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12321","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-28","12:45:00","MST","2022-08-28 19:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095959","UTAHDWQ_WQX-NPSETAL220808-4951855-0828-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:19",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951855-0828-4-C/results/970095959/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12322","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-28","12:45:00","MST","2022-08-28 19:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095963","UTAHDWQ_WQX-NPSETAL220808-4951855-0828-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:19",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951855-0828-4-C/results/970095963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12323","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","14:45:00","MST","2022-09-19 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095973","UTAHDWQ_WQX-NPSETAL220901-4951855-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951855-0919-4-C/results/970095973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12324","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","14:45:00","MST","2022-09-19 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095976","UTAHDWQ_WQX-NPSETAL220901-4951855-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5713700000",37.57137,"-112.2010300000",-112.20103,"OK","14070007","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:20",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5713700000","-112.2010300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951855-0919-4-C/results/970095976/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12325","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","10:40:00","MST","2022-04-11 17:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970095992","UTAHDWQ_WQX-NPSETAL220410-4951857-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951857-0411-4-C/results/970095992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12326","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","10:40:00","MST","2022-04-11 17:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096006","UTAHDWQ_WQX-NPSETAL220410-4951857-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:21",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951857-0411-4-C/results/970096006/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12327","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-16","12:00:00","MST","2022-05-16 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096023","UTAHDWQ_WQX-NPSETAL220506-4951857-0516-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951857-0516-4-C/results/970096023/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12328","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-16","12:00:00","MST","2022-05-16 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096026","UTAHDWQ_WQX-NPSETAL220506-4951857-0516-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951857-0516-4-C/results/970096026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12329","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-06","12:00:00","MST","2022-06-06 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096048","UTAHDWQ_WQX-NPSETAL220603-4951857-0606-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951857-0606-4-C/results/970096048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12330","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-06","12:00:00","MST","2022-06-06 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096053","UTAHDWQ_WQX-NPSETAL220603-4951857-0606-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:22",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951857-0606-4-C/results/970096053/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12331","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-14","11:45:00","MST","2022-07-14 18:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096065","UTAHDWQ_WQX-NPSETAL220707-4951857-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951857-0714-4-C/results/970096065/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14155","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-14","11:45:00","MST","2022-07-14 18:45:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096068","UTAHDWQ_WQX-NPSETAL220707-4951857-0714-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:23",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951857-0714-4-C/results/970096068/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12333","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-25","11:00:00","MST","2022-08-25 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096098","UTAHDWQ_WQX-NPSETAL220808-4951857-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951857-0825-4-C/results/970096098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12334","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-25","11:00:00","MST","2022-08-25 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096100","UTAHDWQ_WQX-NPSETAL220808-4951857-0825-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951857-0825-4-C/results/970096100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14158","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","11:30:00","MST","2022-09-19 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096111","UTAHDWQ_WQX-NPSETAL220901-4951857-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951857-0919-4-C/results/970096111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12336","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:30:00","MST","2022-09-19 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096112","UTAHDWQ_WQX-NPSETAL220901-4951857-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"37.5744200000",37.57442,"-112.1410300000",-112.14103,"OK","14070007","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:24",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"37.5744200000","-112.1410300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951857-0919-4-C/results/970096112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12337","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","18:15:00","MST","2022-06-16 01:15:00",NA,"0.92",920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.418",0.418,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096132","UTAHDWQ_WQX-BORLP220613-4952370-0615-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","COLORADO R AB DARK CANYON","River/Stream",NA,"37.8977700000",37.89777,"-110.2051400000",-110.20514,"OK","14070001","UTAHDWQ_WQX-4952370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8977700000","-110.2051400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-4952370-0615-4-C/results/970096132/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12338","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","13:31:00","MST","2022-09-21 20:31:00",NA,"0.778",778,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096179","UTAHDWQ_WQX-BORLP220920-4952370-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","COLORADO R AB DARK CANYON","River/Stream",NA,"37.8977700000",37.89777,"-110.2051400000",-110.20514,"OK","14070001","UTAHDWQ_WQX-4952370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8977700000","-110.2051400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-4952370-0921-4-C/results/970096179/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12339","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-20","09:55:00","MST","2022-04-20 16:55:00",NA,"0.603",603,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096193","UTAHDWQ_WQX-NPSCAN220416-4952380-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4952380-0420-4-C/results/970096193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12340","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-20","09:55:00","MST","2022-04-20 16:55:00",NA,"0.874",874,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096203","UTAHDWQ_WQX-NPSCAN220416-4952380-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4952380-0420-4-C/results/970096203/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12341","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-26","17:49:00","MST","2022-05-27 00:49:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096222","UTAHDWQ_WQX-NPSCAN220524-4952380-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4952380-0526-4-C/results/970096222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12342","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-26","17:49:00","MST","2022-05-27 00:49:00",NA,"0.543",543,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096235","UTAHDWQ_WQX-NPSCAN220524-4952380-0526-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4952380-0526-4-C/results/970096235/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12343","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","09:30:00","MST","2022-06-30 16:30:00",NA,"0.477",477,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096259","UTAHDWQ_WQX-NPSCAN220629-4952380-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4952380-0630-4-C/results/970096259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12344","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","09:30:00","MST","2022-06-30 16:30:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096275","UTAHDWQ_WQX-NPSCAN220629-4952380-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4952380-0630-4-C/results/970096275/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12345","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","07:25:00","MST","2022-07-27 14:25:00",NA,"0.564",564,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096294","UTAHDWQ_WQX-NPSCAN220727-4952380-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4952380-0727-4-C/results/970096294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12346","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","07:25:00","MST","2022-07-27 14:25:00",NA,"0.599",599,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096311","UTAHDWQ_WQX-NPSCAN220727-4952380-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4952380-0727-4-C/results/970096311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12347","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","16:08:00","MST","2022-08-18 23:08:00",NA,"0.663",663,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096316","UTAHDWQ_WQX-NPSCAN220815-4952380-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:33",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4952380-0818-4-C/results/970096316/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12348","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-18","16:08:00","MST","2022-08-18 23:08:00",NA,"0.955",955,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096333","UTAHDWQ_WQX-NPSCAN220815-4952380-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Colorado River bl Brown Betty Rapid","River/Stream",NA,"38.1467700000",38.14677,"-109.9282100000",-109.92821,"OK","14070001","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:34",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1467700000","-109.9282100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4952380-0818-4-C/results/970096333/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12349","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-20","11:40:00","MST","2022-04-20 18:40:00",NA,"0.672",672,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096355","UTAHDWQ_WQX-NPSCAN220416-4952400-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:34",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4952400-0420-4-C/results/970096355/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12350","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-20","11:40:00","MST","2022-04-20 18:40:00",NA,"0.73",730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096362","UTAHDWQ_WQX-NPSCAN220416-4952400-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4952400-0420-4-C/results/970096362/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12351","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-27","08:36:00","MST","2022-05-27 15:36:00",NA,"0.506",506,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096393","UTAHDWQ_WQX-NPSCAN220524-4952400-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4952400-0527-4-C/results/970096393/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12352","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-27","08:36:00","MST","2022-05-27 15:36:00",NA,"0.566",566,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096397","UTAHDWQ_WQX-NPSCAN220524-4952400-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:35",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4952400-0527-4-C/results/970096397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12353","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-30","11:40:00","MST","2022-06-30 18:40:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096419","UTAHDWQ_WQX-NPSCAN220629-4952400-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4952400-0630-4-C/results/970096419/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12354","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-30","11:40:00","MST","2022-06-30 18:40:00",NA,"0.564",564,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096436","UTAHDWQ_WQX-NPSCAN220629-4952400-0630-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4952400-0630-4-C/results/970096436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12355","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","08:45:00","MST","2022-07-27 15:45:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096455","UTAHDWQ_WQX-NPSCAN220727-4952400-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4952400-0727-4-C/results/970096455/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12356","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","08:45:00","MST","2022-07-27 15:45:00",NA,"1.31",1310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096472","UTAHDWQ_WQX-NPSCAN220727-4952400-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4952400-0727-4-C/results/970096472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12357","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-18","15:00:00","MST","2022-08-18 22:00:00",NA,"0.674",674,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096490","UTAHDWQ_WQX-NPSCAN220815-4952400-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4952400-0818-4-C/results/970096490/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12358","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-18","15:00:00","MST","2022-08-18 22:00:00",NA,"0.666",666,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096493","UTAHDWQ_WQX-NPSCAN220815-4952400-0818-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO R AB CNFL / GREEN R","River/Stream",NA,"38.1924900000",38.19249,"-109.8845700000",-109.88457,"OK","14030005","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1924900000","-109.8845700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4952400-0818-4-C/results/970096493/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12359","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","17:25:00","MST","2022-06-15 00:25:00",NA,"0.607",607,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096535","UTAHDWQ_WQX-BORLP220613-4952940-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AB LAKE POWELL","River/Stream",NA,"37.2941600000",37.29416,"-110.4068000000",-110.4068,"OK","14080205","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2941600000","-110.4068000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-4952940-0614-4-C/results/970096535/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14507","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","14:00:00","MST","2022-09-20 21:00:00",NA,"0.974",974,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","1",1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096547","UTAHDWQ_WQX-BORLP220920-4952940-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AB LAKE POWELL","River/Stream",NA,"37.2941600000",37.29416,"-110.4068000000",-110.4068,"OK","14080205","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2941600000","-110.4068000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-4952940-0920-4-C/results/970096547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12361","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","10:15:00","MST","2022-06-14 17:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096615","UTAHDWQ_WQX-SANJUANR220614-4953000-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AT MEXICAN HAT US163 XING","River/Stream",NA,"37.1469500000",37.14695,"-109.8536700000",-109.85367,"OK","14080205","UTAHDWQ_WQX-4953000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.1469500000","-109.8536700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANJUANR220614-4953000-0614-4-C/results/970096615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12362","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","11:15:00","MST","2022-06-14 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096647","UTAHDWQ_WQX-SANJUANR220614-4953001-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Equipment Blank-Animas/San Juan Rivers Multijurisdictional Coordinated Monitoring","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4953001",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANJUANR220614-4953001-0614-4-C/results/970096647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14186","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-20","11:30:00","MST","2022-04-20 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096678","UTAHDWQ_WQX-BLMMOAB220417-4953060-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953060-0420-4-C/results/970096678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12364","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-20","11:30:00","MST","2022-04-20 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096703","UTAHDWQ_WQX-BLMMOAB220417-4953060-0420-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953060-0420-4-C/results/970096703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12365","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-20","11:00:00","MST","2022-05-20 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096717","UTAHDWQ_WQX-BLMMOAB220504-4953060-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4953060-0520-4-C/results/970096717/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12366","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-20","11:00:00","MST","2022-05-20 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096720","UTAHDWQ_WQX-BLMMOAB220504-4953060-0520-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"37.2358300000",37.23583,"-109.8142900000",-109.81429,"OK","14080205","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2358300000","-109.8142900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4953060-0520-4-C/results/970096720/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12367","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-27","11:30:00","MST","2022-04-27 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096746","UTAHDWQ_WQX-BLMMOAB220417-4953193-0427-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953193-0427-4-C/results/970096746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12368","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-27","11:30:00","MST","2022-04-27 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096756","UTAHDWQ_WQX-BLMMOAB220417-4953193-0427-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953193-0427-4-C/results/970096756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12369","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-13","13:30:00","MST","2022-05-13 20:30:00",NA,"0.196",196,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096771","UTAHDWQ_WQX-BLMMOAB220504-4953193-0513-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4953193-0513-4-C/results/970096771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12370","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-13","13:30:00","MST","2022-05-13 20:30:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096799","UTAHDWQ_WQX-BLMMOAB220504-4953193-0513-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"37.5475300000",37.54753,"-109.6781300000",-109.67813,"OK","14080201","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5475300000","-109.6781300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4953193-0513-4-C/results/970096799/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12371","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-27","12:30:00","MST","2022-04-27 19:30:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096810","UTAHDWQ_WQX-BLMMOAB220417-4953205-0427-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953205-0427-4-C/results/970096810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12372","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-27","12:30:00","MST","2022-04-27 19:30:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096829","UTAHDWQ_WQX-BLMMOAB220417-4953205-0427-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"37.5443500000",37.54435,"-109.7290300000",-109.72903,"OK","14080201","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.5443500000","-109.7290300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953205-0427-4-C/results/970096829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12373","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","11:30:00","MST","2022-06-14 18:30:00",NA,"0.173",173,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096896","UTAHDWQ_WQX-SANJUANR220614-4953250-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AT SAND ISLAND","River/Stream",NA,"37.2602800000",37.26028,"-109.6137300000",-109.61373,"OK","14080201","UTAHDWQ_WQX-4953250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.2602800000","-109.6137300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANJUANR220614-4953250-0614-4-C/results/970096896/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12374","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-13","09:36:00","MST","2022-05-13 16:36:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096925","UTAHDWQ_WQX-BLMGSE220512-4953980-0513-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4953980-0513-4-C/results/970096925/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12375","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-13","09:36:00","MST","2022-05-13 16:36:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096931","UTAHDWQ_WQX-BLMGSE220512-4953980-0513-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4953980-0513-4-C/results/970096931/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12376","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-26","17:51:00","MST","2022-06-27 00:51:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096939","UTAHDWQ_WQX-BLMGSE220626-4953980-0626-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4953980-0626-4-C/results/970096939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12377","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-26","17:51:00","MST","2022-06-27 00:51:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096941","UTAHDWQ_WQX-BLMGSE220626-4953980-0626-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4953980-0626-4-C/results/970096941/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12378","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-16","15:00:00","MST","2022-07-16 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096973","UTAHDWQ_WQX-BLMGSE220715-4953980-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4953980-0716-4-C/results/970096973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12379","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-16","15:00:00","MST","2022-07-16 22:00:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096984","UTAHDWQ_WQX-BLMGSE220715-4953980-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4953980-0716-4-C/results/970096984/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12380","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","16:42:00","MST","2022-08-01 23:42:00",NA,"0.907",907,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970096997","UTAHDWQ_WQX-BLMGSE220801-4953980-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4953980-0801-4-C/results/970096997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12381","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","16:42:00","MST","2022-08-01 23:42:00",NA,"0.865",865,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097004","UTAHDWQ_WQX-BLMGSE220801-4953980-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4953980-0801-4-C/results/970097004/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12382","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","15:35:00","MST","2022-09-27 22:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097025","UTAHDWQ_WQX-BLMGSE220927-4953980-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4953980-0927-4-C/results/970097025/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12383","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","15:35:00","MST","2022-09-27 22:35:00",NA,"0.513",513,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097034","UTAHDWQ_WQX-BLMGSE220927-4953980-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4953980-0927-4-C/results/970097034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12384","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-13","10:04:00","MST","2022-05-13 17:04:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097058","UTAHDWQ_WQX-BLMGSE220512-4953981-0513-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4953981-0513-4-C/results/970097058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12385","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-13","10:04:00","MST","2022-05-13 17:04:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097059","UTAHDWQ_WQX-BLMGSE220512-4953981-0513-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4953981-0513-4-C/results/970097059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12386","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-26","18:15:00","MST","2022-06-27 01:15:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097075","UTAHDWQ_WQX-BLMGSE220626-4953981-0626-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4953981-0626-4-C/results/970097075/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12387","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-26","18:15:00","MST","2022-06-27 01:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097091","UTAHDWQ_WQX-BLMGSE220626-4953981-0626-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4953981-0626-4-C/results/970097091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12388","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-16","15:17:00","MST","2022-07-16 22:17:00",NA,"0.194",194,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL | pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097101","UTAHDWQ_WQX-BLMGSE220715-4953981-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4953981-0716-4-C/results/970097101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12389","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-16","15:17:00","MST","2022-07-16 22:17:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097103","UTAHDWQ_WQX-BLMGSE220715-4953981-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4953981-0716-4-C/results/970097103/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12390","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","16:58:00","MST","2022-08-01 23:58:00",NA,"0.904",904,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097146","UTAHDWQ_WQX-BLMGSE220801-4953981-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4953981-0801-4-C/results/970097146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12391","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","16:58:00","MST","2022-08-01 23:58:00",NA,"0.896",896,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097150","UTAHDWQ_WQX-BLMGSE220801-4953981-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4953981-0801-4-C/results/970097150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12392","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","15:48:00","MST","2022-09-27 22:48:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097157","UTAHDWQ_WQX-BLMGSE220927-4953981-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4953981-0927-4-C/results/970097157/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12393","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","15:48:00","MST","2022-09-27 22:48:00",NA,"0.368",368,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097168","UTAHDWQ_WQX-BLMGSE220927-4953981-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","37.7647100000",37.76471,"-111.6835100000",-111.68351,"OK","14070005","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:30:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Bureau of Land Management",NA,"37.7647100000","-111.6835100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4953981-0927-4-C/results/970097168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12394","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","09:50:00","MST","2022-04-18 16:50:00",NA,"0.203",203,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097205","UTAHDWQ_WQX-NPSETAL220410-4954770-0418-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:01",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954770-0418-4-C/results/970097205/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12395","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","09:50:00","MST","2022-04-18 16:50:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097209","UTAHDWQ_WQX-NPSETAL220410-4954770-0418-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:01",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954770-0418-4-C/results/970097209/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12396","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","11:30:00","MST","2022-05-09 18:30:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097230","UTAHDWQ_WQX-NPSETAL220506-4954770-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:02",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954770-0509-4-C/results/970097230/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12397","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","11:30:00","MST","2022-05-09 18:30:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097240","UTAHDWQ_WQX-NPSETAL220506-4954770-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:02",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954770-0509-4-C/results/970097240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14464","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-03","12:00:00","MST","2022-06-03 19:00:00",NA,"0.209",209,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097252","UTAHDWQ_WQX-NPSETAL220603-4954770-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:03",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954770-0603-4-C/results/970097252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12399","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-03","12:00:00","MST","2022-06-03 19:00:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097255","UTAHDWQ_WQX-NPSETAL220603-4954770-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:03",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954770-0603-4-C/results/970097255/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12400","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","11:05:00","MST","2022-07-18 18:05:00",NA,"0.266",266,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097264","UTAHDWQ_WQX-NPSETAL220707-4954770-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:04",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954770-0718-4-C/results/970097264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14467","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","11:05:00","MST","2022-07-18 18:05:00",NA,"0.209",209,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097277","UTAHDWQ_WQX-NPSETAL220707-4954770-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:04",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954770-0718-4-C/results/970097277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12402","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-13","12:30:00","MST","2022-08-13 19:30:00",NA,"0.289",289,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097303","UTAHDWQ_WQX-NPSETAL220808-4954770-0813-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:05",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954770-0813-4-C/results/970097303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12403","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-13","12:30:00","MST","2022-08-13 19:30:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097304","UTAHDWQ_WQX-NPSETAL220808-4954770-0813-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:05",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954770-0813-4-C/results/970097304/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14470","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-05","12:45:00","MST","2022-09-05 19:45:00",NA,"0.212",212,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097314","UTAHDWQ_WQX-NPSETAL220901-4954770-0905-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:05",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954770-0905-4-C/results/970097314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12405","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-05","12:45:00","MST","2022-09-05 19:45:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097321","UTAHDWQ_WQX-NPSETAL220901-4954770-0905-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"38.2872000000",38.2872,"-111.2476700000",-111.24767,"OK","14070003","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:06",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2872000000","-111.2476700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954770-0905-4-C/results/970097321/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12406","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","15:00:00","MST","2022-04-18 22:00:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097335","UTAHDWQ_WQX-NPSETAL220410-4954775-0418-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:06",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954775-0418-4-C/results/970097335/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12407","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","15:00:00","MST","2022-04-18 22:00:00",NA,"0.175",175,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097353","UTAHDWQ_WQX-NPSETAL220410-4954775-0418-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:07",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954775-0418-4-C/results/970097353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12408","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-09","09:30:00","MST","2022-05-09 16:30:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097365","UTAHDWQ_WQX-NPSETAL220506-4954775-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:07",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954775-0509-4-C/results/970097365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12409","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-09","09:30:00","MST","2022-05-09 16:30:00",NA,"0.225",225,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097370","UTAHDWQ_WQX-NPSETAL220506-4954775-0509-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:07",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954775-0509-4-C/results/970097370/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12410","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-03","14:30:00","MST","2022-06-03 21:30:00",NA,"0.222",222,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097383","UTAHDWQ_WQX-NPSETAL220603-4954775-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:08",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954775-0603-4-C/results/970097383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12411","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-03","14:30:00","MST","2022-06-03 21:30:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097391","UTAHDWQ_WQX-NPSETAL220603-4954775-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:08",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954775-0603-4-C/results/970097391/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12412","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","12:15:00","MST","2022-07-18 19:15:00",NA,"0.167",167,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097403","UTAHDWQ_WQX-NPSETAL220707-4954775-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:09",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954775-0718-4-C/results/970097403/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14579","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","12:15:00","MST","2022-07-18 19:15:00",NA,"0.255",255,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097416","UTAHDWQ_WQX-NPSETAL220707-4954775-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:09",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954775-0718-4-C/results/970097416/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12414","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-13","10:30:00","MST","2022-08-13 17:30:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097437","UTAHDWQ_WQX-NPSETAL220808-4954775-0813-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:10",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954775-0813-4-C/results/970097437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12415","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-13","10:30:00","MST","2022-08-13 17:30:00",NA,"0.213",213,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097439","UTAHDWQ_WQX-NPSETAL220808-4954775-0813-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:10",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954775-0813-4-C/results/970097439/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14361","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-05","11:00:00","MST","2022-09-05 18:00:00",NA,"0.363",363,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097452","UTAHDWQ_WQX-NPSETAL220901-4954775-0905-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:10",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954775-0905-4-C/results/970097452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12417","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-05","11:00:00","MST","2022-09-05 18:00:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097458","UTAHDWQ_WQX-NPSETAL220901-4954775-0905-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"38.2977600000",38.29776,"-111.2985100000",-111.29851,"OK","14070003","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.2977600000","-111.2985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954775-0905-4-C/results/970097458/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12418","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-18","11:30:00","MST","2022-04-18 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097475","UTAHDWQ_WQX-NPSETAL220410-4954780-0418-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954780-0418-4-C/results/970097475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12419","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-18","11:30:00","MST","2022-04-18 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097479","UTAHDWQ_WQX-NPSETAL220410-4954780-0418-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954780-0418-4-C/results/970097479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12420","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-13","13:45:00","MST","2022-05-13 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097497","UTAHDWQ_WQX-NPSETAL220506-4954780-0513-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954780-0513-4-C/results/970097497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14488","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-13","13:45:00","MST","2022-05-13 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097506","UTAHDWQ_WQX-NPSETAL220506-4954780-0513-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954780-0513-4-C/results/970097506/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12422","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-03","10:15:00","MST","2022-06-03 17:15:00",NA,"0.162",162,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097514","UTAHDWQ_WQX-NPSETAL220603-4954780-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:13",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954780-0603-4-C/results/970097514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12423","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-03","10:15:00","MST","2022-06-03 17:15:00",NA,"0.165",165,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097519","UTAHDWQ_WQX-NPSETAL220603-4954780-0603-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:13",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954780-0603-4-C/results/970097519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14490","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","15:00:00","MST","2022-04-11 22:00:00",NA,"3.24",3240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097533","UTAHDWQ_WQX-UTLK220404-4995120-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995120-0411-4-C/results/970097533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12425","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","15:00:00","MST","2022-04-11 22:00:00",NA,"3.16",3160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097547","UTAHDWQ_WQX-UTLK220404-4995120-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995120-0411-4-C/results/970097547/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12426","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","13:50:00","MST","2022-05-17 20:50:00",NA,"2.69",2690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097550","UTAHDWQ_WQX-UTLK220516-4995120-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995120-0517-4-C/results/970097550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14372","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","13:50:00","MST","2022-05-17 20:50:00",NA,"2.66",2660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097552","UTAHDWQ_WQX-UTLK220516-4995120-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995120-0517-4-C/results/970097552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12428","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","12:50:00","MST","2022-06-09 19:50:00",NA,"2.87",2870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097568","UTAHDWQ_WQX-UTLK220606-4995120-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995120-0609-4-C/results/970097568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12429","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","12:50:00","MST","2022-06-09 19:50:00",NA,"2.79",2790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097583","UTAHDWQ_WQX-UTLK220606-4995120-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995120-0609-4-C/results/970097583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12430","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","14:00:00","MST","2022-07-20 21:00:00",NA,"2.4",2400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.152",0.152,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097593","UTAHDWQ_WQX-UTLK220718-4995120-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995120-0720-4-C/results/970097593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12431","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","14:00:00","MST","2022-07-20 21:00:00",NA,"2.24",2240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.152",0.152,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097600","UTAHDWQ_WQX-UTLK220718-4995120-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995120-0720-4-C/results/970097600/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12432","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","13:50:00","MST","2022-08-17 20:50:00",NA,"2.6",2600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097602","UTAHDWQ_WQX-UTLK220815-4995120-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995120-0817-4-C/results/970097602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12433","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","13:50:00","MST","2022-08-17 20:50:00",NA,"2.51",2510,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097607","UTAHDWQ_WQX-UTLK220815-4995120-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995120-0817-4-C/results/970097607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12434","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","15:15:00","MST","2022-09-21 22:15:00",NA,"2.29",2290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097624","UTAHDWQ_WQX-UTLK220919-4995120-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995120-0921-4-C/results/970097624/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12435","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","15:15:00","MST","2022-09-21 22:15:00",NA,"2.31",2310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097625","UTAHDWQ_WQX-UTLK220919-4995120-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"40.3318900000",40.33189,"-111.7630400000",-111.76304,"OK","16020201","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3318900000","-111.7630400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995120-0921-4-C/results/970097625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12436","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","13:00:00","MST","2022-04-11 20:00:00",NA,"2.58",2580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097652","UTAHDWQ_WQX-UTLK220404-4996044-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996044-0411-4-C/results/970097652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12437","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","13:00:00","MST","2022-04-11 20:00:00",NA,"2.57",2570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097654","UTAHDWQ_WQX-UTLK220404-4996044-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996044-0411-4-C/results/970097654/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12438","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","11:40:00","MST","2022-05-17 18:40:00",NA,"2.84",2840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097662","UTAHDWQ_WQX-UTLK220516-4996044-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996044-0517-4-C/results/970097662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12439","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","11:40:00","MST","2022-05-17 18:40:00",NA,"2.81",2810,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097670","UTAHDWQ_WQX-UTLK220516-4996044-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996044-0517-4-C/results/970097670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12440","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","11:15:00","MST","2022-06-09 18:15:00",NA,"2.61",2610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097677","UTAHDWQ_WQX-UTLK220606-4996044-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996044-0609-4-C/results/970097677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12441","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","11:15:00","MST","2022-06-09 18:15:00",NA,"2.67",2670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097692","UTAHDWQ_WQX-UTLK220606-4996044-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996044-0609-4-C/results/970097692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12442","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","11:40:00","MST","2022-07-20 18:40:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.194",0.194,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097698","UTAHDWQ_WQX-UTLK220718-4996044-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996044-0720-4-C/results/970097698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12443","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","11:40:00","MST","2022-07-20 18:40:00",NA,"1.87",1870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.194",0.194,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097707","UTAHDWQ_WQX-UTLK220718-4996044-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996044-0720-4-C/results/970097707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12444","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","10:45:00","MST","2022-08-17 17:45:00",NA,"2.74",2740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097726","UTAHDWQ_WQX-UTLK220815-4996044-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996044-0817-4-C/results/970097726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12445","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:45:00","MST","2022-08-17 17:45:00",NA,"2.52",2520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097728","UTAHDWQ_WQX-UTLK220815-4996044-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996044-0817-4-C/results/970097728/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12446","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","11:40:00","MST","2022-09-21 18:40:00",NA,"2.09",2090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097733","UTAHDWQ_WQX-UTLK220919-4996044-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996044-0921-4-C/results/970097733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12447","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","11:40:00","MST","2022-09-21 18:40:00",NA,"2.02",2020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097737","UTAHDWQ_WQX-UTLK220919-4996044-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"40.1766500000",40.17665,"-111.6562000000",-111.6562,"OK","16020202","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1766500000","-111.6562000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996044-0921-4-C/results/970097737/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12448","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-18","09:30:00","MST","2022-07-18 16:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097757","UTAHDWQ_WQX-NPSETAL220707-4954780-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954780-0718-4-C/results/970097757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12449","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-18","09:30:00","MST","2022-07-18 16:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097763","UTAHDWQ_WQX-NPSETAL220707-4954780-0718-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:26",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954780-0718-4-C/results/970097763/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12450","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-12","10:15:00","MST","2022-08-12 17:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097782","UTAHDWQ_WQX-NPSETAL220808-4954780-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954780-0812-4-C/results/970097782/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12451","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-12","10:15:00","MST","2022-08-12 17:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097783","UTAHDWQ_WQX-NPSETAL220808-4954780-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:27",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954780-0812-4-C/results/970097783/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12452","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-05","14:05:00","MST","2022-09-05 21:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097801","UTAHDWQ_WQX-NPSETAL220901-4954780-0905-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954780-0905-4-C/results/970097801/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12453","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-05","14:05:00","MST","2022-09-05 21:05:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097814","UTAHDWQ_WQX-NPSETAL220901-4954780-0905-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","055","Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"38.1801000000",38.1801,"-111.1808700000",-111.18087,"OK","14070003","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:28",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.1801000000","-111.1808700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954780-0905-4-C/results/970097814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12454","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-16","16:30:00","MST","2022-04-16 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097830","UTAHDWQ_WQX-NPSETAL220410-4954795-0416-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:29",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954795-0416-4-C/results/970097830/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12455","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-16","16:30:00","MST","2022-04-16 23:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097848","UTAHDWQ_WQX-NPSETAL220410-4954795-0416-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954795-0416-4-C/results/970097848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12456","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-15","11:45:00","MST","2022-05-15 18:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097854","UTAHDWQ_WQX-NPSETAL220506-4954795-0515-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954795-0515-4-C/results/970097854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12457","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-15","11:45:00","MST","2022-05-15 18:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097860","UTAHDWQ_WQX-NPSETAL220506-4954795-0515-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:30",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954795-0515-4-C/results/970097860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12458","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-05","12:00:00","MST","2022-06-05 19:00:00",NA,"0.22",220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097875","UTAHDWQ_WQX-NPSETAL220603-4954795-0605-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954795-0605-4-C/results/970097875/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12459","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-05","12:00:00","MST","2022-06-05 19:00:00",NA,"0.194",194,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097877","UTAHDWQ_WQX-NPSETAL220603-4954795-0605-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:31",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954795-0605-4-C/results/970097877/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12460","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","10:30:00","MST","2022-09-26 17:30:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097884","UTAHDWQ_WQX-NPSETAL220901-4954795-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954795-0926-4-C/results/970097884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12461","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","10:30:00","MST","2022-09-26 17:30:00",NA,"0.187",187,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097895","UTAHDWQ_WQX-NPSETAL220901-4954795-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","Oak Creek above Oak Creek Dam","River/Stream",NA,"38.0844000000",38.0844,"-111.1404200000",-111.14042,"OK","14070003","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:32",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.0844000000","-111.1404200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954795-0926-4-C/results/970097895/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12462","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","11:30:00","MST","2022-06-01 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097922","UTAHDWQ_WQX-BLMMOAB220601-4955780-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955780-0601-4-C/results/970097922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12463","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","11:30:00","MST","2022-06-01 18:30:00",NA,"0.481",481,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097924","UTAHDWQ_WQX-BLMMOAB220601-4955780-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"38.0088800000",38.00888,"-109.5384500000",-109.53845,"OK","14030005","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0088800000","-109.5384500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955780-0601-4-C/results/970097924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12464","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","11:30:00","MST","2022-05-04 18:30:00",NA,"0.452",452,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097936","UTAHDWQ_WQX-BLMMOAB220504-4955790-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955790-0504-4-C/results/970097936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12465","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-04","11:30:00","MST","2022-05-04 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097942","UTAHDWQ_WQX-BLMMOAB220504-4955790-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955790-0504-4-C/results/970097942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14290","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","11:00:00","MST","2022-06-01 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097969","UTAHDWQ_WQX-BLMMOAB220601-4955790-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955790-0601-4-C/results/970097969/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12467","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","11:00:00","MST","2022-06-01 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097972","UTAHDWQ_WQX-BLMMOAB220601-4955790-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955790-0601-4-C/results/970097972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12468","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","11:30:00","MST","2022-05-04 18:30:00",NA,"0.301",301,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970097997","UTAHDWQ_WQX-BLMMOAB220504-4955791-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955791-0504-4-C/results/970097997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9189","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-04","11:30:00","MST","2022-05-04 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098019","UTAHDWQ_WQX-BLMMOAB220504-4955791-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955791-0504-4-C/results/970098019/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12470","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","11:00:00","MST","2022-06-01 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098033","UTAHDWQ_WQX-BLMMOAB220601-4955791-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955791-0601-4-C/results/970098033/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9191","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","11:00:00","MST","2022-06-01 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098041","UTAHDWQ_WQX-BLMMOAB220601-4955791-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","37.9830500000",37.98305,"-109.5167800000",-109.51678,"OK","14030005","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9830500000","-109.5167800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955791-0601-4-C/results/970098041/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12472","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-04","13:00:00","MST","2022-05-04 20:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098073","UTAHDWQ_WQX-BLMMOAB220504-4955810-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955810-0504-4-C/results/970098073/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12473","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","13:30:00","MST","2022-06-01 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098089","UTAHDWQ_WQX-BLMMOAB220601-4955810-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955810-0601-4-C/results/970098089/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12474","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","13:30:00","MST","2022-06-01 20:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098098","UTAHDWQ_WQX-BLMMOAB220601-4955810-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"38.0283200000",38.02832,"-109.5898500000",-109.58985,"OK","14030005","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"38.0283200000","-109.5898500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955810-0601-4-C/results/970098098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12475","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","12:30:00","MST","2022-05-04 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098149","UTAHDWQ_WQX-BLMMOAB220504-4955815-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955815-0504-4-C/results/970098149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12476","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-04","12:30:00","MST","2022-05-04 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098151","UTAHDWQ_WQX-BLMMOAB220504-4955815-0504-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955815-0504-4-C/results/970098151/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12477","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","12:30:00","MST","2022-06-01 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098153","UTAHDWQ_WQX-BLMMOAB220601-4955815-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955815-0601-4-C/results/970098153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12478","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","12:30:00","MST","2022-06-01 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098181","UTAHDWQ_WQX-BLMMOAB220601-4955815-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"37.9930700000",37.99307,"-109.5991300000",-109.59913,"OK","14030005","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.9930700000","-109.5991300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955815-0601-4-C/results/970098181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12479","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-21","13:35:00","MST","2022-04-21 20:35:00",NA,"0.655",655,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098205","UTAHDWQ_WQX-NPSCAN220416-4956290-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4956290-0421-4-C/results/970098205/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12480","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-21","13:35:00","MST","2022-04-21 20:35:00",NA,"0.776",776,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098206","UTAHDWQ_WQX-NPSCAN220416-4956290-0421-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4956290-0421-4-C/results/970098206/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12481","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-27","14:57:00","MST","2022-05-27 21:57:00",NA,"0.602",602,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098228","UTAHDWQ_WQX-NPSCAN220524-4956290-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4956290-0527-4-C/results/970098228/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12482","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-27","14:57:00","MST","2022-05-27 21:57:00",NA,"0.534",534,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098229","UTAHDWQ_WQX-NPSCAN220524-4956290-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4956290-0527-4-C/results/970098229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12483","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-01","14:02:00","MST","2022-07-01 21:02:00",NA,"0.714",714,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098251","UTAHDWQ_WQX-NPSCAN220629-4956290-0701-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4956290-0701-4-C/results/970098251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12484","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-01","14:02:00","MST","2022-07-01 21:02:00",NA,"0.579",579,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098279","UTAHDWQ_WQX-NPSCAN220629-4956290-0701-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4956290-0701-4-C/results/970098279/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12485","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","14:50:00","MST","2022-07-27 21:50:00",NA,"0.931",931,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098284","UTAHDWQ_WQX-NPSCAN220727-4956290-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4956290-0727-4-C/results/970098284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12486","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","14:50:00","MST","2022-07-27 21:50:00",NA,"0.865",865,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098296","UTAHDWQ_WQX-NPSCAN220727-4956290-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4956290-0727-4-C/results/970098296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12487","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-19","14:50:00","MST","2022-08-19 21:50:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098336","UTAHDWQ_WQX-NPSCAN220815-4956290-0819-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4956290-0819-4-C/results/970098336/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12488","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-19","14:50:00","MST","2022-08-19 21:50:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098342","UTAHDWQ_WQX-NPSCAN220815-4956290-0819-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4956290-0819-4-C/results/970098342/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12489","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-27","14:57:00","MST","2022-05-27 21:57:00",NA,"0.502",502,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098365","UTAHDWQ_WQX-NPSCAN220524-4956291-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4956291-0527-4-C/results/970098365/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12490","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-27","14:57:00","MST","2022-05-27 21:57:00",NA,"0.58",580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098378","UTAHDWQ_WQX-NPSCAN220524-4956291-0527-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4956291-0527-4-C/results/970098378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12491","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-27","14:55:00","MST","2022-07-27 21:55:00",NA,"0.896",896,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098400","UTAHDWQ_WQX-NPSCAN220727-4956291-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4956291-0727-4-C/results/970098400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12492","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-27","14:55:00","MST","2022-07-27 21:55:00",NA,"0.891",891,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098407","UTAHDWQ_WQX-NPSCAN220727-4956291-0727-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","38.4669300000",38.46693,"-109.6662200000",-109.66622,"OK","14030005","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.4669300000","-109.6662200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4956291-0727-4-C/results/970098407/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12493","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","08:45:00","MST","2022-04-19 15:45:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098424","UTAHDWQ_WQX-DC220419-4990110-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990110-0419-4-C/results/970098424/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12494","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","08:45:00","MST","2022-04-19 15:45:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098432","UTAHDWQ_WQX-DC220419-4990110-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990110-0419-4-C/results/970098432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12495","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","08:55:00","MST","2022-05-17 15:55:00",NA,"1.66",1660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098445","UTAHDWQ_WQX-DC220517-4990110-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990110-0517-4-C/results/970098445/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12496","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","08:55:00","MST","2022-05-17 15:55:00",NA,"1.57",1570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098453","UTAHDWQ_WQX-DC220517-4990110-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990110-0517-4-C/results/970098453/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12497","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","08:30:00","MST","2022-06-21 15:30:00",NA,"2.03",2030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098463","UTAHDWQ_WQX-DC220621-4990110-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990110-0621-4-C/results/970098463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12498","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","08:30:00","MST","2022-06-21 15:30:00",NA,"2.16",2160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098474","UTAHDWQ_WQX-DC220621-4990110-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990110-0621-4-C/results/970098474/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12499","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","08:00:00","MST","2022-07-19 15:00:00",NA,"2.3",2300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098492","UTAHDWQ_WQX-DC220719-4990110-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990110-0719-4-C/results/970098492/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12500","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","08:00:00","MST","2022-07-19 15:00:00",NA,"2.34",2340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098499","UTAHDWQ_WQX-DC220719-4990110-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990110-0719-4-C/results/970098499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12501","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","08:50:00","MST","2022-08-23 15:50:00",NA,"1.89",1890,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098510","UTAHDWQ_WQX-DC220823-4990110-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990110-0823-4-C/results/970098510/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12502","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","09:00:00","MST","2022-09-20 16:00:00",NA,"2.41",2410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098533","UTAHDWQ_WQX-DC220920-4990110-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990110-0920-4-C/results/970098533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12503","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","09:00:00","MST","2022-09-20 16:00:00",NA,"2.38",2380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098534","UTAHDWQ_WQX-DC220920-4990110-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING","River/Stream",NA,"41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990110",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990110-0920-4-C/results/970098534/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12504","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","08:50:00","MST","2022-04-19 15:50:00",NA,"1.44",1440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098559","UTAHDWQ_WQX-DC220419-4990112-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990112-0419-4-C/results/970098559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12505","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","08:50:00","MST","2022-04-19 15:50:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098561","UTAHDWQ_WQX-DC220419-4990112-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990112-0419-4-C/results/970098561/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9226","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","09:00:00","MST","2022-05-17 16:00:00",NA,"1.62",1620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098583","UTAHDWQ_WQX-DC220517-4990112-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990112-0517-4-C/results/970098583/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12507","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","09:00:00","MST","2022-05-17 16:00:00",NA,"1.64",1640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098585","UTAHDWQ_WQX-DC220517-4990112-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:31:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990112-0517-4-C/results/970098585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12508","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","08:55:00","MST","2022-06-21 15:55:00",NA,"2.06",2060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098599","UTAHDWQ_WQX-DC220621-4990112-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990112-0621-4-C/results/970098599/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9229","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","08:55:00","MST","2022-06-21 15:55:00",NA,"2.06",2060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098610","UTAHDWQ_WQX-DC220621-4990112-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990112-0621-4-C/results/970098610/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9230","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","08:05:00","MST","2022-07-19 15:05:00",NA,"2.29",2290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098619","UTAHDWQ_WQX-DC220719-4990112-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990112-0719-4-C/results/970098619/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14334","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","08:05:00","MST","2022-07-19 15:05:00",NA,"2.32",2320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098623","UTAHDWQ_WQX-DC220719-4990112-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990112-0719-4-C/results/970098623/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12512","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","08:55:00","MST","2022-08-23 15:55:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098648","UTAHDWQ_WQX-DC220823-4990112-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990112-0823-4-C/results/970098648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9233","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","09:05:00","MST","2022-09-20 16:05:00",NA,"2.22",2220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098678","UTAHDWQ_WQX-DC220920-4990112-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990112-0920-4-C/results/970098678/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13608","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","09:05:00","MST","2022-09-20 16:05:00",NA,"2.46",2460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098681","UTAHDWQ_WQX-DC220920-4990112-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110","River/Stream","Replicate of 4990110","41.0405100000",41.04051,"-111.9976500000",-111.99765,"OK","16020102","UTAHDWQ_WQX-4990112",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0405100000","-111.9976500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990112-0920-4-C/results/970098681/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9235","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","11:20:00","MST","2022-04-19 18:20:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098698","UTAHDWQ_WQX-DC220419-4990135-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Kay's Ck. at Valley View Dr. and 1850 N.","River/Stream",NA,"41.0887100000",41.08871,"-111.9090400000",-111.90904,"OK","16020102","UTAHDWQ_WQX-4990135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0887100000","-111.9090400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990135-0419-4-C/results/970098698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9236","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","11:20:00","MST","2022-04-19 18:20:00",NA,"0.436",436,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098701","UTAHDWQ_WQX-DC220419-4990135-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Kay's Ck. at Valley View Dr. and 1850 N.","River/Stream",NA,"41.0887100000",41.08871,"-111.9090400000",-111.90904,"OK","16020102","UTAHDWQ_WQX-4990135",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0887100000","-111.9090400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990135-0419-4-C/results/970098701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12517","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","11:25:00","MST","2022-06-21 18:25:00",NA,"0.48",480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098713","UTAHDWQ_WQX-DC220621-4990137-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Middle Fork Kays Creek at Fernwood Dr Xing","River/Stream",NA,"41.0895200000",41.08952,"-111.9062800000",-111.90628,"OK","16020102","UTAHDWQ_WQX-4990137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0895200000","-111.9062800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990137-0621-4-C/results/970098713/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9238","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","11:25:00","MST","2022-06-21 18:25:00",NA,"0.522",522,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098728","UTAHDWQ_WQX-DC220621-4990137-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Middle Fork Kays Creek at Fernwood Dr Xing","River/Stream",NA,"41.0895200000",41.08952,"-111.9062800000",-111.90628,"OK","16020102","UTAHDWQ_WQX-4990137",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0895200000","-111.9062800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990137-0621-4-C/results/970098728/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14545","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","09:10:00","MST","2022-05-17 16:10:00",NA,"0.638",638,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098750","UTAHDWQ_WQX-DC220517-4990190-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990190-0517-4-C/results/970098750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12520","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","09:10:00","MST","2022-05-17 16:10:00",NA,"0.73",730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098758","UTAHDWQ_WQX-DC220517-4990190-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990190-0517-4-C/results/970098758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12521","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","09:15:00","MST","2022-06-21 16:15:00",NA,"0.461",461,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098780","UTAHDWQ_WQX-DC220621-4990190-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990190-0621-4-C/results/970098780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14548","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","09:15:00","MST","2022-06-21 16:15:00",NA,"0.542",542,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098790","UTAHDWQ_WQX-DC220621-4990190-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990190-0621-4-C/results/970098790/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12523","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","08:20:00","MST","2022-07-19 15:20:00",NA,"0.605",605,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098806","UTAHDWQ_WQX-DC220719-4990190-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990190-0719-4-C/results/970098806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12524","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","08:20:00","MST","2022-07-19 15:20:00",NA,"0.671",671,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098811","UTAHDWQ_WQX-DC220719-4990190-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990190-0719-4-C/results/970098811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12525","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","09:10:00","MST","2022-08-23 16:10:00",NA,"0.363",363,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098818","UTAHDWQ_WQX-DC220823-4990190-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990190-0823-4-C/results/970098818/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12526","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","09:20:00","MST","2022-09-20 16:20:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098843","UTAHDWQ_WQX-DC220920-4990190-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990190-0920-4-C/results/970098843/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12527","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","09:20:00","MST","2022-09-20 16:20:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098852","UTAHDWQ_WQX-DC220920-4990190-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","HOLMES CK @ TERESA ST XING","River/Stream",NA,"41.0228600000",41.02286,"-111.9668000000",-111.9668,"OK","16020102","UTAHDWQ_WQX-4990190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0228600000","-111.9668000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990190-0920-4-C/results/970098852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12528","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","10:45:00","MST","2022-04-19 17:45:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098873","UTAHDWQ_WQX-DC220419-4990220-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990220-0419-4-C/results/970098873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12529","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","10:45:00","MST","2022-04-19 17:45:00",NA,"0.358",358,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098880","UTAHDWQ_WQX-DC220419-4990220-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990220-0419-4-C/results/970098880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12530","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","10:50:00","MST","2022-05-17 17:50:00",NA,"0.337",337,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098894","UTAHDWQ_WQX-DC220517-4990220-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990220-0517-4-C/results/970098894/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12531","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","10:50:00","MST","2022-05-17 17:50:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098902","UTAHDWQ_WQX-DC220517-4990220-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990220-0517-4-C/results/970098902/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12532","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","10:40:00","MST","2022-06-21 17:40:00",NA,"0.276",276,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098906","UTAHDWQ_WQX-DC220621-4990220-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990220-0621-4-C/results/970098906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12533","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","10:40:00","MST","2022-06-21 17:40:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098929","UTAHDWQ_WQX-DC220621-4990220-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990220-0621-4-C/results/970098929/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12534","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","09:50:00","MST","2022-07-19 16:50:00",NA,"0.298",298,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098930","UTAHDWQ_WQX-DC220719-4990220-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990220-0719-4-C/results/970098930/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12535","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","09:50:00","MST","2022-07-19 16:50:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098933","UTAHDWQ_WQX-DC220719-4990220-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990220-0719-4-C/results/970098933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12536","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","10:40:00","MST","2022-08-23 17:40:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098968","UTAHDWQ_WQX-DC220823-4990220-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990220-0823-4-C/results/970098968/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12537","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","10:50:00","MST","2022-09-20 17:50:00",NA,"0.21",210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098980","UTAHDWQ_WQX-DC220920-4990220-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990220-0920-4-C/results/970098980/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12538","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","10:50:00","MST","2022-09-20 17:50:00",NA,"0.237",237,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098988","UTAHDWQ_WQX-DC220920-4990220-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Holmes Creek North Fork AB U.S. 89 at 3050 East xing","River/Stream",NA,"41.0643900000",41.06439,"-111.9085700000",-111.90857,"OK","16020102","UTAHDWQ_WQX-4990220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0643900000","-111.9085700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990220-0920-4-C/results/970098988/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12539","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","11:10:00","MST","2022-04-19 18:10:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970098999","UTAHDWQ_WQX-DC220419-4990225-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990225-0419-4-C/results/970098999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12540","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","11:10:00","MST","2022-04-19 18:10:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099000","UTAHDWQ_WQX-DC220419-4990225-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990225-0419-4-C/results/970099000/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12541","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","11:10:00","MST","2022-05-17 18:10:00",NA,"0.2",200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099021","UTAHDWQ_WQX-DC220517-4990225-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990225-0517-4-C/results/970099021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12542","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","11:10:00","MST","2022-05-17 18:10:00",NA,"0.208",208,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099026","UTAHDWQ_WQX-DC220517-4990225-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990225-0517-4-C/results/970099026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12543","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","11:05:00","MST","2022-06-21 18:05:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099052","UTAHDWQ_WQX-DC220621-4990225-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990225-0621-4-C/results/970099052/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12544","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","11:05:00","MST","2022-06-21 18:05:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099062","UTAHDWQ_WQX-DC220621-4990225-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990225-0621-4-C/results/970099062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12545","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:15:00","MST","2022-07-19 17:15:00",NA,"0.19",190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099076","UTAHDWQ_WQX-DC220719-4990225-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990225-0719-4-C/results/970099076/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12546","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:15:00","MST","2022-07-19 17:15:00",NA,"0.196",196,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099080","UTAHDWQ_WQX-DC220719-4990225-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990225-0719-4-C/results/970099080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12547","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:10:00","MST","2022-09-20 18:10:00",NA,"0.161",161,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099100","UTAHDWQ_WQX-DC220920-4990225-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990225-0920-4-C/results/970099100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12548","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:10:00","MST","2022-09-20 18:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099108","UTAHDWQ_WQX-DC220920-4990225-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N.","River/Stream",NA,"41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990225",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990225-0920-4-C/results/970099108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12549","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","11:15:00","MST","2022-04-19 18:15:00",NA,"0.234",234,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099127","UTAHDWQ_WQX-DC220419-4990226-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990226-0419-4-C/results/970099127/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12550","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","11:15:00","MST","2022-04-19 18:15:00",NA,"0.252",252,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099133","UTAHDWQ_WQX-DC220419-4990226-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990226-0419-4-C/results/970099133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14496","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","11:15:00","MST","2022-05-17 18:15:00",NA,"0.199",199,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099140","UTAHDWQ_WQX-DC220517-4990226-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990226-0517-4-C/results/970099140/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12552","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","11:15:00","MST","2022-05-17 18:15:00",NA,"0.195",195,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099146","UTAHDWQ_WQX-DC220517-4990226-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990226-0517-4-C/results/970099146/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12553","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","11:10:00","MST","2022-06-21 18:10:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099161","UTAHDWQ_WQX-DC220621-4990226-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990226-0621-4-C/results/970099161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14378","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","11:10:00","MST","2022-06-21 18:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099163","UTAHDWQ_WQX-DC220621-4990226-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990226-0621-4-C/results/970099163/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12555","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:20:00","MST","2022-07-19 17:20:00",NA,"0.173",173,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099192","UTAHDWQ_WQX-DC220719-4990226-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990226-0719-4-C/results/970099192/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12556","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:20:00","MST","2022-07-19 17:20:00",NA,"0.169",169,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099194","UTAHDWQ_WQX-DC220719-4990226-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990226-0719-4-C/results/970099194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12557","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:15:00","MST","2022-09-20 18:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099213","UTAHDWQ_WQX-DC220920-4990226-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990226-0920-4-C/results/970099213/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12558","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:15:00","MST","2022-09-20 18:15:00",NA,"0.194",194,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099226","UTAHDWQ_WQX-DC220920-4990226-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ 1300 N. Replicate of 4990225","River/Stream","Replicate of 4990225","41.0796900000",41.07969,"-111.9043000000",-111.9043,"OK","16020102","UTAHDWQ_WQX-4990226",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0796900000","-111.9043000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990226-0920-4-C/results/970099226/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12559","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","11:00:00","MST","2022-04-19 18:00:00",NA,"0.486",486,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099249","UTAHDWQ_WQX-DC220419-4990228-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990228-0419-4-C/results/970099249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12560","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","11:00:00","MST","2022-04-19 18:00:00",NA,"0.453",453,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099252","UTAHDWQ_WQX-DC220419-4990228-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990228-0419-4-C/results/970099252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12561","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","11:05:00","MST","2022-05-17 18:05:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099258","UTAHDWQ_WQX-DC220517-4990228-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990228-0517-4-C/results/970099258/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12562","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","11:05:00","MST","2022-05-17 18:05:00",NA,"1.12",1120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099264","UTAHDWQ_WQX-DC220517-4990228-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990228-0517-4-C/results/970099264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12563","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","10:50:00","MST","2022-06-21 17:50:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099272","UTAHDWQ_WQX-DC220621-4990228-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990228-0621-4-C/results/970099272/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12564","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","10:50:00","MST","2022-06-21 17:50:00",NA,"1.09",1090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099292","UTAHDWQ_WQX-DC220621-4990228-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990228-0621-4-C/results/970099292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12565","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:00:00","MST","2022-07-19 17:00:00",NA,"1.3",1300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099311","UTAHDWQ_WQX-DC220719-4990228-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990228-0719-4-C/results/970099311/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12566","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:00:00","MST","2022-07-19 17:00:00",NA,"0.555",555,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099312","UTAHDWQ_WQX-DC220719-4990228-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990228-0719-4-C/results/970099312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12567","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","10:55:00","MST","2022-08-23 17:55:00",NA,"1.29",1290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099328","UTAHDWQ_WQX-DC220823-4990228-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SNOW CK @ FRANKLIN RD XING","River/Stream",NA,"41.0688500000",41.06885,"-111.9448600000",-111.94486,"OK","16020102","UTAHDWQ_WQX-4990228",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0688500000","-111.9448600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990228-0823-4-C/results/970099328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12568","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","09:25:00","MST","2022-05-17 16:25:00",NA,"2.54",2540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099372","UTAHDWQ_WQX-DC220517-4990280-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990280-0517-4-C/results/970099372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12569","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","09:25:00","MST","2022-05-17 16:25:00",NA,"2.4",2400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099380","UTAHDWQ_WQX-DC220517-4990280-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990280-0517-4-C/results/970099380/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12570","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","09:25:00","MST","2022-06-21 16:25:00",NA,"2.49",2490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099381","UTAHDWQ_WQX-DC220621-4990280-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990280-0621-4-C/results/970099381/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12571","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","09:25:00","MST","2022-06-21 16:25:00",NA,"2.37",2370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099392","UTAHDWQ_WQX-DC220621-4990280-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990280-0621-4-C/results/970099392/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12572","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","08:25:00","MST","2022-07-19 15:25:00",NA,"2.24",2240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099417","UTAHDWQ_WQX-DC220719-4990280-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990280-0719-4-C/results/970099417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12573","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","08:25:00","MST","2022-07-19 15:25:00",NA,"2.28",2280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099422","UTAHDWQ_WQX-DC220719-4990280-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990280-0719-4-C/results/970099422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12574","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","09:20:00","MST","2022-08-23 16:20:00",NA,"2.3",2300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099432","UTAHDWQ_WQX-DC220823-4990280-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990280-0823-4-C/results/970099432/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12575","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","09:30:00","MST","2022-09-20 16:30:00",NA,"2.23",2230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099459","UTAHDWQ_WQX-DC220920-4990280-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990280-0920-4-C/results/970099459/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12576","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","09:30:00","MST","2022-09-20 16:30:00",NA,"2.31",2310,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099462","UTAHDWQ_WQX-DC220920-4990280-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing","River/Stream",NA,"40.9993200000",40.99932,"-111.9422100000",-111.94221,"OK","16020102","UTAHDWQ_WQX-4990280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9993200000","-111.9422100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990280-0920-4-C/results/970099462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12577","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","10:25:00","MST","2022-04-19 17:25:00",NA,"0.443",443,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099472","UTAHDWQ_WQX-DC220419-4990296-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990296-0419-4-C/results/970099472/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12578","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","10:25:00","MST","2022-04-19 17:25:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099478","UTAHDWQ_WQX-DC220419-4990296-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990296-0419-4-C/results/970099478/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12579","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","10:35:00","MST","2022-05-17 17:35:00",NA,"0.342",342,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099507","UTAHDWQ_WQX-DC220517-4990296-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990296-0517-4-C/results/970099507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12580","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","10:35:00","MST","2022-05-17 17:35:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099515","UTAHDWQ_WQX-DC220517-4990296-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990296-0517-4-C/results/970099515/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12581","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","10:25:00","MST","2022-06-21 17:25:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099517","UTAHDWQ_WQX-DC220621-4990296-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990296-0621-4-C/results/970099517/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12582","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","10:25:00","MST","2022-06-21 17:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099536","UTAHDWQ_WQX-DC220621-4990296-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990296-0621-4-C/results/970099536/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12583","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","09:35:00","MST","2022-07-19 16:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099550","UTAHDWQ_WQX-DC220719-4990296-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990296-0719-4-C/results/970099550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12584","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","09:35:00","MST","2022-07-19 16:35:00",NA,"0.202",202,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099553","UTAHDWQ_WQX-DC220719-4990296-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990296-0719-4-C/results/970099553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12585","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","10:30:00","MST","2022-08-23 17:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099578","UTAHDWQ_WQX-DC220823-4990296-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990296-0823-4-C/results/970099578/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12586","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","10:40:00","MST","2022-09-20 17:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099602","UTAHDWQ_WQX-DC220920-4990296-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990296-0920-4-C/results/970099602/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12587","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","10:40:00","MST","2022-09-20 17:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099605","UTAHDWQ_WQX-DC220920-4990296-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","BAIR CK @1800 E.","River/Stream",NA,"41.0305800000",41.03058,"-111.8977800000",-111.89778,"OK","16020102","UTAHDWQ_WQX-4990296",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0305800000","-111.8977800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990296-0920-4-C/results/970099605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12588","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","09:30:00","MST","2022-04-19 16:30:00",NA,"0.846",846,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099623","UTAHDWQ_WQX-DC220419-4990300-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990300-0419-4-C/results/970099623/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14413","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","09:30:00","MST","2022-04-19 16:30:00",NA,"0.955",955,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099631","UTAHDWQ_WQX-DC220419-4990300-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990300-0419-4-C/results/970099631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12590","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","09:40:00","MST","2022-05-17 16:40:00",NA,"0.712",712,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099634","UTAHDWQ_WQX-DC220517-4990300-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990300-0517-4-C/results/970099634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12591","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","09:40:00","MST","2022-05-17 16:40:00",NA,"0.647",647,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099636","UTAHDWQ_WQX-DC220517-4990300-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990300-0517-4-C/results/970099636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14416","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","09:35:00","MST","2022-06-21 16:35:00",NA,"0.52",520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099652","UTAHDWQ_WQX-DC220621-4990300-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990300-0621-4-C/results/970099652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12593","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","09:35:00","MST","2022-06-21 16:35:00",NA,"0.533",533,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099662","UTAHDWQ_WQX-DC220621-4990300-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990300-0621-4-C/results/970099662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12594","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","08:45:00","MST","2022-07-19 15:45:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099680","UTAHDWQ_WQX-DC220719-4990300-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990300-0719-4-C/results/970099680/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12595","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","08:45:00","MST","2022-07-19 15:45:00",NA,"0.535",535,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099687","UTAHDWQ_WQX-DC220719-4990300-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990300-0719-4-C/results/970099687/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12596","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","09:35:00","MST","2022-08-23 16:35:00",NA,"0.364",364,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099709","UTAHDWQ_WQX-DC220823-4990300-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990300-0823-4-C/results/970099709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12597","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","09:40:00","MST","2022-09-20 16:40:00",NA,"0.562",562,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099724","UTAHDWQ_WQX-DC220920-4990300-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990300-0920-4-C/results/970099724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12598","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","09:40:00","MST","2022-09-20 16:40:00",NA,"0.474",474,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099731","UTAHDWQ_WQX-DC220920-4990300-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BUFFALO RANCH RD.","River/Stream",NA,"40.9785000000",40.9785,"-111.9334600000",-111.93346,"OK","16020102","UTAHDWQ_WQX-4990300",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.9785000000","-111.9334600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990300-0920-4-C/results/970099731/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12599","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","10:15:00","MST","2022-04-19 17:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099748","UTAHDWQ_WQX-DC220419-4990306-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990306-0419-4-C/results/970099748/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12600","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","10:15:00","MST","2022-04-19 17:15:00",NA,"0.163",163,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099760","UTAHDWQ_WQX-DC220419-4990306-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990306-0419-4-C/results/970099760/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12601","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","10:20:00","MST","2022-05-17 17:20:00",NA,"0.181",181,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099770","UTAHDWQ_WQX-DC220517-4990306-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990306-0517-4-C/results/970099770/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12602","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","10:20:00","MST","2022-05-17 17:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099784","UTAHDWQ_WQX-DC220517-4990306-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990306-0517-4-C/results/970099784/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12603","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","10:15:00","MST","2022-06-21 17:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099805","UTAHDWQ_WQX-DC220621-4990306-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990306-0621-4-C/results/970099805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12604","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","10:15:00","MST","2022-06-21 17:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099811","UTAHDWQ_WQX-DC220621-4990306-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","SHEPARD CK @ BELLA VISTA XING","River/Stream",NA,"41.0145600000",41.01456,"-111.8938600000",-111.89386,"OK","16020102","UTAHDWQ_WQX-4990306",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0145600000","-111.8938600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990306-0621-4-C/results/970099811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12605","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","10:00:00","MST","2022-04-19 17:00:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099824","UTAHDWQ_WQX-DC220419-4990308-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990308-0419-4-C/results/970099824/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12606","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","10:10:00","MST","2022-05-17 17:10:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099848","UTAHDWQ_WQX-DC220517-4990308-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990308-0517-4-C/results/970099848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12607","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","10:10:00","MST","2022-05-17 17:10:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099853","UTAHDWQ_WQX-DC220517-4990308-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990308-0517-4-C/results/970099853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12608","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","09:55:00","MST","2022-06-21 16:55:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099863","UTAHDWQ_WQX-DC220621-4990308-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990308-0621-4-C/results/970099863/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12609","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","09:55:00","MST","2022-06-21 16:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099870","UTAHDWQ_WQX-DC220621-4990308-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990308-0621-4-C/results/970099870/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12610","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","09:20:00","MST","2022-07-19 16:20:00",NA,"0.207",207,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099882","UTAHDWQ_WQX-DC220719-4990308-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990308-0719-4-C/results/970099882/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12611","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","09:20:00","MST","2022-07-19 16:20:00",NA,"0.201",201,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099898","UTAHDWQ_WQX-DC220719-4990308-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990308-0719-4-C/results/970099898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12612","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","10:10:00","MST","2022-08-23 17:10:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099920","UTAHDWQ_WQX-DC220823-4990308-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990308-0823-4-C/results/970099920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12613","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","10:20:00","MST","2022-09-20 17:20:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099927","UTAHDWQ_WQX-DC220920-4990308-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990308-0920-4-C/results/970099927/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12614","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","10:20:00","MST","2022-09-20 17:20:00",NA,"0.166",166,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099938","UTAHDWQ_WQX-DC220920-4990308-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","011","Shepard Ck ~0.10 mile above Bella Vista Dr","River/Stream",NA,"41.0147600000",41.01476,"-111.8920000000",-111.892,"OK","16020102","UTAHDWQ_WQX-4990308",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"41.0147600000","-111.8920000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990308-0920-4-C/results/970099938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12615","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-19","08:00:00","MST","2022-04-19 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099956","UTAHDWQ_WQX-DC220419-4990555-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990555-0419-4-C/results/970099956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12616","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-19","08:00:00","MST","2022-04-19 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099967","UTAHDWQ_WQX-DC220419-4990555-0419-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990555-0419-4-C/results/970099967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12617","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","08:20:00","MST","2022-05-17 15:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099971","UTAHDWQ_WQX-DC220517-4990555-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990555-0517-4-C/results/970099971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12618","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","08:20:00","MST","2022-05-17 15:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970099984","UTAHDWQ_WQX-DC220517-4990555-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990555-0517-4-C/results/970099984/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12619","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-21","08:00:00","MST","2022-06-21 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100001","UTAHDWQ_WQX-DC220621-4990555-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990555-0621-4-C/results/970100001/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12620","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-21","08:00:00","MST","2022-06-21 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100014","UTAHDWQ_WQX-DC220621-4990555-0621-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990555-0621-4-C/results/970100014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12621","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","07:30:00","MST","2022-07-19 14:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100016","UTAHDWQ_WQX-DC220719-4990555-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990555-0719-4-C/results/970100016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12622","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","07:30:00","MST","2022-07-19 14:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100032","UTAHDWQ_WQX-DC220719-4990555-0719-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990555-0719-4-C/results/970100032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12623","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-23","08:15:00","MST","2022-08-23 15:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100036","UTAHDWQ_WQX-DC220823-4990555-0823-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990555-0823-4-C/results/970100036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12624","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","08:00:00","MST","2022-09-20 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100061","UTAHDWQ_WQX-DC220920-4990555-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990555-0920-4-C/results/970100061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12625","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","08:00:00","MST","2022-09-20 15:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100062","UTAHDWQ_WQX-DC220920-4990555-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Davis County Equipment Blank","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Davis County",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990555-0920-4-C/results/970100062/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12626","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-28","16:00:00","MST","2022-06-28 23:00:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100084","UTAHDWQ_WQX-JRBBH220627-4994175-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220627-4994175-0628-4-C/results/970100084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12627","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-28","16:00:00","MST","2022-06-28 23:00:00",NA,"2.71",2710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100098","UTAHDWQ_WQX-JRBBH220627-4994175-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"40.6009500000",40.60095,"-111.9201900000",-111.92019,"OK","16020204","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.6009500000","-111.9201900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220627-4994175-0628-4-C/results/970100098/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12628","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-28","15:20:00","MST","2022-06-28 22:20:00",NA,"2.23",2230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100131","UTAHDWQ_WQX-JRBBH220627-4994270-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220627-4994270-0628-4-C/results/970100131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12629","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-28","15:20:00","MST","2022-06-28 22:20:00",NA,"2.21",2210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100134","UTAHDWQ_WQX-JRBBH220627-4994270-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","035","JORDAN R AT 9000 S XING","River/Stream",NA,"40.5874400000",40.58744,"-111.9127100000",-111.91271,"OK","16020204","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.5874400000","-111.9127100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220627-4994270-0628-4-C/results/970100134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12630","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","15:00:00","MST","2022-05-17 22:00:00",NA,"0.865",865,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100138","UTAHDWQ_WQX-UTLK220516-4994790-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994790-0517-4-C/results/970100138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12631","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","15:00:00","MST","2022-05-17 22:00:00",NA,"0.766",766,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100143","UTAHDWQ_WQX-UTLK220516-4994790-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994790-0517-4-C/results/970100143/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12632","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","13:50:00","MST","2022-06-09 20:50:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100169","UTAHDWQ_WQX-UTLK220606-4994790-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994790-0609-4-C/results/970100169/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12633","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","13:50:00","MST","2022-06-09 20:50:00",NA,"0.986",986,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100173","UTAHDWQ_WQX-UTLK220606-4994790-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994790-0609-4-C/results/970100173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12634","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","15:00:00","MST","2022-07-20 22:00:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.185",0.185,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100175","UTAHDWQ_WQX-UTLK220718-4994790-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994790-0720-4-C/results/970100175/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12635","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","15:00:00","MST","2022-07-20 22:00:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.185",0.185,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100185","UTAHDWQ_WQX-UTLK220718-4994790-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994790-0720-4-C/results/970100185/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12636","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","15:00:00","MST","2022-08-17 22:00:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100201","UTAHDWQ_WQX-UTLK220815-4994790-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4994790-0817-4-C/results/970100201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12637","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","15:00:00","MST","2022-08-17 22:00:00",NA,"1.38",1380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100207","UTAHDWQ_WQX-UTLK220815-4994790-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4994790-0817-4-C/results/970100207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12638","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","15:22:00","MST","2022-09-21 22:22:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100220","UTAHDWQ_WQX-UTLK220919-4994790-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994790-0921-4-C/results/970100220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12639","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","15:22:00","MST","2022-09-21 22:22:00",NA,"0.823",823,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100227","UTAHDWQ_WQX-UTLK220919-4994790-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"40.3609500000",40.36095,"-111.8985100000",-111.89851,"OK","16020201","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3609500000","-111.8985100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994790-0921-4-C/results/970100227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12640","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","15:20:00","MST","2022-05-17 22:20:00",NA,"0.796",796,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100234","UTAHDWQ_WQX-UTLK220516-4994792-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994792-0517-4-C/results/970100234/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12641","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","15:20:00","MST","2022-05-17 22:20:00",NA,"0.881",881,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100240","UTAHDWQ_WQX-UTLK220516-4994792-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:32:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994792-0517-4-C/results/970100240/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12642","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","14:10:00","MST","2022-06-09 21:10:00",NA,"1.4",1400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100248","UTAHDWQ_WQX-UTLK220606-4994792-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994792-0609-4-C/results/970100248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12643","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","14:10:00","MST","2022-06-09 21:10:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100258","UTAHDWQ_WQX-UTLK220606-4994792-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994792-0609-4-C/results/970100258/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12644","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","15:15:00","MST","2022-07-20 22:15:00",NA,"1.18",1180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.177",0.177,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100270","UTAHDWQ_WQX-UTLK220718-4994792-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994792-0720-4-C/results/970100270/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12645","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","15:15:00","MST","2022-07-20 22:15:00",NA,"1.11",1110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.177",0.177,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100276","UTAHDWQ_WQX-UTLK220718-4994792-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994792-0720-4-C/results/970100276/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12646","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","15:15:00","MST","2022-08-17 22:15:00",NA,"0.63",630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100292","UTAHDWQ_WQX-UTLK220815-4994792-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4994792-0817-4-C/results/970100292/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12647","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","15:15:00","MST","2022-08-17 22:15:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100293","UTAHDWQ_WQX-UTLK220815-4994792-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4994792-0817-4-C/results/970100293/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12648","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","15:38:00","MST","2022-09-21 22:38:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100301","UTAHDWQ_WQX-UTLK220919-4994792-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994792-0921-4-C/results/970100301/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12649","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","15:38:00","MST","2022-09-21 22:38:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100307","UTAHDWQ_WQX-UTLK220919-4994792-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Saratoga Springs at Cedar Valley","River/Stream",NA,"40.3524200000",40.35242,"-111.9019500000",-111.90195,"OK","16020201","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3524200000","-111.9019500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994792-0921-4-C/results/970100307/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12650","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","14:45:00","MST","2022-07-20 21:45:00",NA,"0.894",894,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.373",0.373,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100323","UTAHDWQ_WQX-UTLK220718-4994804-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Creek at 145 N (Saratoga Springs)","River/Stream",NA,"40.3650400000",40.36504,"-111.8839300000",-111.88393,"OK","16020201","UTAHDWQ_WQX-4994804",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3650400000","-111.8839300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994804-0720-4-C/results/970100323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12651","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","14:45:00","MST","2022-07-20 21:45:00",NA,"0.933",933,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.373",0.373,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100330","UTAHDWQ_WQX-UTLK220718-4994804-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Dry Creek at 145 N (Saratoga Springs)","River/Stream",NA,"40.3650400000",40.36504,"-111.8839300000",-111.88393,"OK","16020201","UTAHDWQ_WQX-4994804",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3650400000","-111.8839300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994804-0720-4-C/results/970100330/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12652","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","15:50:00","MST","2022-04-11 22:50:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100338","UTAHDWQ_WQX-UTLK220404-4994950-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4994950-0411-4-C/results/970100338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12653","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","15:50:00","MST","2022-04-11 22:50:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100348","UTAHDWQ_WQX-UTLK220404-4994950-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4994950-0411-4-C/results/970100348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12654","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","14:40:00","MST","2022-05-17 21:40:00",NA,"0.902",902,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100361","UTAHDWQ_WQX-UTLK220516-4994950-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994950-0517-4-C/results/970100361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12655","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","14:40:00","MST","2022-05-17 21:40:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100364","UTAHDWQ_WQX-UTLK220516-4994950-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994950-0517-4-C/results/970100364/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12656","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","13:30:00","MST","2022-06-09 20:30:00",NA,"1.79",1790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100376","UTAHDWQ_WQX-UTLK220606-4994950-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994950-0609-4-C/results/970100376/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12657","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","13:30:00","MST","2022-06-09 20:30:00",NA,"1.83",1830,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100378","UTAHDWQ_WQX-UTLK220606-4994950-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994950-0609-4-C/results/970100378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12658","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","14:44:00","MST","2022-09-21 21:44:00",NA,"1.55",1550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100394","UTAHDWQ_WQX-UTLK220919-4994950-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994950-0921-4-C/results/970100394/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12659","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","14:44:00","MST","2022-09-21 21:44:00",NA,"1.34",1340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100396","UTAHDWQ_WQX-UTLK220919-4994950-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPRING CK BL LEHI MILL POND","River/Stream",NA,"40.3685600000",40.36856,"-111.8354900000",-111.83549,"OK","16020201","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3685600000","-111.8354900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994950-0921-4-C/results/970100396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12660","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","13:15:00","MST","2022-06-09 20:15:00",NA,"0.359",359,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100415","UTAHDWQ_WQX-UTLK220606-4994960-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","AMERICAN FK CK 2.5MI S OF AM FK CITY","River/Stream",NA,"40.3432800000",40.34328,"-111.8020700000",-111.80207,"OK","16020201","UTAHDWQ_WQX-4994960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3432800000","-111.8020700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994960-0609-4-C/results/970100415/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14120","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","13:15:00","MST","2022-06-09 20:15:00",NA,"0.361",361,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100423","UTAHDWQ_WQX-UTLK220606-4994960-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","AMERICAN FK CK 2.5MI S OF AM FK CITY","River/Stream",NA,"40.3432800000",40.34328,"-111.8020700000",-111.80207,"OK","16020201","UTAHDWQ_WQX-4994960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3432800000","-111.8020700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994960-0609-4-C/results/970100423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12662","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-12","11:40:00","MST","2022-04-12 18:40:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100436","UTAHDWQ_WQX-NPSETAL220410-4994970-0412-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:10",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4994970-0412-4-C/results/970100436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12663","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-12","11:40:00","MST","2022-04-12 18:40:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100452","UTAHDWQ_WQX-NPSETAL220410-4994970-0412-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:10",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4994970-0412-4-C/results/970100452/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14487","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-11","15:15:00","MST","2022-05-11 22:15:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100457","UTAHDWQ_WQX-NPSETAL220506-4994970-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4994970-0511-4-C/results/970100457/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12665","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-11","15:15:00","MST","2022-05-11 22:15:00",NA,"1.23",1230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100473","UTAHDWQ_WQX-NPSETAL220506-4994970-0511-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:11",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4994970-0511-4-C/results/970100473/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12666","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-06","17:45:00","MST","2022-06-07 00:45:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100484","UTAHDWQ_WQX-NPSETAL220603-4994970-0606-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4994970-0606-4-C/results/970100484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12667","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-06","17:45:00","MST","2022-06-07 00:45:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100489","UTAHDWQ_WQX-NPSETAL220603-4994970-0606-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:12",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4994970-0606-4-C/results/970100489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12668","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","10:48:00","MST","2022-07-12 17:48:00",NA,"1.25",1250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100511","UTAHDWQ_WQX-NPSETAL220707-4994970-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:14",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4994970-0712-4-C/results/970100511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14492","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","10:48:00","MST","2022-07-12 17:48:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100512","UTAHDWQ_WQX-NPSETAL220707-4994970-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:14",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4994970-0712-4-C/results/970100512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12670","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-12","10:22:00","MST","2022-08-12 17:22:00",NA,"1.21",1210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100523","UTAHDWQ_WQX-NPSETAL220808-4994970-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:15",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4994970-0812-4-C/results/970100523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12671","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-12","10:22:00","MST","2022-08-12 17:22:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100527","UTAHDWQ_WQX-NPSETAL220808-4994970-0812-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:15",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4994970-0812-4-C/results/970100527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14131","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-14","11:15:00","MST","2022-09-14 18:15:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100542","UTAHDWQ_WQX-NPSETAL220901-4994970-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:16",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4994970-0914-4-C/results/970100542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12673","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-14","11:15:00","MST","2022-09-14 18:15:00",NA,"1.22",1220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100556","UTAHDWQ_WQX-NPSETAL220901-4994970-0914-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","049","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"40.4375900000",40.43759,"-111.7115300000",-111.71153,"OK","16020201","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:16",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.4375900000","-111.7115300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4994970-0914-4-C/results/970100556/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12674","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","15:20:00","MST","2022-04-11 22:20:00",NA,"8.36",8360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100568","UTAHDWQ_WQX-UTLK220404-4995038-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995038-0411-4-C/results/970100568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12675","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","15:20:00","MST","2022-04-11 22:20:00",NA,"8.71",8710,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100570","UTAHDWQ_WQX-UTLK220404-4995038-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995038-0411-4-C/results/970100570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12676","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","14:20:00","MST","2022-05-17 21:20:00",NA,"7.8",7800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100581","UTAHDWQ_WQX-UTLK220516-4995038-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995038-0517-4-C/results/970100581/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12677","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","14:20:00","MST","2022-05-17 21:20:00",NA,"7.55",7550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100590","UTAHDWQ_WQX-UTLK220516-4995038-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995038-0517-4-C/results/970100590/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12678","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","13:15:00","MST","2022-06-09 20:15:00",NA,"7.12",7120,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100596","UTAHDWQ_WQX-UTLK220606-4995038-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995038-0609-4-C/results/970100596/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12679","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","13:15:00","MST","2022-06-09 20:15:00",NA,"7.06",7060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100607","UTAHDWQ_WQX-UTLK220606-4995038-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995038-0609-4-C/results/970100607/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12680","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","14:10:00","MST","2022-07-20 21:10:00",NA,"8",8000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.24",0.24,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100627","UTAHDWQ_WQX-UTLK220718-4995038-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995038-0720-4-C/results/970100627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12681","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","14:10:00","MST","2022-07-20 21:10:00",NA,"8.29",8290,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.24",0.24,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100632","UTAHDWQ_WQX-UTLK220718-4995038-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995038-0720-4-C/results/970100632/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12682","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","14:20:00","MST","2022-08-17 21:20:00",NA,"8.06",8060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100638","UTAHDWQ_WQX-UTLK220815-4995038-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995038-0817-4-C/results/970100638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12683","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","14:20:00","MST","2022-08-17 21:20:00",NA,"8.72",8720,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100649","UTAHDWQ_WQX-UTLK220815-4995038-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995038-0817-4-C/results/970100649/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12684","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","14:22:00","MST","2022-09-21 21:22:00",NA,"7.84",7840,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100655","UTAHDWQ_WQX-UTLK220919-4995038-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995038-0921-4-C/results/970100655/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12685","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","14:22:00","MST","2022-09-21 21:22:00",NA,"7.47",7470,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100657","UTAHDWQ_WQX-UTLK220919-4995038-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"40.3371900000",40.33719,"-111.7770100000",-111.77701,"OK","16020201","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3371900000","-111.7770100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995038-0921-4-C/results/970100657/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12686","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","15:30:00","MST","2022-04-11 22:30:00",NA,"4.92",4920,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100675","UTAHDWQ_WQX-UTLK220404-4995041-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995041-0411-4-C/results/970100675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12687","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","15:30:00","MST","2022-04-11 22:30:00",NA,"5.23",5230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100682","UTAHDWQ_WQX-UTLK220404-4995041-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995041-0411-4-C/results/970100682/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12688","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","14:10:00","MST","2022-05-17 21:10:00",NA,"2.02",2020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100692","UTAHDWQ_WQX-UTLK220516-4995041-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995041-0517-4-C/results/970100692/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12689","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","14:10:00","MST","2022-05-17 21:10:00",NA,"2.03",2030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100700","UTAHDWQ_WQX-UTLK220516-4995041-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995041-0517-4-C/results/970100700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12690","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","13:10:00","MST","2022-06-09 20:10:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100724","UTAHDWQ_WQX-UTLK220606-4995041-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995041-0609-4-C/results/970100724/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12691","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","13:10:00","MST","2022-06-09 20:10:00",NA,"1.24",1240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100725","UTAHDWQ_WQX-UTLK220606-4995041-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995041-0609-4-C/results/970100725/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12692","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","14:20:00","MST","2022-07-20 21:20:00",NA,"1.7",1700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.188",0.188,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100733","UTAHDWQ_WQX-UTLK220718-4995041-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995041-0720-4-C/results/970100733/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12693","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","14:20:00","MST","2022-07-20 21:20:00",NA,"1.6",1600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.188",0.188,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100746","UTAHDWQ_WQX-UTLK220718-4995041-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995041-0720-4-C/results/970100746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12694","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","14:30:00","MST","2022-08-17 21:30:00",NA,"3.19",3190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100752","UTAHDWQ_WQX-UTLK220815-4995041-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995041-0817-4-C/results/970100752/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12695","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","14:30:00","MST","2022-08-17 21:30:00",NA,"3.21",3210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100758","UTAHDWQ_WQX-UTLK220815-4995041-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995041-0817-4-C/results/970100758/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12696","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","14:33:00","MST","2022-09-21 21:33:00",NA,"2.18",2180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100772","UTAHDWQ_WQX-UTLK220919-4995041-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995041-0921-4-C/results/970100772/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14156","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","14:33:00","MST","2022-09-21 21:33:00",NA,"2.48",2480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100773","UTAHDWQ_WQX-UTLK220919-4995041-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"40.3366200000",40.33662,"-111.7768000000",-111.7768,"OK","16020201","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3366200000","-111.7768000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995041-0921-4-C/results/970100773/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12698","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","14:30:00","MST","2022-04-11 21:30:00",NA,"17.6",17600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100787","UTAHDWQ_WQX-UTLK220404-4995250-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995250-0411-4-C/results/970100787/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12699","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","14:30:00","MST","2022-04-11 21:30:00",NA,"17.3",17300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100789","UTAHDWQ_WQX-UTLK220404-4995250-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995250-0411-4-C/results/970100789/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14159","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","13:25:00","MST","2022-05-17 20:25:00",NA,"21.1",21100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100807","UTAHDWQ_WQX-UTLK220516-4995250-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995250-0517-4-C/results/970100807/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12701","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","13:25:00","MST","2022-05-17 20:25:00",NA,"21.3",21300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100810","UTAHDWQ_WQX-UTLK220516-4995250-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995250-0517-4-C/results/970100810/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12702","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","12:40:00","MST","2022-06-09 19:40:00",NA,"21.8",21800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100825","UTAHDWQ_WQX-UTLK220606-4995250-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995250-0609-4-C/results/970100825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12703","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","12:40:00","MST","2022-06-09 19:40:00",NA,"22",22000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100827","UTAHDWQ_WQX-UTLK220606-4995250-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995250-0609-4-C/results/970100827/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12704","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","13:40:00","MST","2022-07-20 20:40:00",NA,"16.6",16600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.198",0.198,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100852","UTAHDWQ_WQX-UTLK220718-4995250-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995250-0720-4-C/results/970100852/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12705","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","13:40:00","MST","2022-07-20 20:40:00",NA,"16.9",16900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.198",0.198,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100854","UTAHDWQ_WQX-UTLK220718-4995250-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995250-0720-4-C/results/970100854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12706","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","13:30:00","MST","2022-08-17 20:30:00",NA,"13.3",13300,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100862","UTAHDWQ_WQX-UTLK220815-4995250-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995250-0817-4-C/results/970100862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12707","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","13:30:00","MST","2022-08-17 20:30:00",NA,"13.4",13400,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100869","UTAHDWQ_WQX-UTLK220815-4995250-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995250-0817-4-C/results/970100869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12708","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","14:45:00","MST","2022-09-21 21:45:00",NA,"16.1",16100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100887","UTAHDWQ_WQX-UTLK220919-4995250-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995250-0921-4-C/results/970100887/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12709","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","14:45:00","MST","2022-09-21 21:45:00",NA,"16.6",16600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100898","UTAHDWQ_WQX-UTLK220919-4995250-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","OREM WWTP","Facility Other",NA,"40.2769400000",40.27694,"-111.7443000000",-111.7443,"OK","16020201","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2769400000","-111.7443000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995250-0921-4-C/results/970100898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12710","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","14:20:00","MST","2022-04-11 21:20:00",NA,"0.542",542,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100910","UTAHDWQ_WQX-UTLK220404-4995252-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995252-0411-4-C/results/970100910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12711","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","14:20:00","MST","2022-04-11 21:20:00",NA,"0.523",523,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100911","UTAHDWQ_WQX-UTLK220404-4995252-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995252-0411-4-C/results/970100911/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12712","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","13:20:00","MST","2022-05-17 20:20:00",NA,"0.698",698,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100920","UTAHDWQ_WQX-UTLK220516-4995252-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995252-0517-4-C/results/970100920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12713","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","13:20:00","MST","2022-05-17 20:20:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100936","UTAHDWQ_WQX-UTLK220516-4995252-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995252-0517-4-C/results/970100936/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12714","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","12:30:00","MST","2022-06-09 19:30:00",NA,"0.726",726,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100938","UTAHDWQ_WQX-UTLK220606-4995252-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995252-0609-4-C/results/970100938/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12715","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","12:30:00","MST","2022-06-09 19:30:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100954","UTAHDWQ_WQX-UTLK220606-4995252-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995252-0609-4-C/results/970100954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12716","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","13:30:00","MST","2022-07-20 20:30:00",NA,"0.611",611,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.232",0.232,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100964","UTAHDWQ_WQX-UTLK220718-4995252-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995252-0720-4-C/results/970100964/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12717","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","13:30:00","MST","2022-07-20 20:30:00",NA,"0.751",751,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.232",0.232,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100972","UTAHDWQ_WQX-UTLK220718-4995252-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995252-0720-4-C/results/970100972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12718","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","13:20:00","MST","2022-08-17 20:20:00",NA,"1.2",1200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100977","UTAHDWQ_WQX-UTLK220815-4995252-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995252-0817-4-C/results/970100977/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12719","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","13:20:00","MST","2022-08-17 20:20:00",NA,"0.732",732,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970100981","UTAHDWQ_WQX-UTLK220815-4995252-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995252-0817-4-C/results/970100981/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12720","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","15:00:00","MST","2022-09-21 22:00:00",NA,"0.849",849,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101010","UTAHDWQ_WQX-UTLK220919-4995252-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995252-0921-4-C/results/970101010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12721","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","15:00:00","MST","2022-09-21 22:00:00",NA,"1.37",1370,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101012","UTAHDWQ_WQX-UTLK220919-4995252-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Clegg's Pond OUTFALL-WLA","River/Stream",NA,"40.2770500000",40.27705,"-111.7445800000",-111.74458,"OK","16020201","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2770500000","-111.7445800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995252-0921-4-C/results/970101012/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12722","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","10:30:00","MST","2022-04-11 17:30:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101015","UTAHDWQ_WQX-UTLK220404-4995310-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995310-0411-4-C/results/970101015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14577","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","10:30:00","MST","2022-04-11 17:30:00",NA,"0.925",925,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101021","UTAHDWQ_WQX-UTLK220404-4995310-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995310-0411-4-C/results/970101021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12724","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","09:40:00","MST","2022-05-17 16:40:00",NA,"0.673",673,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101032","UTAHDWQ_WQX-UTLK220516-4995310-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995310-0517-4-C/results/970101032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12725","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","09:40:00","MST","2022-05-17 16:40:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101042","UTAHDWQ_WQX-UTLK220516-4995310-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"39.9524400000",39.95244,"-111.9336300000",-111.93363,"OK","16020201","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.9524400000","-111.9336300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995310-0517-4-C/results/970101042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14511","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","11:15:00","MST","2022-04-11 18:15:00",NA,"3.64",3640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101061","UTAHDWQ_WQX-UTLK220404-4995465-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995465-0411-4-C/results/970101061/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12727","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","11:15:00","MST","2022-04-11 18:15:00",NA,"3.99",3990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101064","UTAHDWQ_WQX-UTLK220404-4995465-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995465-0411-4-C/results/970101064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12728","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","10:30:00","MST","2022-05-17 17:30:00",NA,"2.13",2130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101077","UTAHDWQ_WQX-UTLK220516-4995465-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995465-0517-4-C/results/970101077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12729","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","10:30:00","MST","2022-05-17 17:30:00",NA,"1.99",1990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101080","UTAHDWQ_WQX-UTLK220516-4995465-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995465-0517-4-C/results/970101080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12730","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","10:40:00","MST","2022-06-09 17:40:00",NA,"1.28",1280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101088","UTAHDWQ_WQX-UTLK220606-4995465-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995465-0609-4-C/results/970101088/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12731","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","10:40:00","MST","2022-06-09 17:40:00",NA,"0.963",963,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101099","UTAHDWQ_WQX-UTLK220606-4995465-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995465-0609-4-C/results/970101099/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12732","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","10:40:00","MST","2022-07-20 17:40:00",NA,"2.59",2590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.186",0.186,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101108","UTAHDWQ_WQX-UTLK220718-4995465-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995465-0720-4-C/results/970101108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12733","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","10:40:00","MST","2022-07-20 17:40:00",NA,"2.09",2090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.186",0.186,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101114","UTAHDWQ_WQX-UTLK220718-4995465-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995465-0720-4-C/results/970101114/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12734","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","09:45:00","MST","2022-08-17 16:45:00",NA,"1.61",1610,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101127","UTAHDWQ_WQX-UTLK220815-4995465-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995465-0817-4-C/results/970101127/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12735","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","09:45:00","MST","2022-08-17 16:45:00",NA,"1.52",1520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101138","UTAHDWQ_WQX-UTLK220815-4995465-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995465-0817-4-C/results/970101138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12736","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:30:00","MST","2022-09-21 17:30:00",NA,"1.32",1320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101153","UTAHDWQ_WQX-UTLK220919-4995465-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995465-0921-4-C/results/970101153/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12737","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:30:00","MST","2022-09-21 17:30:00",NA,"1.46",1460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101161","UTAHDWQ_WQX-UTLK220919-4995465-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Beer Creek/Benjamin Slough","River/Stream",NA,"40.1328700000",40.13287,"-111.7914900000",-111.79149,"OK","16020201","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1328700000","-111.7914900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995465-0921-4-C/results/970101161/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12738","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","12:20:00","MST","2022-04-11 19:20:00",NA,"0.98",980,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101165","UTAHDWQ_WQX-UTLK220404-4995578-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995578-0411-4-C/results/970101165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12739","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","12:20:00","MST","2022-04-11 19:20:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101166","UTAHDWQ_WQX-UTLK220404-4995578-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995578-0411-4-C/results/970101166/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12740","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","11:15:00","MST","2022-05-17 18:15:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101186","UTAHDWQ_WQX-UTLK220516-4995578-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995578-0517-4-C/results/970101186/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12741","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","11:15:00","MST","2022-05-17 18:15:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101194","UTAHDWQ_WQX-UTLK220516-4995578-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995578-0517-4-C/results/970101194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12742","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","10:45:00","MST","2022-06-09 17:45:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101207","UTAHDWQ_WQX-UTLK220606-4995578-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995578-0609-4-C/results/970101207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12743","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","10:45:00","MST","2022-06-09 17:45:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101216","UTAHDWQ_WQX-UTLK220606-4995578-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995578-0609-4-C/results/970101216/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12744","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","10:20:00","MST","2022-08-17 17:20:00",NA,"1.67",1670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101218","UTAHDWQ_WQX-UTLK220815-4995578-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995578-0817-4-C/results/970101218/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12745","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:20:00","MST","2022-08-17 17:20:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101227","UTAHDWQ_WQX-UTLK220815-4995578-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995578-0817-4-C/results/970101227/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12746","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","11:00:00","MST","2022-09-21 18:00:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101248","UTAHDWQ_WQX-UTLK220919-4995578-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995578-0921-4-C/results/970101248/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12747","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","11:00:00","MST","2022-09-21 18:00:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101249","UTAHDWQ_WQX-UTLK220919-4995578-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"40.1577900000",40.15779,"-111.7307600000",-111.73076,"OK","16020202","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1577900000","-111.7307600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995578-0921-4-C/results/970101249/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12748","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","12:45:00","MST","2022-04-11 19:45:00",NA,"11.5",11500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101253","UTAHDWQ_WQX-UTLK220404-4996000-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996000-0411-4-C/results/970101253/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12749","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","12:45:00","MST","2022-04-11 19:45:00",NA,"11.1",11100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101265","UTAHDWQ_WQX-UTLK220404-4996000-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996000-0411-4-C/results/970101265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12750","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","11:30:00","MST","2022-05-17 18:30:00",NA,"6.88",6880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101274","UTAHDWQ_WQX-UTLK220516-4996000-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996000-0517-4-C/results/970101274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12751","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","11:30:00","MST","2022-05-17 18:30:00",NA,"7.38",7380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101280","UTAHDWQ_WQX-UTLK220516-4996000-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996000-0517-4-C/results/970101280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12752","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","11:00:00","MST","2022-06-09 18:00:00",NA,"7.18",7180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101294","UTAHDWQ_WQX-UTLK220606-4996000-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996000-0609-4-C/results/970101294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12753","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","11:00:00","MST","2022-06-09 18:00:00",NA,"7.67",7670,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101300","UTAHDWQ_WQX-UTLK220606-4996000-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996000-0609-4-C/results/970101300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12754","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","11:15:00","MST","2022-07-20 18:15:00",NA,"7.11",7110,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.259",0.259,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101312","UTAHDWQ_WQX-UTLK220718-4996000-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996000-0720-4-C/results/970101312/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12755","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","11:15:00","MST","2022-07-20 18:15:00",NA,"7.58",7580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.259",0.259,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101313","UTAHDWQ_WQX-UTLK220718-4996000-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996000-0720-4-C/results/970101313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12756","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:30:00","MST","2022-08-17 17:30:00",NA,"6.99",6990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101331","UTAHDWQ_WQX-UTLK220815-4996000-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996000-0817-4-C/results/970101331/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12757","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","10:30:00","MST","2022-08-17 17:30:00",NA,"7.41",7410,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101339","UTAHDWQ_WQX-UTLK220815-4996000-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996000-0817-4-C/results/970101339/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12758","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","11:20:00","MST","2022-09-21 18:20:00",NA,"8.77",8770,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101353","UTAHDWQ_WQX-UTLK220919-4996000-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996000-0921-4-C/results/970101353/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12759","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","11:20:00","MST","2022-09-21 18:20:00",NA,"8.14",8140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101358","UTAHDWQ_WQX-UTLK220919-4996000-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"40.1585300000",40.15853,"-111.6638100000",-111.66381,"OK","16020202","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1585300000","-111.6638100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996000-0921-4-C/results/970101358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12760","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","13:10:00","MST","2022-04-11 20:10:00",NA,"0.729",729,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101374","UTAHDWQ_WQX-UTLK220404-4996100-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996100-0411-4-C/results/970101374/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12761","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","13:10:00","MST","2022-04-11 20:10:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101378","UTAHDWQ_WQX-UTLK220404-4996100-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996100-0411-4-C/results/970101378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12762","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","12:05:00","MST","2022-05-17 19:05:00",NA,"0.465",465,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101390","UTAHDWQ_WQX-UTLK220516-4996100-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996100-0517-4-C/results/970101390/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12763","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","12:05:00","MST","2022-05-17 19:05:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101398","UTAHDWQ_WQX-UTLK220516-4996100-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996100-0517-4-C/results/970101398/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12764","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","11:20:00","MST","2022-06-09 18:20:00",NA,"0.551",551,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101411","UTAHDWQ_WQX-UTLK220606-4996100-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996100-0609-4-C/results/970101411/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12765","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","11:20:00","MST","2022-06-09 18:20:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101417","UTAHDWQ_WQX-UTLK220606-4996100-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996100-0609-4-C/results/970101417/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12766","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","12:00:00","MST","2022-07-20 19:00:00",NA,"0.998",998,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.212",0.212,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101425","UTAHDWQ_WQX-UTLK220718-4996100-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996100-0720-4-C/results/970101425/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12767","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","12:00:00","MST","2022-07-20 19:00:00",NA,"0.689",689,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.212",0.212,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101426","UTAHDWQ_WQX-UTLK220718-4996100-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996100-0720-4-C/results/970101426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12768","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","11:15:00","MST","2022-08-17 18:15:00",NA,"0.489",489,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101441","UTAHDWQ_WQX-UTLK220815-4996100-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996100-0817-4-C/results/970101441/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12769","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","11:15:00","MST","2022-08-17 18:15:00",NA,"0.597",597,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101443","UTAHDWQ_WQX-UTLK220815-4996100-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996100-0817-4-C/results/970101443/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12770","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","12:00:00","MST","2022-09-21 19:00:00",NA,"0.644",644,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101463","UTAHDWQ_WQX-UTLK220919-4996100-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996100-0921-4-C/results/970101463/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12771","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","12:00:00","MST","2022-09-21 19:00:00",NA,"0.996",996,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101465","UTAHDWQ_WQX-UTLK220919-4996100-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"40.1840000000",40.184,"-111.6472700000",-111.64727,"OK","16020202","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1840000000","-111.6472700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996100-0921-4-C/results/970101465/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12772","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","13:15:00","MST","2022-04-11 20:15:00",NA,"7.6",7600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101479","UTAHDWQ_WQX-UTLK220404-4996275-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996275-0411-4-C/results/970101479/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12773","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","13:15:00","MST","2022-04-11 20:15:00",NA,"8.39",8390,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101484","UTAHDWQ_WQX-UTLK220404-4996275-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996275-0411-4-C/results/970101484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12774","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","12:10:00","MST","2022-05-17 19:10:00",NA,"6.43",6430,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101495","UTAHDWQ_WQX-UTLK220516-4996275-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996275-0517-4-C/results/970101495/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12775","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","12:10:00","MST","2022-05-17 19:10:00",NA,"6.62",6620,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101496","UTAHDWQ_WQX-UTLK220516-4996275-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996275-0517-4-C/results/970101496/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12776","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","11:25:00","MST","2022-06-09 18:25:00",NA,"6.19",6190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101522","UTAHDWQ_WQX-UTLK220606-4996275-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996275-0609-4-C/results/970101522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12777","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","11:25:00","MST","2022-06-09 18:25:00",NA,"5.95",5950,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101523","UTAHDWQ_WQX-UTLK220606-4996275-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996275-0609-4-C/results/970101523/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12778","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","12:15:00","MST","2022-07-20 19:15:00",NA,"8.59",8590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.204",0.204,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101532","UTAHDWQ_WQX-UTLK220718-4996275-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996275-0720-4-C/results/970101532/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12779","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","12:15:00","MST","2022-07-20 19:15:00",NA,"8.19",8190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.204",0.204,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101543","UTAHDWQ_WQX-UTLK220718-4996275-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996275-0720-4-C/results/970101543/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12780","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","11:25:00","MST","2022-08-17 18:25:00",NA,"9.19",9190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101545","UTAHDWQ_WQX-UTLK220815-4996275-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996275-0817-4-C/results/970101545/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12781","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","11:25:00","MST","2022-08-17 18:25:00",NA,"9.25",9250,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101554","UTAHDWQ_WQX-UTLK220815-4996275-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996275-0817-4-C/results/970101554/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12782","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","12:15:00","MST","2022-09-21 19:15:00",NA,"10.6",10600,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101571","UTAHDWQ_WQX-UTLK220919-4996275-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996275-0921-4-C/results/970101571/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12783","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","12:15:00","MST","2022-09-21 19:15:00",NA,"10.9",10900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101572","UTAHDWQ_WQX-UTLK220919-4996275-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","Spring Creek at I-15 Frontage Road","River/Stream",NA,"40.1895800000",40.18958,"-111.6489800000",-111.64898,"OK","16020201","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1895800000","-111.6489800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996275-0921-4-C/results/970101572/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12784","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","13:40:00","MST","2022-04-11 20:40:00",NA,"10.8",10800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101582","UTAHDWQ_WQX-UTLK220404-4996540-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996540-0411-4-C/results/970101582/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12785","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","13:40:00","MST","2022-04-11 20:40:00",NA,"11.1",11100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101594","UTAHDWQ_WQX-UTLK220404-4996540-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996540-0411-4-C/results/970101594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12786","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","12:20:00","MST","2022-05-17 19:20:00",NA,"8.58",8580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101605","UTAHDWQ_WQX-UTLK220516-4996540-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996540-0517-4-C/results/970101605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12787","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","12:20:00","MST","2022-05-17 19:20:00",NA,"8.99",8990,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101615","UTAHDWQ_WQX-UTLK220516-4996540-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996540-0517-4-C/results/970101615/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12788","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","11:40:00","MST","2022-06-09 18:40:00",NA,"9.53",9530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101634","UTAHDWQ_WQX-UTLK220606-4996540-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996540-0609-4-C/results/970101634/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12789","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","11:40:00","MST","2022-06-09 18:40:00",NA,"9.5",9500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101636","UTAHDWQ_WQX-UTLK220606-4996540-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996540-0609-4-C/results/970101636/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12790","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","12:45:00","MST","2022-07-20 19:45:00",NA,"9.14",9140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.228",0.228,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101638","UTAHDWQ_WQX-UTLK220718-4996540-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996540-0720-4-C/results/970101638/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12791","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","12:45:00","MST","2022-07-20 19:45:00",NA,"9.26",9260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.228",0.228,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101647","UTAHDWQ_WQX-UTLK220718-4996540-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996540-0720-4-C/results/970101647/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12792","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","12:00:00","MST","2022-08-17 19:00:00",NA,"7.76",7760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101664","UTAHDWQ_WQX-UTLK220815-4996540-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996540-0817-4-C/results/970101664/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12793","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","12:00:00","MST","2022-08-17 19:00:00",NA,"8.09",8090,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101673","UTAHDWQ_WQX-UTLK220815-4996540-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996540-0817-4-C/results/970101673/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12794","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","12:45:00","MST","2022-09-21 19:45:00",NA,"12.1",12100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101679","UTAHDWQ_WQX-UTLK220919-4996540-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:33:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996540-0921-4-C/results/970101679/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12795","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","12:45:00","MST","2022-09-21 19:45:00",NA,"11.8",11800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101684","UTAHDWQ_WQX-UTLK220919-4996540-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"40.2030900000",40.20309,"-111.6562100000",-111.65621,"OK","16020201","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2030900000","-111.6562100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996540-0921-4-C/results/970101684/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12796","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","13:30:00","MST","2022-04-11 20:30:00",NA,"9.38",9380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101700","UTAHDWQ_WQX-UTLK220404-4996566-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996566-0411-4-C/results/970101700/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12797","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","13:30:00","MST","2022-04-11 20:30:00",NA,"9.22",9220,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101707","UTAHDWQ_WQX-UTLK220404-4996566-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996566-0411-4-C/results/970101707/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9518","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","12:15:00","MST","2022-05-17 19:15:00",NA,"7.49",7490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101714","UTAHDWQ_WQX-UTLK220516-4996566-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996566-0517-4-C/results/970101714/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12799","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","12:15:00","MST","2022-05-17 19:15:00",NA,"8",8000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101730","UTAHDWQ_WQX-UTLK220516-4996566-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996566-0517-4-C/results/970101730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12800","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","11:30:00","MST","2022-06-09 18:30:00",NA,"6.68",6680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101737","UTAHDWQ_WQX-UTLK220606-4996566-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996566-0609-4-C/results/970101737/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12801","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","11:30:00","MST","2022-06-09 18:30:00",NA,"6.65",6650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101746","UTAHDWQ_WQX-UTLK220606-4996566-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996566-0609-4-C/results/970101746/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12802","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","12:30:00","MST","2022-07-20 19:30:00",NA,"6.45",6450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.188",0.188,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101759","UTAHDWQ_WQX-UTLK220718-4996566-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996566-0720-4-C/results/970101759/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12803","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","12:30:00","MST","2022-07-20 19:30:00",NA,"6.7",6700,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.188",0.188,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101765","UTAHDWQ_WQX-UTLK220718-4996566-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996566-0720-4-C/results/970101765/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9524","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","11:40:00","MST","2022-08-17 18:40:00",NA,"7.03",7030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101771","UTAHDWQ_WQX-UTLK220815-4996566-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996566-0817-4-C/results/970101771/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9525","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","11:40:00","MST","2022-08-17 18:40:00",NA,"6.58",6580,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101785","UTAHDWQ_WQX-UTLK220815-4996566-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996566-0817-4-C/results/970101785/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9526","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","12:30:00","MST","2022-09-21 19:30:00",NA,"7.88",7880,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101798","UTAHDWQ_WQX-UTLK220919-4996566-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996566-0921-4-C/results/970101798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9527","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","12:30:00","MST","2022-09-21 19:30:00",NA,"7.65",7650,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101806","UTAHDWQ_WQX-UTLK220919-4996566-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO STATION 6-WLA","River/Stream",NA,"40.2021000000",40.2021,"-111.6536600000",-111.65366,"OK","16020201","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2021000000","-111.6536600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996566-0921-4-C/results/970101806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9528","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","14:00:00","MST","2022-04-11 21:00:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101813","UTAHDWQ_WQX-UTLK220404-4996680-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996680-0411-4-C/results/970101813/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9529","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","14:00:00","MST","2022-04-11 21:00:00",NA,"0.646",646,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101814","UTAHDWQ_WQX-UTLK220404-4996680-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996680-0411-4-C/results/970101814/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9530","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","12:45:00","MST","2022-05-17 19:45:00",NA,"0.495",495,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101833","UTAHDWQ_WQX-UTLK220516-4996680-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996680-0517-4-C/results/970101833/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12811","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","12:45:00","MST","2022-05-17 19:45:00",NA,"0.499",499,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101838","UTAHDWQ_WQX-UTLK220516-4996680-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996680-0517-4-C/results/970101838/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9532","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","12:00:00","MST","2022-06-09 19:00:00",NA,"0.8",800,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101853","UTAHDWQ_WQX-UTLK220606-4996680-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996680-0609-4-C/results/970101853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9533","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","12:00:00","MST","2022-06-09 19:00:00",NA,"0.768",768,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101860","UTAHDWQ_WQX-UTLK220606-4996680-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996680-0609-4-C/results/970101860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12814","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","13:00:00","MST","2022-07-20 20:00:00",NA,"0.765",765,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.21",0.21,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101871","UTAHDWQ_WQX-UTLK220718-4996680-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996680-0720-4-C/results/970101871/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9535","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","13:00:00","MST","2022-07-20 20:00:00",NA,"0.9",900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.21",0.21,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101876","UTAHDWQ_WQX-UTLK220718-4996680-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996680-0720-4-C/results/970101876/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9536","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","12:15:00","MST","2022-08-17 19:15:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101880","UTAHDWQ_WQX-UTLK220815-4996680-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996680-0817-4-C/results/970101880/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9537","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","12:15:00","MST","2022-08-17 19:15:00",NA,"0.753",753,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101897","UTAHDWQ_WQX-UTLK220815-4996680-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996680-0817-4-C/results/970101897/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9538","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","13:00:00","MST","2022-09-21 20:00:00",NA,"0.515",515,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101908","UTAHDWQ_WQX-UTLK220919-4996680-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996680-0921-4-C/results/970101908/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12819","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","13:00:00","MST","2022-09-21 20:00:00",NA,"0.295",295,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101910","UTAHDWQ_WQX-UTLK220919-4996680-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"40.2369000000",40.2369,"-111.7316000000",-111.7316,"OK","16020201","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.2369000000","-111.7316000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996680-0921-4-C/results/970101910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9540","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","10:49:00","MST","2022-05-18 17:49:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101919","UTAHDWQ_WQX-MAINCK220518-4996903-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996903-0518-4-C/results/970101919/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9541","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","10:49:00","MST","2022-05-18 17:49:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101923","UTAHDWQ_WQX-MAINCK220518-4996903-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996903-0518-4-C/results/970101923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12822","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","13:45:00","MST","2022-06-14 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101949","UTAHDWQ_WQX-MAINCK220614-4996903-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996903-0614-4-C/results/970101949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9543","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","13:45:00","MST","2022-06-14 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101951","UTAHDWQ_WQX-MAINCK220614-4996903-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996903-0614-4-C/results/970101951/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9544","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","09:44:00","MST","2022-07-20 16:44:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101956","UTAHDWQ_WQX-MAINCK220720-4996903-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-4996903-0720-4-C/results/970101956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9545","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","09:44:00","MST","2022-07-20 16:44:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101957","UTAHDWQ_WQX-MAINCK220720-4996903-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-4996903-0720-4-C/results/970101957/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9546","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:58:00","MST","2022-09-21 17:58:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101963","UTAHDWQ_WQX-MAINCK220921-4996903-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-4996903-0921-4-C/results/970101963/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9547","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:58:00","MST","2022-09-21 17:58:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101967","UTAHDWQ_WQX-MAINCK220921-4996903-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-4996903-0921-4-C/results/970101967/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9548","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","09:44:00","MST","2022-05-18 16:44:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101970","UTAHDWQ_WQX-MAINCK220518-4996905-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996905-0518-4-C/results/970101970/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9549","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","09:44:00","MST","2022-05-18 16:44:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101972","UTAHDWQ_WQX-MAINCK220518-4996905-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996905-0518-4-C/results/970101972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9550","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","12:16:00","MST","2022-06-14 19:16:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101983","UTAHDWQ_WQX-MAINCK220614-4996905-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996905-0614-4-C/results/970101983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9551","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","12:16:00","MST","2022-06-14 19:16:00",NA,"0.603",603,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101987","UTAHDWQ_WQX-MAINCK220614-4996905-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996905-0614-4-C/results/970101987/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9552","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","09:46:00","MST","2022-05-18 16:46:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101992","UTAHDWQ_WQX-MAINCK220518-4996906-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996906-0518-4-C/results/970101992/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9553","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","09:46:00","MST","2022-05-18 16:46:00",NA,"0.348",348,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970101993","UTAHDWQ_WQX-MAINCK220518-4996906-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996906-0518-4-C/results/970101993/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12834","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","12:25:00","MST","2022-06-14 19:25:00",NA,"0.588",588,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102002","UTAHDWQ_WQX-MAINCK220614-4996906-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996906-0614-4-C/results/970102002/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12835","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","12:25:00","MST","2022-06-14 19:25:00",NA,"0.59",590,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102005","UTAHDWQ_WQX-MAINCK220614-4996906-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","40.3861100000",40.38611,"-111.4348200000",-111.43482,"OK","16020203","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3861100000","-111.4348200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996906-0614-4-C/results/970102005/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12836","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","09:13:00","MST","2022-05-18 16:13:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102010","UTAHDWQ_WQX-MAINCK220518-4996910-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996910-0518-4-C/results/970102010/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12837","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","09:13:00","MST","2022-05-18 16:13:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102011","UTAHDWQ_WQX-MAINCK220518-4996910-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996910-0518-4-C/results/970102011/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12838","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","11:53:00","MST","2022-06-14 18:53:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102021","UTAHDWQ_WQX-MAINCK220614-4996910-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996910-0614-4-C/results/970102021/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12839","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","11:53:00","MST","2022-06-14 18:53:00",NA,"0.292",292,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102022","UTAHDWQ_WQX-MAINCK220614-4996910-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"40.3755100000",40.37551,"-111.4246300000",-111.42463,"OK","16020203","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3755100000","-111.4246300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996910-0614-4-C/results/970102022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12840","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","08:53:00","MST","2022-05-18 15:53:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102026","UTAHDWQ_WQX-MAINCK220518-4996913-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996913-0518-4-C/results/970102026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12841","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","08:53:00","MST","2022-05-18 15:53:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102030","UTAHDWQ_WQX-MAINCK220518-4996913-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996913-0518-4-C/results/970102030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12842","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","11:32:00","MST","2022-06-14 18:32:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102034","UTAHDWQ_WQX-MAINCK220614-4996913-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996913-0614-4-C/results/970102034/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12843","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","11:32:00","MST","2022-06-14 18:32:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102038","UTAHDWQ_WQX-MAINCK220614-4996913-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996913-0614-4-C/results/970102038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12844","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-26","12:00:00","MST","2022-07-26 19:00:00",NA,"0.409",409,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102086","UTAHDWQ_WQX-LAKES220726-5900970-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","CUTLER RES AB DAM 01","Lake",NA,"41.8377000000",41.8377,"-112.0443900000",-112.04439,"OK","16010202","UTAHDWQ_WQX-5900970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8377000000","-112.0443900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900970-0726-2-C/results/970102086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12845","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-26","12:00:00","MST","2022-07-26 19:00:00",NA,"0.401",401,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102100","UTAHDWQ_WQX-LAKES220726-5900970-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","003","CUTLER RES AB DAM 01","Lake",NA,"41.8377000000",41.8377,"-112.0443900000",-112.04439,"OK","16010202","UTAHDWQ_WQX-5900970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8377000000","-112.0443900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900970-0726-2-C/results/970102100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12846","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-26","11:40:00","MST","2022-07-26 18:40:00",NA,"0.861",861,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102101","UTAHDWQ_WQX-LAKES220726-5900980-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES E OF HIGHWAY BRIDGE 02","Lake",NA,"41.8435300000",41.84353,"-112.0024500000",-112.00245,"OK","16010202","UTAHDWQ_WQX-5900980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8435300000","-112.0024500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900980-0726-2-C/results/970102101/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12847","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-26","11:40:00","MST","2022-07-26 18:40:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102110","UTAHDWQ_WQX-LAKES220726-5900980-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES E OF HIGHWAY BRIDGE 02","Lake",NA,"41.8435300000",41.84353,"-112.0024500000",-112.00245,"OK","16010202","UTAHDWQ_WQX-5900980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8435300000","-112.0024500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900980-0726-2-C/results/970102110/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12848","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-26","11:10:00","MST","2022-07-26 18:10:00",NA,"0.898",898,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102116","UTAHDWQ_WQX-LAKES220726-5900990-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES AT CNFL / CLAY SLOUGH 03","Lake",NA,"41.8249300000",41.82493,"-111.9532800000",-111.95328,"OK","16010202","UTAHDWQ_WQX-5900990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8249300000","-111.9532800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900990-0726-2-C/results/970102116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12849","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-26","11:10:00","MST","2022-07-26 18:10:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102120","UTAHDWQ_WQX-LAKES220726-5900990-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES AT CNFL / CLAY SLOUGH 03","Lake",NA,"41.8249300000",41.82493,"-111.9532800000",-111.95328,"OK","16010202","UTAHDWQ_WQX-5900990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8249300000","-111.9532800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900990-0726-2-C/results/970102120/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12850","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-26","10:50:00","MST","2022-07-26 17:50:00",NA,"1.05",1050,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102131","UTAHDWQ_WQX-LAKES220726-5901000-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"41.7871500000",41.78715,"-111.9549500000",-111.95495,"OK","16010202","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7871500000","-111.9549500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5901000-0726-2-C/results/970102131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14513","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-26","10:50:00","MST","2022-07-26 17:50:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102138","UTAHDWQ_WQX-LAKES220726-5901000-0726-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"41.7871500000",41.78715,"-111.9549500000",-111.95495,"OK","16010202","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.7871500000","-111.9549500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5901000-0726-2-C/results/970102138/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12852","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","12:10:00","MST","2022-07-28 19:10:00",NA,"0.387",387,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102148","UTAHDWQ_WQX-LAKES220726-5902750-0728-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","TONY GROVE LAKE 01","Lake",NA,"41.8932600000",41.89326,"-111.6428600000",-111.64286,"OK","16010203","UTAHDWQ_WQX-5902750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8932600000","-111.6428600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902750-0728-2-C/results/970102148/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12853","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","12:10:00","MST","2022-07-28 19:10:00",NA,"0.285",285,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102150","UTAHDWQ_WQX-LAKES220726-5902750-0728-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","TONY GROVE LAKE 01","Lake",NA,"41.8932600000",41.89326,"-111.6428600000",-111.64286,"OK","16010203","UTAHDWQ_WQX-5902750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8932600000","-111.6428600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902750-0728-2-C/results/970102150/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14516","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","12:30:00","MST","2022-07-28 19:30:00",NA,"0.198",198,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.4",3.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102155","UTAHDWQ_WQX-LAKES220726-5902750-0728-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","TONY GROVE LAKE 01","Lake",NA,"41.8932600000",41.89326,"-111.6428600000",-111.64286,"OK","16010203","UTAHDWQ_WQX-5902750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8932600000","-111.6428600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902750-0728-29-C/results/970102155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12855","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","12:30:00","MST","2022-07-28 19:30:00",NA,"0.302",302,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.4",3.4,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102170","UTAHDWQ_WQX-LAKES220726-5902750-0728-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","TONY GROVE LAKE 01","Lake",NA,"41.8932600000",41.89326,"-111.6428600000",-111.64286,"OK","16010203","UTAHDWQ_WQX-5902750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8932600000","-111.6428600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902750-0728-29-C/results/970102170/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12856","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","13:15:00","MST","2022-07-28 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102186","UTAHDWQ_WQX-LAKES220726-5902780-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","STREAM AB TONY GROVE LAKE","River/Stream",NA,"41.8974300000",41.89743,"-111.6446600000",-111.64466,"OK","16010203","UTAHDWQ_WQX-5902780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8974300000","-111.6446600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902780-0728-4-C/results/970102186/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12857","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","13:15:00","MST","2022-07-28 20:15:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102196","UTAHDWQ_WQX-LAKES220726-5902780-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","005","STREAM AB TONY GROVE LAKE","River/Stream",NA,"41.8974300000",41.89743,"-111.6446600000",-111.64466,"OK","16010203","UTAHDWQ_WQX-5902780",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"41.8974300000","-111.6446600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902780-0728-4-C/results/970102196/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12858","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","09:23:00","MST","2022-05-18 16:23:00",NA,"1.96",1960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102211","UTAHDWQ_WQX-MAINCK220518-5910280-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910280-0518-4-C/results/970102211/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14561","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","09:23:00","MST","2022-05-18 16:23:00",NA,"1.96",1960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102216","UTAHDWQ_WQX-MAINCK220518-5910280-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910280-0518-4-C/results/970102216/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12860","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","12:02:00","MST","2022-06-14 19:02:00",NA,"2.1",2100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102219","UTAHDWQ_WQX-MAINCK220614-5910280-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910280-0614-4-C/results/970102219/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12861","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","12:02:00","MST","2022-06-14 19:02:00",NA,"2.02",2020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102220","UTAHDWQ_WQX-MAINCK220614-5910280-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910280-0614-4-C/results/970102220/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14524","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","10:28:00","MST","2022-05-18 17:28:00",NA,"0.792",792,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102257","UTAHDWQ_WQX-MAINCK220518-5910290-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910290-0518-4-C/results/970102257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12863","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","10:28:00","MST","2022-05-18 17:28:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102262","UTAHDWQ_WQX-MAINCK220518-5910290-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910290-0518-4-C/results/970102262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12864","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","13:11:00","MST","2022-06-14 20:11:00",NA,"0.832",832,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102267","UTAHDWQ_WQX-MAINCK220614-5910290-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910290-0614-4-C/results/970102267/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12865","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","13:11:00","MST","2022-06-14 20:11:00",NA,"0.789",789,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102271","UTAHDWQ_WQX-MAINCK220614-5910290-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910290-0614-4-C/results/970102271/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12866","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","09:11:00","MST","2022-07-20 16:11:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102274","UTAHDWQ_WQX-MAINCK220720-5910290-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910290-0720-4-C/results/970102274/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12867","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","09:11:00","MST","2022-07-20 16:11:00",NA,"0.364",364,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102282","UTAHDWQ_WQX-MAINCK220720-5910290-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910290-0720-4-C/results/970102282/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12868","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:29:00","MST","2022-09-21 17:29:00",NA,"0.277",277,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102283","UTAHDWQ_WQX-MAINCK220921-5910290-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910290-0921-4-C/results/970102283/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12869","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:29:00","MST","2022-09-21 17:29:00",NA,"0.497",497,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102291","UTAHDWQ_WQX-MAINCK220921-5910290-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"40.4041400000",40.40414,"-111.4585900000",-111.45859,"OK","16020203","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4041400000","-111.4585900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910290-0921-4-C/results/970102291/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12870","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","10:39:00","MST","2022-05-18 17:39:00",NA,"0.374",374,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102303","UTAHDWQ_WQX-MAINCK220518-5910619-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910619-0518-4-C/results/970102303/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12871","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","10:39:00","MST","2022-05-18 17:39:00",NA,"0.331",331,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102309","UTAHDWQ_WQX-MAINCK220518-5910619-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910619-0518-4-C/results/970102309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12872","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","13:32:00","MST","2022-06-14 20:32:00",NA,"0.438",438,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102319","UTAHDWQ_WQX-MAINCK220614-5910619-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910619-0614-4-C/results/970102319/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12873","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","13:32:00","MST","2022-06-14 20:32:00",NA,"0.502",502,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102326","UTAHDWQ_WQX-MAINCK220614-5910619-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910619-0614-4-C/results/970102326/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12874","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","09:31:00","MST","2022-07-20 16:31:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102328","UTAHDWQ_WQX-MAINCK220720-5910619-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910619-0720-4-C/results/970102328/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12875","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","09:31:00","MST","2022-07-20 16:31:00",NA,"0.613",613,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102329","UTAHDWQ_WQX-MAINCK220720-5910619-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910619-0720-4-C/results/970102329/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12876","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:50:00","MST","2022-09-21 17:50:00",NA,"0.334",334,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102367","UTAHDWQ_WQX-MAINCK220921-5910619-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910619-0921-4-C/results/970102367/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12877","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:50:00","MST","2022-09-21 17:50:00",NA,"0.507",507,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102373","UTAHDWQ_WQX-MAINCK220921-5910619-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910619-0921-4-C/results/970102373/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12878","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-18","10:04:00","MST","2022-05-18 17:04:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102378","UTAHDWQ_WQX-MAINCK220518-5910620-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910620-0518-4-C/results/970102378/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14568","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-18","10:04:00","MST","2022-05-18 17:04:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102379","UTAHDWQ_WQX-MAINCK220518-5910620-0518-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910620-0518-4-C/results/970102379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12880","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","12:53:00","MST","2022-06-14 19:53:00",NA,"0.394",394,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102387","UTAHDWQ_WQX-MAINCK220614-5910620-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910620-0614-4-C/results/970102387/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12881","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-14","12:53:00","MST","2022-06-14 19:53:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102389","UTAHDWQ_WQX-MAINCK220614-5910620-0614-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910620-0614-4-C/results/970102389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14567","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","08:53:00","MST","2022-07-20 15:53:00",NA,"0.379",379,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102396","UTAHDWQ_WQX-MAINCK220720-5910620-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910620-0720-4-C/results/970102396/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12883","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","08:53:00","MST","2022-07-20 15:53:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102400","UTAHDWQ_WQX-MAINCK220720-5910620-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910620-0720-4-C/results/970102400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12884","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:09:00","MST","2022-09-21 17:09:00",NA,"0.193",193,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102404","UTAHDWQ_WQX-MAINCK220921-5910620-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910620-0921-4-C/results/970102404/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12885","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:09:00","MST","2022-09-21 17:09:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102409","UTAHDWQ_WQX-MAINCK220921-5910620-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","051","MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"40.4017500000",40.40175,"-111.4592100000",-111.45921,"OK","16020203","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4017500000","-111.4592100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910620-0921-4-C/results/970102409/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12886","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-11","11:50:00","MST","2022-04-11 18:50:00",NA,"17.9",17900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102422","UTAHDWQ_WQX-UTLK220404-5919910-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-5919910-0411-4-C/results/970102422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14549","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-11","11:50:00","MST","2022-04-11 18:50:00",NA,"18.2",18200,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102427","UTAHDWQ_WQX-UTLK220404-5919910-0411-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-5919910-0411-4-C/results/970102427/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12888","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-17","11:00:00","MST","2022-05-17 18:00:00",NA,"6.57",6570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102430","UTAHDWQ_WQX-UTLK220516-5919910-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-5919910-0517-4-C/results/970102430/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12889","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-17","11:00:00","MST","2022-05-17 18:00:00",NA,"6.53",6530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102436","UTAHDWQ_WQX-UTLK220516-5919910-0517-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-5919910-0517-4-C/results/970102436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14575","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-09","10:20:00","MST","2022-06-09 17:20:00",NA,"5.28",5280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102448","UTAHDWQ_WQX-UTLK220606-5919910-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-5919910-0609-4-C/results/970102448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12891","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-09","10:20:00","MST","2022-06-09 17:20:00",NA,"5.21",5210,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102462","UTAHDWQ_WQX-UTLK220606-5919910-0609-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-5919910-0609-4-C/results/970102462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12892","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-20","11:00:00","MST","2022-07-20 18:00:00",NA,"3.52",3520,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.223",0.223,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102469","UTAHDWQ_WQX-UTLK220718-5919910-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-5919910-0720-4-C/results/970102469/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14574","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-20","11:00:00","MST","2022-07-20 18:00:00",NA,"3.55",3550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.223",0.223,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102477","UTAHDWQ_WQX-UTLK220718-5919910-0720-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-5919910-0720-4-C/results/970102477/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12894","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-17","10:10:00","MST","2022-08-17 17:10:00",NA,"3.16",3160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102489","UTAHDWQ_WQX-UTLK220815-5919910-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-5919910-0817-4-C/results/970102489/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12895","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-17","10:10:00","MST","2022-08-17 17:10:00",NA,"2.76",2760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102497","UTAHDWQ_WQX-UTLK220815-5919910-0817-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:41",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-5919910-0817-4-C/results/970102497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14586","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","10:45:00","MST","2022-09-21 17:45:00",NA,"3.28",3280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102511","UTAHDWQ_WQX-UTLK220919-5919910-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-5919910-0921-4-C/results/970102511/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12897","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-21","10:45:00","MST","2022-09-21 17:45:00",NA,"3.36",3360,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102513","UTAHDWQ_WQX-UTLK220919-5919910-0921-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","049","DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"40.1438700000",40.14387,"-111.7494600000",-111.74946,"OK","16020201","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:42",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1438700000","-111.7494600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-5919910-0921-4-C/results/970102513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12898","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","11:24:00","MST","2022-05-23 18:24:00",NA,"1.1",1100,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102519","UTAHDWQ_WQX-SPANISHFKR220523-5919920-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919920-0523-4-C/results/970102519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12899","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","11:24:00","MST","2022-05-23 18:24:00",NA,"1.03",1030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102524","UTAHDWQ_WQX-SPANISHFKR220523-5919920-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"40.0949600000",40.09496,"-111.6549300000",-111.65493,"OK","16020202","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.0949600000","-111.6549300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919920-0523-4-C/results/970102524/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12900","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","13:38:00","MST","2022-05-23 20:38:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102527","UTAHDWQ_WQX-SPANISHFKR220523-5919942-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919942-0523-4-C/results/970102527/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12901","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","13:38:00","MST","2022-05-23 20:38:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102533","UTAHDWQ_WQX-SPANISHFKR220523-5919942-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919942-0523-4-C/results/970102533/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12902","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","11:59:00","MST","2022-05-23 18:59:00",NA,"1.56",1560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102540","UTAHDWQ_WQX-SPANISHFKR220523-5919970-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919970-0523-4-C/results/970102540/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12903","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","11:59:00","MST","2022-05-23 18:59:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102542","UTAHDWQ_WQX-SPANISHFKR220523-5919970-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919970-0523-4-C/results/970102542/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12904","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","11:57:00","MST","2022-05-23 18:57:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102549","UTAHDWQ_WQX-SPANISHFKR220523-5919971-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919971-0523-4-C/results/970102549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12905","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-23","11:57:00","MST","2022-05-23 18:57:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102550","UTAHDWQ_WQX-SPANISHFKR220523-5919971-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","049","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","40.1407800000",40.14078,"-111.7140900000",-111.71409,"OK","16020202","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.1407800000","-111.7140900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919971-0523-4-C/results/970102550/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12906","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","10:30:00","MST","2022-05-04 17:30:00",NA,"0.412",412,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102558","UTAHDWQ_WQX-LAKES220504-5923310-0504-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220504-5923310-0504-2-C/results/970102558/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12907","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-04","10:30:00","MST","2022-05-04 17:30:00",NA,"0.705",705,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102559","UTAHDWQ_WQX-LAKES220504-5923310-0504-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220504-5923310-0504-2-C/results/970102559/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12908","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-04","10:55:00","MST","2022-05-04 17:55:00",NA,"0.394",394,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","31.7",31.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102567","UTAHDWQ_WQX-LAKES220504-5923310-0504-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220504-5923310-0504-29-C/results/970102567/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12909","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-04","10:55:00","MST","2022-05-04 17:55:00",NA,"0.709",709,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","31.7",31.7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102584","UTAHDWQ_WQX-LAKES220504-5923310-0504-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220504-5923310-0504-29-C/results/970102584/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12910","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-17","08:00:00","MST","2022-06-17 15:00:00",NA,"0.516",516,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102593","UTAHDWQ_WQX-LAKES220617-5923310-0617-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-2-C/results/970102593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12911","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-17","08:00:00","MST","2022-06-17 15:00:00",NA,"0.426",426,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102594","UTAHDWQ_WQX-LAKES220617-5923310-0617-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-2-C/results/970102594/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12912","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-17","08:35:00","MST","2022-06-17 15:35:00",NA,"0.332",332,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102606","UTAHDWQ_WQX-LAKES220617-5923310-0617-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-23-C/results/970102606/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12913","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-17","08:35:00","MST","2022-06-17 15:35:00",NA,"0.585",585,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","5",5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102609","UTAHDWQ_WQX-LAKES220617-5923310-0617-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-23-C/results/970102609/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12914","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-17","08:45:00","MST","2022-06-17 15:45:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102614","UTAHDWQ_WQX-LAKES220617-5923310-0617-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-27-C/results/970102614/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12915","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-17","08:45:00","MST","2022-06-17 15:45:00",NA,"0.705",705,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","8",8,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102621","UTAHDWQ_WQX-LAKES220617-5923310-0617-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-27-C/results/970102621/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12916","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-17","08:15:00","MST","2022-06-17 15:15:00",NA,"1.69",1690,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","33",33,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102622","UTAHDWQ_WQX-LAKES220617-5923310-0617-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-29-C/results/970102622/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12917","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-17","08:15:00","MST","2022-06-17 15:15:00",NA,"0.429",429,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","33",33,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102635","UTAHDWQ_WQX-LAKES220617-5923310-0617-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-29-C/results/970102635/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12918","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","11:15:00","MST","2022-09-07 18:15:00",NA,"0.837",837,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102648","UTAHDWQ_WQX-LAKES220907-5923310-0907-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-2-C/results/970102648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12919","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-07","11:15:00","MST","2022-09-07 18:15:00",NA,"0.309",309,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102652","UTAHDWQ_WQX-LAKES220907-5923310-0907-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-2-C/results/970102652/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12920","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","11:50:00","MST","2022-09-07 18:50:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","19.99",19.99,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102660","UTAHDWQ_WQX-LAKES220907-5923310-0907-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-23-C/results/970102660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12921","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-07","11:50:00","MST","2022-09-07 18:50:00",NA,"0.349",349,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","19.99",19.99,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102666","UTAHDWQ_WQX-LAKES220907-5923310-0907-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-23-C/results/970102666/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12922","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","11:40:00","MST","2022-09-07 18:40:00",NA,"0.782",782,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","29",29,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102675","UTAHDWQ_WQX-LAKES220907-5923310-0907-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-29-C/results/970102675/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12923","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-07","11:40:00","MST","2022-09-07 18:40:00",NA,"0.483",483,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","29",29,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102690","UTAHDWQ_WQX-LAKES220907-5923310-0907-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES AB DAM 01","Lake",NA,"40.7863400000",40.78634,"-111.4046500000",-111.40465,"OK","16020101","UTAHDWQ_WQX-5923310",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7863400000","-111.4046500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-29-C/results/970102690/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12924","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-17","09:05:00","MST","2022-06-17 16:05:00",NA,"0.699",699,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102701","UTAHDWQ_WQX-LAKES220617-5923320-0617-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES MIDLAKE EMAP and 02","Lake",NA,"40.7707900000",40.77079,"-111.3960300000",-111.39603,"OK","16020101","UTAHDWQ_WQX-5923320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7707900000","-111.3960300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923320-0617-2-C/results/970102701/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12925","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-17","09:05:00","MST","2022-06-17 16:05:00",NA,"0.452",452,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102703","UTAHDWQ_WQX-LAKES220617-5923320-0617-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES MIDLAKE EMAP and 02","Lake",NA,"40.7707900000",40.77079,"-111.3960300000",-111.39603,"OK","16020101","UTAHDWQ_WQX-5923320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7707900000","-111.3960300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923320-0617-2-C/results/970102703/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12926","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-17","09:15:00","MST","2022-06-17 16:15:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18",18,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102711","UTAHDWQ_WQX-LAKES220617-5923320-0617-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES MIDLAKE EMAP and 02","Lake",NA,"40.7707900000",40.77079,"-111.3960300000",-111.39603,"OK","16020101","UTAHDWQ_WQX-5923320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7707900000","-111.3960300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-06","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923320-0617-29-C/results/970102711/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12927","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-17","09:15:00","MST","2022-06-17 16:15:00",NA,"0.57",570,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18",18,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102712","UTAHDWQ_WQX-LAKES220617-5923320-0617-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES MIDLAKE EMAP and 02","Lake",NA,"40.7707900000",40.77079,"-111.3960300000",-111.39603,"OK","16020101","UTAHDWQ_WQX-5923320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7707900000","-111.3960300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-07","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923320-0617-29-C/results/970102712/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12928","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-07","12:15:00","MST","2022-09-07 19:15:00",NA,"0.707",707,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102718","UTAHDWQ_WQX-LAKES220907-5923320-0907-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES MIDLAKE EMAP and 02","Lake",NA,"40.7707900000",40.77079,"-111.3960300000",-111.39603,"OK","16020101","UTAHDWQ_WQX-5923320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7707900000","-111.3960300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923320-0907-2-C/results/970102718/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12929","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","12:15:00","MST","2022-09-07 19:15:00",NA,"1.19",1190,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102727","UTAHDWQ_WQX-LAKES220907-5923320-0907-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES MIDLAKE EMAP and 02","Lake",NA,"40.7707900000",40.77079,"-111.3960300000",-111.39603,"OK","16020101","UTAHDWQ_WQX-5923320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7707900000","-111.3960300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923320-0907-2-C/results/970102727/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12930","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-07","12:30:00","MST","2022-09-07 19:30:00",NA,"0.254",254,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","14.04",14.04,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102729","UTAHDWQ_WQX-LAKES220907-5923320-0907-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES MIDLAKE EMAP and 02","Lake",NA,"40.7707900000",40.77079,"-111.3960300000",-111.39603,"OK","16020101","UTAHDWQ_WQX-5923320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7707900000","-111.3960300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923320-0907-29-C/results/970102729/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12931","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","12:30:00","MST","2022-09-07 19:30:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","14.04",14.04,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102732","UTAHDWQ_WQX-LAKES220907-5923320-0907-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","ROCKPORT RES MIDLAKE EMAP and 02","Lake",NA,"40.7707900000",40.77079,"-111.3960300000",-111.39603,"OK","16020101","UTAHDWQ_WQX-5923320",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7707900000","-111.3960300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923320-0907-29-C/results/970102732/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12932","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-10","11:30:00","MST","2022-06-10 18:30:00",NA,"0.336",336,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102742","UTAHDWQ_WQX-LAKES220609-5923960-0610-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-2-C/results/970102742/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12933","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-10","11:30:00","MST","2022-06-10 18:30:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102745","UTAHDWQ_WQX-LAKES220609-5923960-0610-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-2-C/results/970102745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12934","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-10","12:00:00","MST","2022-06-10 19:00:00",NA,"0.424",424,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","1.99",1.99,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102750","UTAHDWQ_WQX-LAKES220609-5923960-0610-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-23-C/results/970102750/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12935","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-10","12:00:00","MST","2022-06-10 19:00:00",NA,"0.327",327,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","1.99",1.99,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102756","UTAHDWQ_WQX-LAKES220609-5923960-0610-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-23-C/results/970102756/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12936","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-10","12:05:00","MST","2022-06-10 19:05:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","5.02",5.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102757","UTAHDWQ_WQX-LAKES220609-5923960-0610-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-27-C/results/970102757/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12937","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-10","12:05:00","MST","2022-06-10 19:05:00",NA,"0.318",318,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","5.02",5.02,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102762","UTAHDWQ_WQX-LAKES220609-5923960-0610-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-27-C/results/970102762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12938","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-10","11:55:00","MST","2022-06-10 18:55:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18.01",18.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102775","UTAHDWQ_WQX-LAKES220609-5923960-0610-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-29-C/results/970102775/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12939","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-10","11:55:00","MST","2022-06-10 18:55:00",NA,"0.284",284,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","18.01",18.01,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102780","UTAHDWQ_WQX-LAKES220609-5923960-0610-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-29-C/results/970102780/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12940","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:20:00","MST","2022-09-20 18:20:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102795","UTAHDWQ_WQX-LAKES220919-5923960-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-2-C/results/970102795/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12941","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:20:00","MST","2022-09-20 18:20:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102798","UTAHDWQ_WQX-LAKES220919-5923960-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-2-C/results/970102798/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12942","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:45:00","MST","2022-09-20 18:45:00",NA,"0.182",182,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","8.1",8.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102805","UTAHDWQ_WQX-LAKES220919-5923960-0920-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-23-C/results/970102805/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12943","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:45:00","MST","2022-09-20 18:45:00",NA,"0.176",176,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","8.1",8.1,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102806","UTAHDWQ_WQX-LAKES220919-5923960-0920-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-23-C/results/970102806/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12944","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:50:00","MST","2022-09-20 18:50:00",NA,"0.469",469,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102817","UTAHDWQ_WQX-LAKES220919-5923960-0920-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-27-C/results/970102817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12945","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:50:00","MST","2022-09-20 18:50:00",NA,"0.267",267,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","13",13,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102819","UTAHDWQ_WQX-LAKES220919-5923960-0920-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-27-C/results/970102819/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12946","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","11:40:00","MST","2022-09-20 18:40:00",NA,"0.253",253,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","14.5",14.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102823","UTAHDWQ_WQX-LAKES220919-5923960-0920-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-29-C/results/970102823/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12947","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:40:00","MST","2022-09-20 18:40:00",NA,"0.26",260,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","14.5",14.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102833","UTAHDWQ_WQX-LAKES220919-5923960-0920-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE RES AB DAM 01","Lake",NA,"40.7602300000",40.76023,"-111.1038000000",-111.1038,"OK","16020101","UTAHDWQ_WQX-5923960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7602300000","-111.1038000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-29-C/results/970102833/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12948","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-10","10:30:00","MST","2022-06-10 17:30:00",NA,"0.249",249,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102862","UTAHDWQ_WQX-LAKES220609-5924000-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE CK AB SMITH AND MOREHOUSE RES","River/Stream",NA,"40.7424500000",40.74245,"-111.0993500000",-111.09935,"OK","16020101","UTAHDWQ_WQX-5924000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7424500000","-111.0993500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5924000-0610-4-C/results/970102862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12949","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-10","10:30:00","MST","2022-06-10 17:30:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102869","UTAHDWQ_WQX-LAKES220609-5924000-0610-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE CK AB SMITH AND MOREHOUSE RES","River/Stream",NA,"40.7424500000",40.74245,"-111.0993500000",-111.09935,"OK","16020101","UTAHDWQ_WQX-5924000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7424500000","-111.0993500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5924000-0610-4-C/results/970102869/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12950","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-20","10:20:00","MST","2022-09-20 17:20:00",NA,"0.457",457,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102881","UTAHDWQ_WQX-LAKES220919-5924000-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE CK AB SMITH AND MOREHOUSE RES","River/Stream",NA,"40.7424500000",40.74245,"-111.0993500000",-111.09935,"OK","16020101","UTAHDWQ_WQX-5924000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7424500000","-111.0993500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5924000-0920-4-C/results/970102881/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12951","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","10:20:00","MST","2022-09-20 17:20:00",NA,"0.187",187,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102898","UTAHDWQ_WQX-LAKES220919-5924000-0920-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","SMITH AND MOREHOUSE CK AB SMITH AND MOREHOUSE RES","River/Stream",NA,"40.7424500000",40.74245,"-111.0993500000",-111.09935,"OK","16020101","UTAHDWQ_WQX-5924000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:34:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7424500000","-111.0993500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5924000-0920-4-C/results/970102898/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12952","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","12:05:00","MST","2022-07-12 19:05:00",NA,"0.422",422,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102910","UTAHDWQ_WQX-LAKES220712-5930980-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES W BAY 02","Lake",NA,"39.7777400000",39.77774,"-111.1662900000",-111.16629,"OK","14060007","UTAHDWQ_WQX-5930980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7777400000","-111.1662900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930980-0712-2-C/results/970102910/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12953","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","12:05:00","MST","2022-07-12 19:05:00",NA,"0.539",539,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102912","UTAHDWQ_WQX-LAKES220712-5930980-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES W BAY 02","Lake",NA,"39.7777400000",39.77774,"-111.1662900000",-111.16629,"OK","14060007","UTAHDWQ_WQX-5930980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7777400000","-111.1662900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930980-0712-2-C/results/970102912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12954","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","12:45:00","MST","2022-07-12 19:45:00",NA,"0.421",421,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102923","UTAHDWQ_WQX-LAKES220712-5930990-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES S BAY 03","Lake",NA,"39.7602400000",39.76024,"-111.1540600000",-111.15406,"OK","14060007","UTAHDWQ_WQX-5930990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7602400000","-111.1540600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930990-0712-2-C/results/970102923/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12955","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","12:45:00","MST","2022-07-12 19:45:00",NA,"0.442",442,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102926","UTAHDWQ_WQX-LAKES220712-5930990-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES S BAY 03","Lake",NA,"39.7602400000",39.76024,"-111.1540600000",-111.15406,"OK","14060007","UTAHDWQ_WQX-5930990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7602400000","-111.1540600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930990-0712-2-C/results/970102926/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12956","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","12:50:00","MST","2022-07-12 19:50:00",NA,"0.49",490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102933","UTAHDWQ_WQX-LAKES220712-5930990-0712-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES S BAY 03","Lake",NA,"39.7602400000",39.76024,"-111.1540600000",-111.15406,"OK","14060007","UTAHDWQ_WQX-5930990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7602400000","-111.1540600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930990-0712-29-C/results/970102933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12957","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","12:50:00","MST","2022-07-12 19:50:00",NA,"0.331",331,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3",3,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102937","UTAHDWQ_WQX-LAKES220712-5930990-0712-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES S BAY 03","Lake",NA,"39.7602400000",39.76024,"-111.1540600000",-111.15406,"OK","14060007","UTAHDWQ_WQX-5930990",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7602400000","-111.1540600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930990-0712-29-C/results/970102937/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12958","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","11:00:00","MST","2022-07-12 18:00:00",NA,"0.422",422,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102942","UTAHDWQ_WQX-LAKES220712-5931000-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931000-0712-2-C/results/970102942/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12959","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","11:00:00","MST","2022-07-12 18:00:00",NA,"0.408",408,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102949","UTAHDWQ_WQX-LAKES220712-5931000-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931000-0712-2-C/results/970102949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12960","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","11:30:00","MST","2022-07-12 18:30:00",NA,"0.38",380,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102971","UTAHDWQ_WQX-LAKES220712-5931000-0712-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931000-0712-29-C/results/970102971/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12961","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","11:30:00","MST","2022-07-12 18:30:00",NA,"0.362",362,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102974","UTAHDWQ_WQX-LAKES220712-5931000-0712-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931000-0712-29-C/results/970102974/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12962","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","11:15:00","MST","2022-07-12 18:15:00",NA,"0.448",448,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102990","UTAHDWQ_WQX-LAKES220712-5931190-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000","Lake","Replicate of 5931000","39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931190-0712-2-C/results/970102990/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12963","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","11:15:00","MST","2022-07-12 18:15:00",NA,"0.589",589,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102991","UTAHDWQ_WQX-LAKES220712-5931190-0712-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000","Lake","Replicate of 5931000","39.7895200000",39.78952,"-111.1348400000",-111.13484,"OK","14060007","UTAHDWQ_WQX-5931190",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7895200000","-111.1348400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931190-0712-2-C/results/970102991/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12964","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","13:55:00","MST","2022-04-25 20:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102996","UTAHDWQ_WQX-MUDCK220425-5931467-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931467-0425-4-C/results/970102996/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12965","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-25","13:55:00","MST","2022-04-25 20:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970102999","UTAHDWQ_WQX-MUDCK220425-5931467-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931467-0425-4-C/results/970102999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12966","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-31","17:00:00","MST","2022-06-01 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103003","UTAHDWQ_WQX-MUDCK220531-5931467-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931467-0531-4-C/results/970103003/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12967","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-31","17:00:00","MST","2022-06-01 00:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103009","UTAHDWQ_WQX-MUDCK220531-5931467-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931467-0531-4-C/results/970103009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12968","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-28","14:00:00","MST","2022-06-28 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103014","UTAHDWQ_WQX-MUDCK220628-5931467-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931467-0628-4-C/results/970103014/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12969","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-28","14:00:00","MST","2022-06-28 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103016","UTAHDWQ_WQX-MUDCK220628-5931467-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931467-0628-4-C/results/970103016/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12970","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","12:15:00","MST","2022-07-28 19:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103020","UTAHDWQ_WQX-MUDCK220728-5931467-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931467-0728-4-C/results/970103020/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12971","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","12:15:00","MST","2022-07-28 19:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103026","UTAHDWQ_WQX-MUDCK220728-5931467-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931467-0728-4-C/results/970103026/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12972","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-24","15:00:00","MST","2022-08-24 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103030","UTAHDWQ_WQX-MUDCK220822-5931467-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931467-0824-4-C/results/970103030/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12973","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-24","15:00:00","MST","2022-08-24 22:00:00",NA,"0.372",372,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103032","UTAHDWQ_WQX-MUDCK220822-5931467-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","035","Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931467-0824-4-C/results/970103032/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12974","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","11:45:00","MST","2022-04-25 18:45:00",NA,"0.676",676,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103038","UTAHDWQ_WQX-MUDCK220425-5931480-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931480-0425-4-C/results/970103038/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12975","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-25","11:45:00","MST","2022-04-25 18:45:00",NA,"0.756",756,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103040","UTAHDWQ_WQX-MUDCK220425-5931480-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931480-0425-4-C/results/970103040/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12976","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-31","14:10:00","MST","2022-05-31 21:10:00",NA,"0.757",757,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103047","UTAHDWQ_WQX-MUDCK220531-5931480-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931480-0531-4-C/results/970103047/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12977","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-31","14:10:00","MST","2022-05-31 21:10:00",NA,"0.817",817,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103048","UTAHDWQ_WQX-MUDCK220531-5931480-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931480-0531-4-C/results/970103048/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12978","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-28","11:40:00","MST","2022-06-28 18:40:00",NA,"0.615",615,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103056","UTAHDWQ_WQX-MUDCK220628-5931480-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931480-0628-4-C/results/970103056/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12979","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-28","11:40:00","MST","2022-06-28 18:40:00",NA,"0.624",624,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103057","UTAHDWQ_WQX-MUDCK220628-5931480-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931480-0628-4-C/results/970103057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12980","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","11:25:00","MST","2022-07-28 18:25:00",NA,"0.451",451,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103064","UTAHDWQ_WQX-MUDCK220728-5931480-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931480-0728-4-C/results/970103064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12981","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","11:25:00","MST","2022-07-28 18:25:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103070","UTAHDWQ_WQX-MUDCK220728-5931480-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931480-0728-4-C/results/970103070/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12982","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-24","11:50:00","MST","2022-08-24 18:50:00",NA,"0.961",961,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103080","UTAHDWQ_WQX-MUDCK220822-5931480-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931480-0824-4-C/results/970103080/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12983","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-24","11:50:00","MST","2022-08-24 18:50:00",NA,"0.603",603,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103081","UTAHDWQ_WQX-MUDCK220822-5931480-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931480-0824-4-C/results/970103081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12984","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","11:50:00","MST","2022-04-25 18:50:00",NA,"0.745",745,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103083","UTAHDWQ_WQX-MUDCK220425-5931481-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931481-0425-4-C/results/970103083/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12985","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-25","11:50:00","MST","2022-04-25 18:50:00",NA,"0.56",560,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103084","UTAHDWQ_WQX-MUDCK220425-5931481-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931481-0425-4-C/results/970103084/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12986","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-31","14:15:00","MST","2022-05-31 21:15:00",NA,"0.73",730,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103091","UTAHDWQ_WQX-MUDCK220531-5931481-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931481-0531-4-C/results/970103091/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12987","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-31","14:15:00","MST","2022-05-31 21:15:00",NA,"0.631",631,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103097","UTAHDWQ_WQX-MUDCK220531-5931481-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931481-0531-4-C/results/970103097/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12988","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-28","11:50:00","MST","2022-06-28 18:50:00",NA,"0.618",618,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103100","UTAHDWQ_WQX-MUDCK220628-5931481-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931481-0628-4-C/results/970103100/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12989","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-28","11:50:00","MST","2022-06-28 18:50:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103108","UTAHDWQ_WQX-MUDCK220628-5931481-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931481-0628-4-C/results/970103108/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12990","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","11:35:00","MST","2022-07-28 18:35:00",NA,"0.306",306,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103113","UTAHDWQ_WQX-MUDCK220728-5931481-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931481-0728-4-C/results/970103113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12991","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","11:35:00","MST","2022-07-28 18:35:00",NA,"0.816",816,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103116","UTAHDWQ_WQX-MUDCK220728-5931481-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931481-0728-4-C/results/970103116/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12992","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-24","11:55:00","MST","2022-08-24 18:55:00",NA,"0.589",589,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103122","UTAHDWQ_WQX-MUDCK220822-5931481-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931481-0824-4-C/results/970103122/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12993","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-24","11:55:00","MST","2022-08-24 18:55:00",NA,"0.757",757,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103123","UTAHDWQ_WQX-MUDCK220822-5931481-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","39.7249000000",39.7249,"-111.1605400000",-111.16054,"OK","14060007","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7249000000","-111.1605400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931481-0824-4-C/results/970103123/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12994","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","11:15:00","MST","2022-04-25 18:15:00",NA,"0.478",478,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103131","UTAHDWQ_WQX-MUDCK220425-5931510-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931510-0425-4-C/results/970103131/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12995","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-25","11:15:00","MST","2022-04-25 18:15:00",NA,"0.894",894,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103133","UTAHDWQ_WQX-MUDCK220425-5931510-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931510-0425-4-C/results/970103133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12996","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-31","13:35:00","MST","2022-05-31 20:35:00",NA,"0.908",908,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103137","UTAHDWQ_WQX-MUDCK220531-5931510-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931510-0531-4-C/results/970103137/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12997","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-31","13:35:00","MST","2022-05-31 20:35:00",NA,"0.87",870,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103142","UTAHDWQ_WQX-MUDCK220531-5931510-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931510-0531-4-C/results/970103142/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12998","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-28","11:00:00","MST","2022-06-28 18:00:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103147","UTAHDWQ_WQX-MUDCK220628-5931510-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931510-0628-4-C/results/970103147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"12999","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-28","11:00:00","MST","2022-06-28 18:00:00",NA,"0.987",987,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103149","UTAHDWQ_WQX-MUDCK220628-5931510-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931510-0628-4-C/results/970103149/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13000","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","10:55:00","MST","2022-07-28 17:55:00",NA,"0.419",419,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103155","UTAHDWQ_WQX-MUDCK220728-5931510-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931510-0728-4-C/results/970103155/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13001","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","10:55:00","MST","2022-07-28 17:55:00",NA,"0.682",682,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103156","UTAHDWQ_WQX-MUDCK220728-5931510-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931510-0728-4-C/results/970103156/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13002","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-24","11:30:00","MST","2022-08-24 18:30:00",NA,"0.327",327,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103165","UTAHDWQ_WQX-MUDCK220822-5931510-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931510-0824-4-C/results/970103165/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13003","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-24","11:30:00","MST","2022-08-24 18:30:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103168","UTAHDWQ_WQX-MUDCK220822-5931510-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"39.7211400000",39.72114,"-111.1625300000",-111.16253,"OK","14060007","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7211400000","-111.1625300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931510-0824-4-C/results/970103168/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13004","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-25","11:28:00","MST","2022-04-25 18:28:00",NA,"0.503",503,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103173","UTAHDWQ_WQX-MUDCK220425-5931513-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931513-0425-4-C/results/970103173/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13005","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","11:28:00","MST","2022-04-25 18:28:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103176","UTAHDWQ_WQX-MUDCK220425-5931513-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931513-0425-4-C/results/970103176/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13006","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-31","13:50:00","MST","2022-05-31 20:50:00",NA,"0.985",985,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103188","UTAHDWQ_WQX-MUDCK220531-5931513-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931513-0531-4-C/results/970103188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13007","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-31","13:50:00","MST","2022-05-31 20:50:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103189","UTAHDWQ_WQX-MUDCK220531-5931513-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931513-0531-4-C/results/970103189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13008","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-28","11:20:00","MST","2022-06-28 18:20:00",NA,"0.997",997,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103194","UTAHDWQ_WQX-MUDCK220628-5931513-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931513-0628-4-C/results/970103194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13009","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-28","11:20:00","MST","2022-06-28 18:20:00",NA,"1.16",1160,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103195","UTAHDWQ_WQX-MUDCK220628-5931513-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931513-0628-4-C/results/970103195/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13010","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","11:15:00","MST","2022-07-28 18:15:00",NA,"0.816",816,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103202","UTAHDWQ_WQX-MUDCK220728-5931513-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931513-0728-4-C/results/970103202/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13011","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","11:15:00","MST","2022-07-28 18:15:00",NA,"0.575",575,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103203","UTAHDWQ_WQX-MUDCK220728-5931513-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931513-0728-4-C/results/970103203/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13012","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-24","11:45:00","MST","2022-08-24 18:45:00",NA,"0.732",732,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103212","UTAHDWQ_WQX-MUDCK220822-5931513-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931513-0824-4-C/results/970103212/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13013","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-24","11:45:00","MST","2022-08-24 18:45:00",NA,"0.323",323,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103215","UTAHDWQ_WQX-MUDCK220822-5931513-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"39.7214500000",39.72145,"-111.1675800000",-111.16758,"OK","14060007","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7214500000","-111.1675800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931513-0824-4-C/results/970103215/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13014","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-25","11:05:00","MST","2022-04-25 18:05:00",NA,"0.626",626,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103217","UTAHDWQ_WQX-MUDCK220425-5931545-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931545-0425-4-C/results/970103217/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13015","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","11:05:00","MST","2022-04-25 18:05:00",NA,"0.512",512,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103222","UTAHDWQ_WQX-MUDCK220425-5931545-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931545-0425-4-C/results/970103222/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13016","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-31","13:20:00","MST","2022-05-31 20:20:00",NA,"0.464",464,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103229","UTAHDWQ_WQX-MUDCK220531-5931545-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931545-0531-4-C/results/970103229/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13017","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-31","13:20:00","MST","2022-05-31 20:20:00",NA,"0.463",463,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103233","UTAHDWQ_WQX-MUDCK220531-5931545-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931545-0531-4-C/results/970103233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13018","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-28","10:50:00","MST","2022-06-28 17:50:00",NA,"3.03",3030,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103237","UTAHDWQ_WQX-MUDCK220628-5931545-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931545-0628-4-C/results/970103237/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13019","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-28","10:50:00","MST","2022-06-28 17:50:00",NA,"0.866",866,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103238","UTAHDWQ_WQX-MUDCK220628-5931545-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931545-0628-4-C/results/970103238/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13020","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","10:45:00","MST","2022-07-28 17:45:00",NA,"0.441",441,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103250","UTAHDWQ_WQX-MUDCK220728-5931545-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931545-0728-4-C/results/970103250/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13021","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","10:45:00","MST","2022-07-28 17:45:00",NA,"0.473",473,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103252","UTAHDWQ_WQX-MUDCK220728-5931545-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931545-0728-4-C/results/970103252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13022","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-24","11:05:00","MST","2022-08-24 18:05:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103257","UTAHDWQ_WQX-MUDCK220822-5931545-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931545-0824-4-C/results/970103257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13023","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-24","11:05:00","MST","2022-08-24 18:05:00",NA,"0.55",550,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103260","UTAHDWQ_WQX-MUDCK220822-5931545-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"39.7148200000",39.71482,"-111.1626000000",-111.1626,"OK","14060007","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7148200000","-111.1626000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931545-0824-4-C/results/970103260/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9744","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","12:00:00","MST","2022-04-25 19:00:00",NA,"0.532",532,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103265","UTAHDWQ_WQX-MUDCK220425-5931645-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931645-0425-4-C/results/970103265/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9745","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-25","12:00:00","MST","2022-04-25 19:00:00",NA,"0.482",482,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103266","UTAHDWQ_WQX-MUDCK220425-5931645-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931645-0425-4-C/results/970103266/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9746","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-31","14:25:00","MST","2022-05-31 21:25:00",NA,"0.23",230,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103275","UTAHDWQ_WQX-MUDCK220531-5931645-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931645-0531-4-C/results/970103275/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9747","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-31","14:25:00","MST","2022-05-31 21:25:00",NA,"0.238",238,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103277","UTAHDWQ_WQX-MUDCK220531-5931645-0531-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931645-0531-4-C/results/970103277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13028","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-28","12:30:00","MST","2022-06-28 19:30:00",NA,"0.621",621,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103280","UTAHDWQ_WQX-MUDCK220628-5931645-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931645-0628-4-C/results/970103280/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13029","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-28","12:30:00","MST","2022-06-28 19:30:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103285","UTAHDWQ_WQX-MUDCK220628-5931645-0628-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931645-0628-4-C/results/970103285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13030","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","12:00:00","MST","2022-07-28 19:00:00",NA,"0.45",450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103290","UTAHDWQ_WQX-MUDCK220728-5931645-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931645-0728-4-C/results/970103290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13031","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","12:00:00","MST","2022-07-28 19:00:00",NA,"0.495",495,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103296","UTAHDWQ_WQX-MUDCK220728-5931645-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931645-0728-4-C/results/970103296/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9752","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-24","12:15:00","MST","2022-08-24 19:15:00",NA,"0.218",218,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103305","UTAHDWQ_WQX-MUDCK220822-5931645-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931645-0824-4-C/results/970103305/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13033","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-24","12:15:00","MST","2022-08-24 19:15:00",NA,"0.836",836,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103306","UTAHDWQ_WQX-MUDCK220822-5931645-0824-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.","305",NA,"N",NA,"N","US","49","007","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"39.7774300000",39.77743,"-111.1768300000",-111.17683,"OK","14060007","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7774300000","-111.1768300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931645-0824-4-C/results/970103306/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9754","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","14:20:00","MST","2022-07-12 21:20:00",NA,"0.288",288,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103309","UTAHDWQ_WQX-LAKES220712-5931650-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","FISH CK AB SCOFIELD RES","River/Stream",NA,"39.7752400000",39.77524,"-111.1860000000",-111.186,"OK","14060007","UTAHDWQ_WQX-5931650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:26",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7752400000","-111.1860000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931650-0712-4-C/results/970103309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13035","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","14:20:00","MST","2022-07-12 21:20:00",NA,"0.271",271,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103313","UTAHDWQ_WQX-LAKES220712-5931650-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","FISH CK AB SCOFIELD RES","River/Stream",NA,"39.7752400000",39.77524,"-111.1860000000",-111.186,"OK","14060007","UTAHDWQ_WQX-5931650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:27",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7752400000","-111.1860000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931650-0712-4-C/results/970103313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13036","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-12","14:35:00","MST","2022-07-12 21:35:00",NA,"0.454",454,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103359","UTAHDWQ_WQX-LAKES220712-5931680-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","PONDTOWN CK AB SCOFIELD RES","River/Stream",NA,"39.7830200000",39.78302,"-111.1768400000",-111.17684,"OK","14060007","UTAHDWQ_WQX-5931680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7830200000","-111.1768400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931680-0712-4-C/results/970103359/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9757","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-12","14:35:00","MST","2022-07-12 21:35:00",NA,"0.584",584,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103361","UTAHDWQ_WQX-LAKES220712-5931680-0712-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","007","PONDTOWN CK AB SCOFIELD RES","River/Stream",NA,"39.7830200000",39.78302,"-111.1768400000",-111.17684,"OK","14060007","UTAHDWQ_WQX-5931680",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:28",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.7830200000","-111.1768400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-21","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931680-0712-4-C/results/970103361/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9758","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","15:15:00","MST","2022-06-01 22:15:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103371","UTAHDWQ_WQX-LAKES220531-5937850-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937850-0601-2-C/results/970103371/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13039","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","15:15:00","MST","2022-06-01 22:15:00",NA,"0.896",896,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103372","UTAHDWQ_WQX-LAKES220531-5937850-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937850-0601-2-C/results/970103372/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9760","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","15:30:00","MST","2022-06-01 22:30:00",NA,"0.943",943,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.68",5.68,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103383","UTAHDWQ_WQX-LAKES220531-5937850-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937850-0601-29-C/results/970103383/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9761","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","15:30:00","MST","2022-06-01 22:30:00",NA,"0.848",848,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","5.68",5.68,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103400","UTAHDWQ_WQX-LAKES220531-5937850-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM","Lake",NA,"40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937850-0601-29-C/results/970103400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9762","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","15:45:00","MST","2022-06-01 22:45:00",NA,"0.959",959,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103413","UTAHDWQ_WQX-LAKES220531-5937852-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937852-0601-2-C/results/970103413/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9763","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","15:45:00","MST","2022-06-01 22:45:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103414","UTAHDWQ_WQX-LAKES220531-5937852-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","40.7652400000",40.76524,"-109.2979100000",-109.29791,"OK","14040106","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7652400000","-109.2979100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937852-0601-2-C/results/970103414/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9764","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","14:20:00","MST","2022-06-01 21:20:00",NA,"0.926",926,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103422","UTAHDWQ_WQX-LAKES220531-5937860-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES W MIDLAKE 02","Lake",NA,"40.7741000000",40.7741,"-109.3017000000",-109.3017,"OK","14040106","UTAHDWQ_WQX-5937860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741000000","-109.3017000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937860-0601-2-C/results/970103422/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9765","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","14:20:00","MST","2022-06-01 21:20:00",NA,"0.993",993,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103426","UTAHDWQ_WQX-LAKES220531-5937860-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES W MIDLAKE 02","Lake",NA,"40.7741000000",40.7741,"-109.3017000000",-109.3017,"OK","14040106","UTAHDWQ_WQX-5937860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741000000","-109.3017000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937860-0601-2-C/results/970103426/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9766","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","14:30:00","MST","2022-06-01 21:30:00",NA,"0.918",918,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103435","UTAHDWQ_WQX-LAKES220531-5937860-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES W MIDLAKE 02","Lake",NA,"40.7741000000",40.7741,"-109.3017000000",-109.3017,"OK","14040106","UTAHDWQ_WQX-5937860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741000000","-109.3017000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937860-0601-29-C/results/970103435/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9767","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","14:30:00","MST","2022-06-01 21:30:00",NA,"1.42",1420,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","2",2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103437","UTAHDWQ_WQX-LAKES220531-5937860-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES W MIDLAKE 02","Lake",NA,"40.7741000000",40.7741,"-109.3017000000",-109.3017,"OK","14040106","UTAHDWQ_WQX-5937860",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741000000","-109.3017000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937860-0601-29-C/results/970103437/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9768","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","14:50:00","MST","2022-06-01 21:50:00",NA,"1.01",1010,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103447","UTAHDWQ_WQX-LAKES220531-5937870-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937870-0601-2-C/results/970103447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9769","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","14:50:00","MST","2022-06-01 21:50:00",NA,"0.955",955,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103454","UTAHDWQ_WQX-LAKES220531-5937870-0601-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937870-0601-2-C/results/970103454/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9770","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","15:00:00","MST","2022-06-01 22:00:00",NA,"0.97",970,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.2",3.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103461","UTAHDWQ_WQX-LAKES220531-5937870-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937870-0601-29-C/results/970103461/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9771","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","15:00:00","MST","2022-06-01 22:00:00",NA,"0.82",820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.2",3.2,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103462","UTAHDWQ_WQX-LAKES220531-5937870-0601-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","MATT WARNER RES E MIDLAKE 03","Lake",NA,"40.7725500000",40.77255,"-109.2926100000",-109.29261,"OK","14040106","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7725500000","-109.2926100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937870-0601-29-C/results/970103462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9772","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-01","16:00:00","MST","2022-06-01 23:00:00",NA,"0.381",381,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.07",0.07,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103484","UTAHDWQ_WQX-LAKES220531-5937880-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","POT CREEK AB MATT WARNER RES","River/Stream",NA,"40.7688400000",40.76884,"-109.3198600000",-109.31986,"OK","14040106","UTAHDWQ_WQX-5937880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7688400000","-109.3198600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937880-0601-4-C/results/970103484/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9773","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-01","16:00:00","MST","2022-06-01 23:00:00",NA,"0.269",269,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.07",0.07,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103488","UTAHDWQ_WQX-LAKES220531-5937880-0601-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","047","POT CREEK AB MATT WARNER RES","River/Stream",NA,"40.7688400000",40.76884,"-109.3198600000",-109.31986,"OK","14040106","UTAHDWQ_WQX-5937880",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7688400000","-109.3198600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937880-0601-4-C/results/970103488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9774","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","12:30:00","MST","2022-04-25 19:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103497","UTAHDWQ_WQX-NFDIXIE220425-5949855-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:36",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220425-5949855-0425-4-C/results/970103497/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9775","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","12:00:00","MST","2022-05-23 19:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103509","UTAHDWQ_WQX-NFDIXIE220523-5949855-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:37",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220523-5949855-0523-4-C/results/970103509/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9776","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","13:15:00","MST","2022-06-13 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103525","UTAHDWQ_WQX-NFDIXIE220613-5949855-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:38",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220613-5949855-0613-4-C/results/970103525/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9777","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","11:00:00","MST","2022-07-11 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103543","UTAHDWQ_WQX-NFDIXIE220711-5949855-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220711-5949855-0711-4-C/results/970103543/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9778","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","11:30:00","MST","2022-08-15 18:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103553","UTAHDWQ_WQX-NFDIXIE220815-5949855-0815-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:39",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220815-5949855-0815-4-C/results/970103553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9779","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","12:24:00","MST","2022-09-19 19:24:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103580","UTAHDWQ_WQX-NFDIXIE220919-5949855-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Panguitch Lake QAQC Blank","Lake","Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:40",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220919-5949855-0919-4-C/results/970103580/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9780","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","11:00:00","MST","2022-04-25 18:00:00",NA,"0.697",697,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103589","UTAHDWQ_WQX-NFDIXIE220425-5949890-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220425-5949890-0425-4-C/results/970103589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9781","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","10:53:00","MST","2022-05-23 17:53:00",NA,"0.235",235,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103597","UTAHDWQ_WQX-NFDIXIE220523-5949890-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220523-5949890-0523-4-C/results/970103597/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9782","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","12:45:00","MST","2022-06-13 19:45:00",NA,"0.32",320,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103605","UTAHDWQ_WQX-NFDIXIE220613-5949890-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220613-5949890-0613-4-C/results/970103605/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9783","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","10:10:00","MST","2022-07-11 17:10:00",NA,"0.259",259,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103627","UTAHDWQ_WQX-NFDIXIE220711-5949890-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220711-5949890-0711-4-C/results/970103627/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9784","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","10:30:00","MST","2022-08-15 17:30:00",NA,"0.291",291,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103642","UTAHDWQ_WQX-NFDIXIE220815-5949890-0815-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220815-5949890-0815-4-C/results/970103642/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9785","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:42:00","MST","2022-09-19 18:42:00",NA,"0.196",196,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103644","UTAHDWQ_WQX-NFDIXIE220919-5949890-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220919-5949890-0919-4-C/results/970103644/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9786","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","11:10:00","MST","2022-04-25 18:10:00",NA,"0.704",704,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103677","UTAHDWQ_WQX-NFDIXIE220425-5949892-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220425-5949892-0425-4-C/results/970103677/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9787","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","11:15:00","MST","2022-05-23 18:15:00",NA,"0.241",241,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103685","UTAHDWQ_WQX-NFDIXIE220523-5949892-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220523-5949892-0523-4-C/results/970103685/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9788","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","13:00:00","MST","2022-06-13 20:00:00",NA,"0.261",261,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103702","UTAHDWQ_WQX-NFDIXIE220613-5949892-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:46",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220613-5949892-0613-4-C/results/970103702/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9789","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","10:22:00","MST","2022-07-11 17:22:00",NA,"0.149",149,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103721","UTAHDWQ_WQX-NFDIXIE220711-5949892-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220711-5949892-0711-4-C/results/970103721/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9790","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","10:45:00","MST","2022-08-15 17:45:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103723","UTAHDWQ_WQX-NFDIXIE220815-5949892-0815-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220815-5949892-0815-4-C/results/970103723/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9791","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","11:57:00","MST","2022-09-19 18:57:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103734","UTAHDWQ_WQX-NFDIXIE220919-5949892-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","37.7223400000",37.72234,"-112.6699100000",-112.66991,"OK","16030001","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7223400000","-112.6699100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220919-5949892-0919-4-C/results/970103734/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9792","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","12:10:00","MST","2022-04-25 19:10:00",NA,"0.736",736,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103764","UTAHDWQ_WQX-NFDIXIE220425-5949920-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220425-5949920-0425-4-C/results/970103764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9793","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","11:45:00","MST","2022-05-23 18:45:00",NA,"0.376",376,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103767","UTAHDWQ_WQX-NFDIXIE220523-5949920-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220523-5949920-0523-4-C/results/970103767/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9794","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","11:30:00","MST","2022-06-13 18:30:00",NA,"0.296",296,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103796","UTAHDWQ_WQX-NFDIXIE220613-5949920-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220613-5949920-0613-4-C/results/970103796/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9795","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","10:45:00","MST","2022-07-11 17:45:00",NA,"0.24",240,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103809","UTAHDWQ_WQX-NFDIXIE220711-5949920-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220711-5949920-0711-4-C/results/970103809/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9796","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","11:30:00","MST","2022-08-15 18:30:00",NA,"0.281",281,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103817","UTAHDWQ_WQX-NFDIXIE220815-5949920-0815-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220815-5949920-0815-4-C/results/970103817/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9797","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","09:50:00","MST","2022-09-19 16:50:00",NA,"0.184",184,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103839","UTAHDWQ_WQX-NFDIXIE220919-5949920-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","021","Upper Clear Creek above Panguitch Lake","River/Stream",NA,"37.7328100000",37.73281,"-112.7057500000",-112.70575,"OK","16030001","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7328100000","-112.7057500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220919-5949920-0919-4-C/results/970103839/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9798","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-25","10:00:00","MST","2022-04-25 17:00:00",NA,"0.515",515,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103853","UTAHDWQ_WQX-NFDIXIE220425-5949930-0425-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220425-5949930-0425-4-C/results/970103853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9799","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-23","09:57:00","MST","2022-05-23 16:57:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103860","UTAHDWQ_WQX-NFDIXIE220523-5949930-0523-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220523-5949930-0523-4-C/results/970103860/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9800","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-13","14:00:00","MST","2022-06-13 21:00:00",NA,"0.248",248,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103873","UTAHDWQ_WQX-NFDIXIE220613-5949930-0613-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-29","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220613-5949930-0613-4-C/results/970103873/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9801","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-11","09:30:00","MST","2022-07-11 16:30:00",NA,"0.211",211,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103890","UTAHDWQ_WQX-NFDIXIE220711-5949930-0711-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220711-5949930-0711-4-C/results/970103890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9802","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","09:45:00","MST","2022-08-15 16:45:00",NA,"0.388",388,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103906","UTAHDWQ_WQX-NFDIXIE220815-5949930-0815-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220815-5949930-0815-4-C/results/970103906/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9803","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","13:40:00","MST","2022-09-19 20:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103933","UTAHDWQ_WQX-NFDIXIE220919-5949930-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"37.7063700000",37.70637,"-112.6591000000",-112.6591,"OK","16030001","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Forest Service",NA,"37.7063700000","-112.6591000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220919-5949930-0919-4-C/results/970103933/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9804","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","14:30:00","MST","2022-06-16 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103935","UTAHDWQ_WQX-BORLP220613-5952422-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952422-0616-2-C/results/970103935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9805","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","14:30:00","MST","2022-06-16 21:30:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103962","UTAHDWQ_WQX-BORLP220613-5952422-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952422-0616-29-C/results/970103962/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9806","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","13:40:00","MST","2022-09-22 20:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103972","UTAHDWQ_WQX-BORLP220920-5952422-0922-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952422-0922-2-C/results/970103972/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13087","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","13:45:00","MST","2022-09-22 20:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970103983","UTAHDWQ_WQX-BORLP220920-5952422-0922-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:35:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952422-0922-29-C/results/970103983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9808","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","12:15:00","MST","2022-06-14 19:15:00",NA,"0.844",844,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104094","UTAHDWQ_WQX-BORLP220613-5952560-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952560-0614-2-C/results/970104094/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9809","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","12:20:00","MST","2022-06-14 19:20:00",NA,"0.724",724,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","82",82,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104111","UTAHDWQ_WQX-BORLP220613-5952560-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952560-0614-29-C/results/970104111/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13090","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","10:25:00","MST","2022-09-20 17:25:00",NA,"0.585",585,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104126","UTAHDWQ_WQX-BORLP220920-5952560-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:05",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952560-0920-2-C/results/970104126/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13091","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","11:00:00","MST","2022-09-20 18:00:00",NA,"0.586",586,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","78",78,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104141","UTAHDWQ_WQX-BORLP220920-5952560-0920-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952560-0920-29-C/results/970104141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9812","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","14:15:00","MST","2022-06-14 21:15:00",NA,"0.847",847,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104159","UTAHDWQ_WQX-BORLP220613-5952590-0614-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952590-0614-2-C/results/970104159/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"9813","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-14","14:30:00","MST","2022-06-14 21:30:00",NA,"0.692",692,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","42",42,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104180","UTAHDWQ_WQX-BORLP220613-5952590-0614-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952590-0614-29-C/results/970104180/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13094","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","12:35:00","MST","2022-09-20 19:35:00",NA,"0.66",660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104194","UTAHDWQ_WQX-BORLP220920-5952590-0920-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952590-0920-2-C/results/970104194/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13095","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-20","12:45:00","MST","2022-09-20 19:45:00",NA,"0.592",592,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","39",39,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104207","UTAHDWQ_WQX-BORLP220920-5952590-0920-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952590-0920-29-C/results/970104207/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13096","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","13:15:00","MST","2022-06-16 20:15:00",NA,"0.467",467,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104223","UTAHDWQ_WQX-BORLP220613-5952700-0616-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952700-0616-2-C/results/970104223/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13097","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","13:55:00","MST","2022-06-16 20:55:00",NA,"0.54",540,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","26",26,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104237","UTAHDWQ_WQX-BORLP220613-5952700-0616-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952700-0616-29-C/results/970104237/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13098","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","17:38:00","MST","2022-09-22 00:38:00",NA,"0.383",383,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104257","UTAHDWQ_WQX-BORLP220920-5952700-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952700-0921-2-C/results/970104257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13099","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","18:50:00","MST","2022-09-22 01:50:00",NA,"0.547",547,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","22.5",22.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104264","UTAHDWQ_WQX-BORLP220920-5952700-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952700-0921-29-C/results/970104264/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13100","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","16:40:00","MST","2022-06-16 23:40:00",NA,"0.44",440,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104288","UTAHDWQ_WQX-BORLP220613-5952740-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952740-0616-4-C/results/970104288/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13101","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-22","08:25:00","MST","2022-09-22 15:25:00",NA,"0.453",453,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0.5",0.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104314","UTAHDWQ_WQX-BORLP220920-5952740-0922-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952740-0922-4-C/results/970104314/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13102","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","10:30:00","MST","2022-06-15 17:30:00",NA,"0.976",976,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104338","UTAHDWQ_WQX-BORLP220613-5952770-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952770-0615-2-C/results/970104338/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13103","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","11:10:00","MST","2022-06-15 18:10:00",NA,"0.965",965,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","15",15,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104348","UTAHDWQ_WQX-BORLP220613-5952770-0615-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952770-0615-23-C/results/970104348/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13104","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","11:15:00","MST","2022-06-15 18:15:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","20",20,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104354","UTAHDWQ_WQX-BORLP220613-5952770-0615-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952770-0615-27-C/results/970104354/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13105","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","11:30:00","MST","2022-06-15 18:30:00",NA,"0.837",837,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","54",54,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104364","UTAHDWQ_WQX-BORLP220613-5952770-0615-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952770-0615-29-C/results/970104364/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13106","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","08:45:00","MST","2022-09-21 15:45:00",NA,"0.545",545,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104384","UTAHDWQ_WQX-BORLP220920-5952770-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952770-0921-2-C/results/970104384/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13107","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","08:50:00","MST","2022-09-21 15:50:00",NA,"0.692",692,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","18",18,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104389","UTAHDWQ_WQX-BORLP220920-5952770-0921-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952770-0921-23-C/results/970104389/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13108","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","09:05:00","MST","2022-09-21 16:05:00",NA,"0.751",751,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","22",22,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104397","UTAHDWQ_WQX-BORLP220920-5952770-0921-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952770-0921-27-C/results/970104397/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13109","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","09:10:00","MST","2022-09-21 16:10:00",NA,"0.598",598,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","51",51,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104420","UTAHDWQ_WQX-BORLP220920-5952770-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952770-0921-29-C/results/970104420/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13110","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","15:20:00","MST","2022-06-15 22:20:00",NA,"0.787",787,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104429","UTAHDWQ_WQX-BORLP220613-5952910-0615-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952910-0615-2-C/results/970104429/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13111","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-15","15:35:00","MST","2022-06-15 22:35:00",NA,"0.987",987,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","31",31,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104436","UTAHDWQ_WQX-BORLP220613-5952910-0615-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:18",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952910-0615-29-C/results/970104436/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13112","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","12:10:00","MST","2022-09-21 19:10:00",NA,"0.534",534,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104462","UTAHDWQ_WQX-BORLP220920-5952910-0921-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952910-0921-2-C/results/970104462/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13113","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-21","12:20:00","MST","2022-09-21 19:20:00",NA,"0.586",586,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","28",28,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104482","UTAHDWQ_WQX-BORLP220920-5952910-0921-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:19",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952910-0921-29-C/results/970104482/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13114","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:25:00","MST","2022-07-19 17:25:00",NA,"0.603",603,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104488","UTAHDWQ_WQX-LAKES220719-5958010-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES AB DAM 001","Lake",NA,"37.6620200000",37.66202,"-109.4376800000",-109.43768,"OK","14080201","UTAHDWQ_WQX-5958010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6620200000","-109.4376800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-2-C/results/970104488/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13115","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:25:00","MST","2022-07-19 17:25:00",NA,"0.482",482,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104500","UTAHDWQ_WQX-LAKES220719-5958010-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES AB DAM 001","Lake",NA,"37.6620200000",37.66202,"-109.4376800000",-109.43768,"OK","14080201","UTAHDWQ_WQX-5958010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:20",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6620200000","-109.4376800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-2-C/results/970104500/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13116","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:50:00","MST","2022-07-19 17:50:00",NA,"0.328",328,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","1.9",1.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104505","UTAHDWQ_WQX-LAKES220719-5958010-0719-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES AB DAM 001","Lake",NA,"37.6620200000",37.66202,"-109.4376800000",-109.43768,"OK","14080201","UTAHDWQ_WQX-5958010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6620200000","-109.4376800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-23-C/results/970104505/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13117","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:50:00","MST","2022-07-19 17:50:00",NA,"1.13",1130,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"AboveThermoclin","1.9",1.9,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104507","UTAHDWQ_WQX-LAKES220719-5958010-0719-23-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES AB DAM 001","Lake",NA,"37.6620200000",37.66202,"-109.4376800000",-109.43768,"OK","14080201","UTAHDWQ_WQX-5958010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6620200000","-109.4376800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-23-C/results/970104507/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13118","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:55:00","MST","2022-07-19 17:55:00",NA,"0.352",352,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104512","UTAHDWQ_WQX-LAKES220719-5958010-0719-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES AB DAM 001","Lake",NA,"37.6620200000",37.66202,"-109.4376800000",-109.43768,"OK","14080201","UTAHDWQ_WQX-5958010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6620200000","-109.4376800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-27-C/results/970104512/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13119","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:55:00","MST","2022-07-19 17:55:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"BelowThermoclin","7",7,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104514","UTAHDWQ_WQX-LAKES220719-5958010-0719-27-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES AB DAM 001","Lake",NA,"37.6620200000",37.66202,"-109.4376800000",-109.43768,"OK","14080201","UTAHDWQ_WQX-5958010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:21",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6620200000","-109.4376800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-27-C/results/970104514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13120","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","10:45:00","MST","2022-07-19 17:45:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","17",17,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104524","UTAHDWQ_WQX-LAKES220719-5958010-0719-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES AB DAM 001","Lake",NA,"37.6620200000",37.66202,"-109.4376800000",-109.43768,"OK","14080201","UTAHDWQ_WQX-5958010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6620200000","-109.4376800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-29-C/results/970104524/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13121","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","10:45:00","MST","2022-07-19 17:45:00",NA,"0.96",960,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","17",17,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104529","UTAHDWQ_WQX-LAKES220719-5958010-0719-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES AB DAM 001","Lake",NA,"37.6620200000",37.66202,"-109.4376800000",-109.43768,"OK","14080201","UTAHDWQ_WQX-5958010",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6620200000","-109.4376800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-29-C/results/970104529/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13122","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","11:00:00","MST","2022-07-19 18:00:00",NA,"0.564",564,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104552","UTAHDWQ_WQX-LAKES220719-5958011-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES AB DAM 001 Replicate of 5958010","Lake","Replicate of 5958010","37.6620200000",37.66202,"-109.4376800000",-109.43768,"OK","14080201","UTAHDWQ_WQX-5958011",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6620200000","-109.4376800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958011-0719-2-C/results/970104552/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13123","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:00:00","MST","2022-07-19 18:00:00",NA,"0.324",324,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104553","UTAHDWQ_WQX-LAKES220719-5958011-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES AB DAM 001 Replicate of 5958010","Lake","Replicate of 5958010","37.6620200000",37.66202,"-109.4376800000",-109.43768,"OK","14080201","UTAHDWQ_WQX-5958011",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6620200000","-109.4376800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958011-0719-2-C/results/970104553/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13124","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","11:10:00","MST","2022-07-19 18:10:00",NA,"1.02",1020,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104558","UTAHDWQ_WQX-LAKES220719-5958020-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES 1/4 WAY UP RES 02","Lake",NA,"37.6672200000",37.66722,"-109.4398400000",-109.43984,"OK","14080201","UTAHDWQ_WQX-5958020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6672200000","-109.4398400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958020-0719-2-C/results/970104558/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13125","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:10:00","MST","2022-07-19 18:10:00",NA,"0.382",382,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104564","UTAHDWQ_WQX-LAKES220719-5958020-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES 1/4 WAY UP RES 02","Lake",NA,"37.6672200000",37.66722,"-109.4398400000",-109.43984,"OK","14080201","UTAHDWQ_WQX-5958020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:23",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6672200000","-109.4398400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958020-0719-2-C/results/970104564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13126","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","11:20:00","MST","2022-07-19 18:20:00",NA,"1.49",1490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104570","UTAHDWQ_WQX-LAKES220719-5958020-0719-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES 1/4 WAY UP RES 02","Lake",NA,"37.6672200000",37.66722,"-109.4398400000",-109.43984,"OK","14080201","UTAHDWQ_WQX-5958020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6672200000","-109.4398400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958020-0719-29-C/results/970104570/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13127","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:20:00","MST","2022-07-19 18:20:00",NA,"0.375",375,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","10",10,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104575","UTAHDWQ_WQX-LAKES220719-5958020-0719-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES 1/4 WAY UP RES 02","Lake",NA,"37.6672200000",37.66722,"-109.4398400000",-109.43984,"OK","14080201","UTAHDWQ_WQX-5958020",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:24",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6672200000","-109.4398400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958020-0719-29-C/results/970104575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13128","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:35:00","MST","2022-07-19 18:35:00",NA,"0.427",427,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104585","UTAHDWQ_WQX-LAKES220719-5958030-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES 1/2 WAY UP RES 03","Lake",NA,"37.6702700000",37.67027,"-109.4454000000",-109.4454,"OK","14080201","UTAHDWQ_WQX-5958030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6702700000","-109.4454000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958030-0719-2-C/results/970104585/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13129","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","11:35:00","MST","2022-07-19 18:35:00",NA,"1.86",1860,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104589","UTAHDWQ_WQX-LAKES220719-5958030-0719-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES 1/2 WAY UP RES 03","Lake",NA,"37.6702700000",37.67027,"-109.4454000000",-109.4454,"OK","14080201","UTAHDWQ_WQX-5958030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6702700000","-109.4454000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958030-0719-2-C/results/970104589/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13130","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-19","11:40:00","MST","2022-07-19 18:40:00",NA,"0.283",283,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.5",3.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104593","UTAHDWQ_WQX-LAKES220719-5958030-0719-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES 1/2 WAY UP RES 03","Lake",NA,"37.6702700000",37.67027,"-109.4454000000",-109.4454,"OK","14080201","UTAHDWQ_WQX-5958030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6702700000","-109.4454000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958030-0719-29-C/results/970104593/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13131","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-19","11:40:00","MST","2022-07-19 18:40:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","3.5",3.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104595","UTAHDWQ_WQX-LAKES220719-5958030-0719-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","037","RECAPTURE RES 1/2 WAY UP RES 03","Lake",NA,"37.6702700000",37.67027,"-109.4454000000",-109.4454,"OK","14080201","UTAHDWQ_WQX-5958030",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:25",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6702700000","-109.4454000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958030-0719-29-C/results/970104595/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13132","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-12","09:38:00","MST","2022-05-12 16:38:00",NA,"0.154",154,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104709","UTAHDWQ_WQX-BLMGSE220512-5994520-0512-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"37.1841500000",37.18415,"-111.3684900000",-111.36849,"OK","14070006","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:29",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1841500000","-111.3684900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-5994520-0512-4-C/results/970104709/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13133","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-27","17:14:00","MST","2022-06-28 00:14:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104715","UTAHDWQ_WQX-BLMGSE220626-5994520-0627-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"37.1841500000",37.18415,"-111.3684900000",-111.36849,"OK","14070006","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:30",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.1841500000","-111.3684900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-5994520-0627-4-C/results/970104715/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13134","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","10:17:00","MST","2022-09-28 17:17:00",NA,"0.312",312,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104722","UTAHDWQ_WQX-BLMGSE220927-5994520-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"37.1841500000",37.18415,"-111.3684900000",-111.36849,"OK","14070006","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management;Division of Water Quality",NA,"37.1841500000","-111.3684900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-5994520-0928-4-C/results/970104722/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13135","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-12","11:28:00","MST","2022-05-12 18:28:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104730","UTAHDWQ_WQX-BLMGSE220512-5994530-0512-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:31",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-5994530-0512-4-C/results/970104730/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13136","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-12","11:28:00","MST","2022-05-12 18:28:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104738","UTAHDWQ_WQX-BLMGSE220512-5994530-0512-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-5994530-0512-4-C/results/970104738/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13137","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-27","18:33:00","MST","2022-06-28 01:33:00",NA,"2.48",2480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104760","UTAHDWQ_WQX-BLMGSE220626-5994530-0627-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:32",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-5994530-0627-4-C/results/970104760/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13138","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-27","18:33:00","MST","2022-06-28 01:33:00",NA,"2.63",2630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104774","UTAHDWQ_WQX-BLMGSE220626-5994530-0627-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-5994530-0627-4-C/results/970104774/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13139","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-15","17:18:00","MST","2022-07-16 00:18:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104781","UTAHDWQ_WQX-BLMGSE220715-5994530-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-5994530-0715-4-C/results/970104781/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13140","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-15","17:18:00","MST","2022-07-16 00:18:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104803","UTAHDWQ_WQX-BLMGSE220715-5994530-0715-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:33",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-5994530-0715-4-C/results/970104803/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13141","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-01","10:40:00","MST","2022-08-01 17:40:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104825","UTAHDWQ_WQX-BLMGSE220801-5994530-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-5994530-0801-4-C/results/970104825/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13142","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","10:40:00","MST","2022-08-01 17:40:00",NA,"1",1000,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104829","UTAHDWQ_WQX-BLMGSE220801-5994530-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:34",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-5994530-0801-4-C/results/970104829/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13143","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","11:51:00","MST","2022-09-28 18:51:00",NA,"0.535",535,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104842","UTAHDWQ_WQX-BLMGSE220927-5994530-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-5994530-0928-4-C/results/970104842/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13144","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","11:51:00","MST","2022-09-28 18:51:00",NA,"0.524",524,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104848","UTAHDWQ_WQX-BLMGSE220927-5994530-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"37.0808100000",37.08081,"-111.6515600000",-111.65156,"OK","14070006","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:35",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Bureau of Land Management",NA,"37.0808100000","-111.6515600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-5994530-0928-4-C/results/970104848/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13145","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-12","14:57:00","MST","2022-05-12 21:57:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104858","UTAHDWQ_WQX-BLMGSE220512-5994550-0512-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-5994550-0512-4-C/results/970104858/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13146","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-27","19:24:00","MST","2022-06-28 02:24:00",NA,"1.68",1680,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104868","UTAHDWQ_WQX-BLMGSE220626-5994550-0627-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:36",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-5994550-0627-4-C/results/970104868/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13147","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-16","09:42:00","MST","2022-07-16 16:42:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104875","UTAHDWQ_WQX-BLMGSE220715-5994550-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-5994550-0716-4-C/results/970104875/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13148","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","12:31:00","MST","2022-08-01 19:31:00",NA,"0.76",760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104884","UTAHDWQ_WQX-BLMGSE220801-5994550-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","PARIA R AT OLD TOWN SITE","River/Stream",NA,"37.2504800000",37.25048,"-111.9542600000",-111.95426,"OK","14070007","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:37",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.2504800000","-111.9542600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-5994550-0801-4-C/results/970104884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13149","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-12","17:23:00","MST","2022-05-13 00:23:00",NA,"0.197",197,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104890","UTAHDWQ_WQX-BLMGSE220512-5994650-0512-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-5994650-0512-4-C/results/970104890/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13150","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-27","10:46:00","MST","2022-06-27 17:46:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104892","UTAHDWQ_WQX-BLMGSE220626-5994650-0627-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:38",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-08","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-5994650-0627-4-C/results/970104892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13151","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-16","10:47:00","MST","2022-07-16 17:47:00",NA,"0.454",454,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104900","UTAHDWQ_WQX-BLMGSE220715-5994650-0716-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-5994650-0716-4-C/results/970104900/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13152","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-01","08:48:00","MST","2022-08-01 15:48:00",NA,"0.804",804,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104907","UTAHDWQ_WQX-BLMGSE220801-5994650-0801-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:39",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-5994650-0801-4-C/results/970104907/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13153","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","18:31:00","MST","2022-09-28 01:31:00",NA,"0.307",307,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104913","UTAHDWQ_WQX-BLMGSE220927-5994650-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"37.3241500000",37.32415,"-112.2165900000",-112.21659,"OK","14070007","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:40",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality;Bureau of Land Management",NA,"37.3241500000","-112.2165900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-5994650-0927-4-C/results/970104913/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13154","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-15","14:45:00","MST","2022-05-15 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104922","UTAHDWQ_WQX-NPSETAL220506-5995202-0515-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-31","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-5995202-0515-4-C/results/970104922/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13155","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-15","14:45:00","MST","2022-05-15 21:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104934","UTAHDWQ_WQX-NPSETAL220506-5995202-0515-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-05-27","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-5995202-0515-4-C/results/970104934/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13156","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","13:20:00","MST","2022-06-29 20:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104939","UTAHDWQ_WQX-NPSCAN220629-5995202-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:41",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995202-0629-4-C/results/970104939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13157","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","13:20:00","MST","2022-06-29 20:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104949","UTAHDWQ_WQX-NPSCAN220629-5995202-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995202-0629-4-C/results/970104949/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13158","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-08","19:15:00","MST","2022-07-09 02:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104956","UTAHDWQ_WQX-NPSETAL220707-5995202-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-5995202-0708-4-C/results/970104956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13159","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-08","19:15:00","MST","2022-07-09 02:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104958","UTAHDWQ_WQX-NPSETAL220707-5995202-0708-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:42",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-20","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-5995202-0708-4-C/results/970104958/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13160","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-16","13:10:00","MST","2022-08-16 20:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970104984","UTAHDWQ_WQX-NPSCAN220815-5995202-0816-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:43",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995202-0816-4-C/results/970104984/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13161","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-16","13:10:00","MST","2022-08-16 20:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105015","UTAHDWQ_WQX-NPSCAN220815-5995202-0816-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:44",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995202-0816-4-C/results/970105015/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13162","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-11","12:10:00","MST","2022-09-11 19:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105022","UTAHDWQ_WQX-NPSCAN220911-5995202-0911-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995202-0911-4-C/results/970105022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13163","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-11","12:10:00","MST","2022-09-11 19:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105031","UTAHDWQ_WQX-NPSCAN220911-5995202-0911-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:45",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995202-0911-4-C/results/970105031/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13164","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-19","19:00:00","MST","2022-09-20 02:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105059","UTAHDWQ_WQX-NPSETAL220901-5995202-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-5995202-0919-4-C/results/970105059/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13165","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-19","19:00:00","MST","2022-09-20 02:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105066","UTAHDWQ_WQX-NPSETAL220901-5995202-0919-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Arches National Park (Field Blank)","River/Stream","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-5995202-0919-4-C/results/970105066/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13166","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-16","11:35:00","MST","2022-04-16 18:35:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105071","UTAHDWQ_WQX-NPSCAN220416-5995220-0416-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:47",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995220-0416-4-C/results/970105071/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13167","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-16","11:35:00","MST","2022-04-16 18:35:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105092","UTAHDWQ_WQX-NPSCAN220416-5995220-0416-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995220-0416-4-C/results/970105092/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13168","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","10:55:00","MST","2022-05-24 17:55:00",NA,"0.233",233,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105107","UTAHDWQ_WQX-NPSCAN220524-5995220-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:48",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-5995220-0524-4-C/results/970105107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13169","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","10:55:00","MST","2022-05-24 17:55:00",NA,"0.392",392,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105113","UTAHDWQ_WQX-NPSCAN220524-5995220-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-5995220-0524-4-C/results/970105113/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13170","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","11:20:00","MST","2022-06-29 18:20:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105119","UTAHDWQ_WQX-NPSCAN220629-5995220-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995220-0629-4-C/results/970105119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13171","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","11:20:00","MST","2022-06-29 18:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105133","UTAHDWQ_WQX-NPSCAN220629-5995220-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:49",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995220-0629-4-C/results/970105133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13172","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","12:30:00","MST","2022-07-28 19:30:00",NA,"0.15",150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105141","UTAHDWQ_WQX-NPSCAN220727-5995220-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-5995220-0728-4-C/results/970105141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13173","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","12:30:00","MST","2022-07-28 19:30:00",NA,"0.343",343,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105147","UTAHDWQ_WQX-NPSCAN220727-5995220-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:50",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-5995220-0728-4-C/results/970105147/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13174","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","10:50:00","MST","2022-08-15 17:50:00",NA,"0.247",247,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105172","UTAHDWQ_WQX-NPSCAN220815-5995220-0815-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995220-0815-4-C/results/970105172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13175","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","10:50:00","MST","2022-08-15 17:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105178","UTAHDWQ_WQX-NPSCAN220815-5995220-0815-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:51",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995220-0815-4-C/results/970105178/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13176","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-11","10:40:00","MST","2022-09-11 17:40:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105188","UTAHDWQ_WQX-NPSCAN220911-5995220-0911-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995220-0911-4-C/results/970105188/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13177","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-11","10:40:00","MST","2022-09-11 17:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105193","UTAHDWQ_WQX-NPSCAN220911-5995220-0911-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3","River/Stream",NA,"38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995220",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:52",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995220-0911-4-C/results/970105193/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13178","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-16","11:45:00","MST","2022-04-16 18:45:00",NA,"0.232",232,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105201","UTAHDWQ_WQX-NPSCAN220416-5995222-0416-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220","River/Stream","Replicate of 5995220","38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995222-0416-4-C/results/970105201/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13179","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-16","11:45:00","MST","2022-04-16 18:45:00",NA,"0.293",293,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105205","UTAHDWQ_WQX-NPSCAN220416-5995222-0416-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220","River/Stream","Replicate of 5995220","38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:53",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995222-0416-4-C/results/970105205/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13180","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","11:25:00","MST","2022-06-29 18:25:00",NA,"0.251",251,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105239","UTAHDWQ_WQX-NPSCAN220629-5995222-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220","River/Stream","Replicate of 5995220","38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995222-0629-4-C/results/970105239/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13181","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","11:25:00","MST","2022-06-29 18:25:00",NA,"0.168",168,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105241","UTAHDWQ_WQX-NPSCAN220629-5995222-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220","River/Stream","Replicate of 5995220","38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:54",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995222-0629-4-C/results/970105241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13182","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-15","10:52:00","MST","2022-08-15 17:52:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105251","UTAHDWQ_WQX-NPSCAN220815-5995222-0815-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220","River/Stream","Replicate of 5995220","38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995222-0815-4-C/results/970105251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13183","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-15","10:52:00","MST","2022-08-15 17:52:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105252","UTAHDWQ_WQX-NPSCAN220815-5995222-0815-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220","River/Stream","Replicate of 5995220","38.7352600000",38.73526,"-109.5195600000",-109.51956,"OK","14030005","UTAHDWQ_WQX-5995222",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:55",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.7352600000","-109.5195600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-25","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995222-0815-4-C/results/970105252/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13184","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-04-16","09:20:00","MST","2022-04-16 16:20:00",NA,"0.219",219,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105277","UTAHDWQ_WQX-NPSCAN220416-5995240-0416-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995240-0416-4-C/results/970105277/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13185","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-04-16","09:20:00","MST","2022-04-16 16:20:00",NA,"0.274",274,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105298","UTAHDWQ_WQX-NPSCAN220416-5995240-0416-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:56",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-04-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995240-0416-4-C/results/970105298/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13186","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-05-24","08:55:00","MST","2022-05-24 15:55:00",NA,"0.348",348,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105309","UTAHDWQ_WQX-NPSCAN220524-5995240-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-5995240-0524-4-C/results/970105309/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13187","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-05-24","08:55:00","MST","2022-05-24 15:55:00",NA,"0.217",217,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105313","UTAHDWQ_WQX-NPSCAN220524-5995240-0524-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:57",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-06-14","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-5995240-0524-4-C/results/970105313/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13188","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-29","09:30:00","MST","2022-06-29 16:30:00",NA,"0.294",294,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105322","UTAHDWQ_WQX-NPSCAN220629-5995240-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995240-0629-4-C/results/970105322/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13189","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-29","09:30:00","MST","2022-06-29 16:30:00",NA,"0.384",384,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105324","UTAHDWQ_WQX-NPSCAN220629-5995240-0629-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:58",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995240-0629-4-C/results/970105324/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13190","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-28","10:45:00","MST","2022-07-28 17:45:00",NA,"1.08",1080,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105349","UTAHDWQ_WQX-NPSCAN220727-5995240-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-5995240-0728-4-C/results/970105349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13191","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-28","10:45:00","MST","2022-07-28 17:45:00",NA,"1.04",1040,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105358","UTAHDWQ_WQX-NPSCAN220727-5995240-0728-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:36:59",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-12","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-5995240-0728-4-C/results/970105358/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13192","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-29","10:35:00","MST","2022-08-29 17:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105368","UTAHDWQ_WQX-NPSCAN220815-5995240-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995240-0829-4-C/results/970105368/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13193","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-29","10:35:00","MST","2022-08-29 17:35:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105379","UTAHDWQ_WQX-NPSCAN220815-5995240-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:37:00",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995240-0829-4-C/results/970105379/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13194","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-11","09:10:00","MST","2022-09-11 16:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105399","UTAHDWQ_WQX-NPSCAN220911-5995240-0911-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995240-0911-4-C/results/970105399/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13195","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-11","09:10:00","MST","2022-09-11 16:10:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-970105400","UTAHDWQ_WQX-NPSCAN220911-5995240-0911-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","019","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1","River/Stream",NA,"38.6130400000",38.61304,"-109.5798400000",-109.57984,"OK","14030005","UTAHDWQ_WQX-5995240",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-08T01:37:01",FALSE,"Flag",NA,NA,NA,NA,NA,"National Park Service",NA,"38.6130400000","-109.5798400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-03","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995240-0911-4-C/results/970105400/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13196","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-16","09:30:00","MST","2021-12-16 16:30:00",NA,"0.674",674,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693608","UTAHDWQ_WQX-BORLP211213-4952370-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","COLORADO R AB DARK CANYON","River/Stream",NA,"37.8977700000",37.89777,"-110.2051400000",-110.20514,"OK","14070001","UTAHDWQ_WQX-4952370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:01:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8977700000","-110.2051400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-4952370-1216-4-C/results/971693608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13197","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-16","09:30:00","MST","2021-12-16 16:30:00",NA,"0.793",793,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693612","UTAHDWQ_WQX-BORLP211213-4952370-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","COLORADO R AB DARK CANYON","River/Stream",NA,"37.8977700000",37.89777,"-110.2051400000",-110.20514,"OK","14070001","UTAHDWQ_WQX-4952370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:01:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8977700000","-110.2051400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-4952370-1216-4-C/results/971693612/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13198","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","14:00:00","MST","2022-03-09 21:00:00",NA,"0.869",869,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693625","UTAHDWQ_WQX-BORLP220307-4952370-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","COLORADO R AB DARK CANYON","River/Stream",NA,"37.8977700000",37.89777,"-110.2051400000",-110.20514,"OK","14070001","UTAHDWQ_WQX-4952370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:01:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8977700000","-110.2051400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-4952370-0309-4-C/results/971693625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13199","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","14:00:00","MST","2022-03-09 21:00:00",NA,"0.829",829,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693639","UTAHDWQ_WQX-BORLP220307-4952370-0309-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","COLORADO R AB DARK CANYON","River/Stream",NA,"37.8977700000",37.89777,"-110.2051400000",-110.20514,"OK","14070001","UTAHDWQ_WQX-4952370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:01:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.8977700000","-110.2051400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-4952370-0309-4-C/results/971693639/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13200","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","15:45:00","MST","2021-12-14 22:45:00",NA,"0.76",760,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693648","UTAHDWQ_WQX-BORLP211213-4952940-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AB LAKE POWELL","River/Stream",NA,"37.2941600000",37.29416,"-110.4068000000",-110.4068,"OK","14080205","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2941600000","-110.4068000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-4952940-1214-4-C/results/971693648/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13201","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","15:45:00","MST","2021-12-14 22:45:00",NA,"0.669",669,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693662","UTAHDWQ_WQX-BORLP211213-4952940-1214-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AB LAKE POWELL","River/Stream",NA,"37.2941600000",37.29416,"-110.4068000000",-110.4068,"OK","14080205","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2941600000","-110.4068000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-10","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-4952940-1214-4-C/results/971693662/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13202","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","14:10:00","MST","2022-03-08 21:10:00",NA,"0.784",784,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693674","UTAHDWQ_WQX-BORLP220307-4952940-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AB LAKE POWELL","River/Stream",NA,"37.2941600000",37.29416,"-110.4068000000",-110.4068,"OK","14080205","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2941600000","-110.4068000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-4952940-0308-4-C/results/971693674/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13203","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","14:10:00","MST","2022-03-08 21:10:00",NA,"0.9",900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693683","UTAHDWQ_WQX-BORLP220307-4952940-0308-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","SAN JUAN R AB LAKE POWELL","River/Stream",NA,"37.2941600000",37.29416,"-110.4068000000",-110.4068,"OK","14080205","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.2941600000","-110.4068000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-4952940-0308-4-C/results/971693683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13204","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-17","08:55:00","MST","2021-12-17 15:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693710","UTAHDWQ_WQX-BORLP211213-5952422-1217-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952422-1217-2-C/results/971693710/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13205","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-17","08:55:00","MST","2021-12-17 15:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693712","UTAHDWQ_WQX-BORLP211213-5952422-1217-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952422-1217-2-C/results/971693712/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13206","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-17","09:00:00","MST","2021-12-17 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693718","UTAHDWQ_WQX-BORLP211213-5952422-1217-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952422-1217-29-C/results/971693718/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13207","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-17","09:00:00","MST","2021-12-17 16:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693726","UTAHDWQ_WQX-BORLP211213-5952422-1217-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952422-1217-29-C/results/971693726/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13208","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-10","13:15:00","MST","2022-03-10 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693747","UTAHDWQ_WQX-BORLP220307-5952422-0310-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952422-0310-2-C/results/971693747/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13209","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-10","13:15:00","MST","2022-03-10 20:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693749","UTAHDWQ_WQX-BORLP220307-5952422-0310-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952422-0310-2-C/results/971693749/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13210","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-10","13:20:00","MST","2022-03-10 20:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693762","UTAHDWQ_WQX-BORLP220307-5952422-0310-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952422-0310-29-C/results/971693762/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13211","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-10","13:20:00","MST","2022-03-10 20:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693764","UTAHDWQ_WQX-BORLP220307-5952422-0310-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","035","Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952422-0310-29-C/results/971693764/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13212","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","11:45:00","MST","2021-12-14 18:45:00",NA,"0.66",660,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693886","UTAHDWQ_WQX-BORLP211213-5952560-1214-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952560-1214-2-C/results/971693886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13213","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","11:45:00","MST","2021-12-14 18:45:00",NA,"0.679",679,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693888","UTAHDWQ_WQX-BORLP211213-5952560-1214-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:06",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952560-1214-2-C/results/971693888/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13214","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","12:15:00","MST","2021-12-14 19:15:00",NA,"0.444",444,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","82",82,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693905","UTAHDWQ_WQX-BORLP211213-5952560-1214-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952560-1214-29-C/results/971693905/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13215","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","12:15:00","MST","2021-12-14 19:15:00",NA,"0.46",460,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","82",82,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693912","UTAHDWQ_WQX-BORLP211213-5952560-1214-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952560-1214-29-C/results/971693912/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13216","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","10:50:00","MST","2022-03-08 17:50:00",NA,"0.486",486,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693920","UTAHDWQ_WQX-BORLP220307-5952560-0308-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952560-0308-2-C/results/971693920/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13217","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","10:50:00","MST","2022-03-08 17:50:00",NA,"0.49",490,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693924","UTAHDWQ_WQX-BORLP220307-5952560-0308-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952560-0308-2-C/results/971693924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13218","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","11:05:00","MST","2022-03-08 18:05:00",NA,"0.745",745,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","78",78,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693935","UTAHDWQ_WQX-BORLP220307-5952560-0308-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952560-0308-29-C/results/971693935/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13219","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","11:05:00","MST","2022-03-08 18:05:00",NA,"0.695",695,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","78",78,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693939","UTAHDWQ_WQX-BORLP220307-5952560-0308-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"37.1397200000",37.13972,"-110.9540400000",-110.95404,"OK","14070006","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:07",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1397200000","-110.9540400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952560-0308-29-C/results/971693939/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13220","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","13:45:00","MST","2021-12-14 20:45:00",NA,"0.585",585,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693956","UTAHDWQ_WQX-BORLP211213-5952590-1214-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952590-1214-2-C/results/971693956/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13221","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","13:45:00","MST","2021-12-14 20:45:00",NA,"0.593",593,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693962","UTAHDWQ_WQX-BORLP211213-5952590-1214-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:08",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952590-1214-2-C/results/971693962/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13222","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-14","14:00:00","MST","2021-12-14 21:00:00",NA,"0.634",634,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","43",43,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693973","UTAHDWQ_WQX-BORLP211213-5952590-1214-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952590-1214-29-C/results/971693973/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13223","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-14","14:00:00","MST","2021-12-14 21:00:00",NA,"0.525",525,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","43",43,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693983","UTAHDWQ_WQX-BORLP211213-5952590-1214-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952590-1214-29-C/results/971693983/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13224","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","13:00:00","MST","2022-03-08 20:00:00",NA,"0.611",611,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693997","UTAHDWQ_WQX-BORLP220307-5952590-0308-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952590-0308-2-C/results/971693997/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13225","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","13:00:00","MST","2022-03-08 20:00:00",NA,"0.554",554,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971693999","UTAHDWQ_WQX-BORLP220307-5952590-0308-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:09",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952590-0308-2-C/results/971693999/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13226","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-08","13:10:00","MST","2022-03-08 20:10:00",NA,"0.604",604,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","39",39,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694006","UTAHDWQ_WQX-BORLP220307-5952590-0308-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952590-0308-29-C/results/971694006/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13227","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-08","13:10:00","MST","2022-03-08 20:10:00",NA,"0.618",618,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","39",39,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694018","UTAHDWQ_WQX-BORLP220307-5952590-0308-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","037","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"37.1683300000",37.16833,"-110.8179200000",-110.81792,"OK","14080205","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.1683300000","-110.8179200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952590-0308-29-C/results/971694018/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13228","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-16","14:45:00","MST","2021-12-16 21:45:00",NA,"0.64",640,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694039","UTAHDWQ_WQX-BORLP211213-5952700-1216-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952700-1216-2-C/results/971694039/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13229","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-16","14:45:00","MST","2021-12-16 21:45:00",NA,"0.53",530,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694042","UTAHDWQ_WQX-BORLP211213-5952700-1216-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:10",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952700-1216-2-C/results/971694042/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13230","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-16","15:00:00","MST","2021-12-16 22:00:00",NA,"0.507",507,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","26.5",26.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694057","UTAHDWQ_WQX-BORLP211213-5952700-1216-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952700-1216-29-C/results/971694057/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13231","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-16","15:00:00","MST","2021-12-16 22:00:00",NA,"0.536",536,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","26.5",26.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694058","UTAHDWQ_WQX-BORLP211213-5952700-1216-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952700-1216-29-C/results/971694058/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13232","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-10","08:10:00","MST","2022-03-10 15:10:00",NA,"0.508",508,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694074","UTAHDWQ_WQX-BORLP220307-5952700-0310-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952700-0310-2-C/results/971694074/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13233","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-10","08:10:00","MST","2022-03-10 15:10:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694077","UTAHDWQ_WQX-BORLP220307-5952700-0310-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:11",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952700-0310-2-C/results/971694077/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13234","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-10","08:30:00","MST","2022-03-10 15:30:00",NA,"0.567",567,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","23.5",23.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694082","UTAHDWQ_WQX-BORLP220307-5952700-0310-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952700-0310-29-C/results/971694082/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13235","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-10","08:30:00","MST","2022-03-10 15:30:00",NA,"0.556",556,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","23.5",23.5,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694093","UTAHDWQ_WQX-BORLP220307-5952700-0310-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL OFF DAVIS GULCH","Lake",NA,"37.3213800000",37.32138,"-110.9187600000",-110.91876,"OK","14070005","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.3213800000","-110.9187600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952700-0310-29-C/results/971694093/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13236","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-16","15:55:00","MST","2021-12-16 22:55:00",NA,"0.364",364,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694107","UTAHDWQ_WQX-BORLP211213-5952740-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952740-1216-4-C/results/971694107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13237","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-16","15:55:00","MST","2021-12-16 22:55:00",NA,"0.45",450,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694119","UTAHDWQ_WQX-BORLP211213-5952740-1216-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:12",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952740-1216-4-C/results/971694119/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13238","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-10","09:15:00","MST","2022-03-10 16:15:00",NA,"0.34",340,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694141","UTAHDWQ_WQX-BORLP220307-5952740-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952740-0310-4-C/results/971694141/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13239","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-10","09:15:00","MST","2022-03-10 16:15:00",NA,"0.357",357,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694160","UTAHDWQ_WQX-BORLP220307-5952740-0310-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","ESCALANTE R AB LAKE POWELL","River/Stream",NA,"37.4319300000",37.43193,"-110.9853500000",-110.98535,"OK","14070005","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4319300000","-110.9853500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952740-0310-4-C/results/971694160/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13240","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-15","15:15:00","MST","2021-12-15 22:15:00",NA,"0.801",801,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694167","UTAHDWQ_WQX-BORLP211213-5952770-1215-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952770-1215-2-C/results/971694167/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13241","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-15","15:15:00","MST","2021-12-15 22:15:00",NA,"0.817",817,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694172","UTAHDWQ_WQX-BORLP211213-5952770-1215-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:13",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952770-1215-2-C/results/971694172/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13242","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-15","15:30:00","MST","2021-12-15 22:30:00",NA,"0.708",708,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","55",55,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694181","UTAHDWQ_WQX-BORLP211213-5952770-1215-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952770-1215-29-C/results/971694181/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13243","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-15","15:30:00","MST","2021-12-15 22:30:00",NA,"0.766",766,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","55",55,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694189","UTAHDWQ_WQX-BORLP211213-5952770-1215-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952770-1215-29-C/results/971694189/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13244","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","08:10:00","MST","2022-03-09 15:10:00",NA,"0.592",592,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694204","UTAHDWQ_WQX-BORLP220307-5952770-0309-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952770-0309-2-C/results/971694204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13245","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","08:10:00","MST","2022-03-09 15:10:00",NA,"0.612",612,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694210","UTAHDWQ_WQX-BORLP220307-5952770-0309-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:14",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952770-0309-2-C/results/971694210/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13246","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","08:30:00","MST","2022-03-09 15:30:00",NA,"0.738",738,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","51",51,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694216","UTAHDWQ_WQX-BORLP220307-5952770-0309-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952770-0309-29-C/results/971694216/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13247","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","08:30:00","MST","2022-03-09 15:30:00",NA,"0.772",772,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","51",51,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694233","UTAHDWQ_WQX-BORLP220307-5952770-0309-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","025","LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"37.4719400000",37.47194,"-110.7265300000",-110.72653,"OK","14070001","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.4719400000","-110.7265300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952770-0309-29-C/results/971694233/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13248","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-16","08:15:00","MST","2021-12-16 15:15:00",NA,"0.767",767,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694241","UTAHDWQ_WQX-BORLP211213-5952910-1216-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952910-1216-2-C/results/971694241/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13249","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-16","08:15:00","MST","2021-12-16 15:15:00",NA,"0.779",779,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694243","UTAHDWQ_WQX-BORLP211213-5952910-1216-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:15",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952910-1216-2-C/results/971694243/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13250","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2021-12-16","08:30:00","MST","2021-12-16 15:30:00",NA,"0.662",662,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32",32,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694259","UTAHDWQ_WQX-BORLP211213-5952910-1216-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952910-1216-29-C/results/971694259/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13251","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2021-12-16","08:30:00","MST","2021-12-16 15:30:00",NA,"0.642",642,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","32",32,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694262","UTAHDWQ_WQX-BORLP211213-5952910-1216-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-01-11","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952910-1216-29-C/results/971694262/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13252","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","12:25:00","MST","2022-03-09 19:25:00",NA,"0.691",691,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694285","UTAHDWQ_WQX-BORLP220307-5952910-0309-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952910-0309-2-C/results/971694285/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13253","Sample-Integrated Vertical Profile","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","12:25:00","MST","2022-03-09 19:25:00",NA,"0.656",656,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,"0",0,"Numeric","m","m","2",2,"Numeric","m","m",NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694286","UTAHDWQ_WQX-BORLP220307-5952910-0309-2-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:16",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952910-0309-2-C/results/971694286/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13254","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-03-09","12:45:00","MST","2022-03-09 19:45:00",NA,"0.728",728,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","29",29,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694299","UTAHDWQ_WQX-BORLP220307-5952910-0309-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952910-0309-29-C/results/971694299/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13255","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-03-09","12:45:00","MST","2022-03-09 19:45:00",NA,"0.696",696,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Bottom","29",29,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-971694300","UTAHDWQ_WQX-BORLP220307-5952910-0309-29-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.","306",NA,"N",NA,"N","US","49","017","LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"37.7216500000",37.72165,"-110.4712500000",-110.47125,"OK","14070001","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-03-21T11:02:17",FALSE,"Flag",NA,NA,NA,NA,NA,"Bureau of Reclamation",NA,"37.7216500000","-110.4712500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-03-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952910-0309-29-C/results/971694300/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13256","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","13:35:00","MST","2022-07-21 20:35:00",NA,"0.351",351,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657575","UTAHDWQ_WQX-UCASE2022-4925195-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925195-0721-4-C/results/974657575/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13257","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-21","13:35:00","MST","2022-07-21 20:35:00",NA,"0.341",341,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657588","UTAHDWQ_WQX-UCASE2022-4925195-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","029","East Canyon Ck @ New Gage @ East Canyon Resort","River/Stream",NA,"40.8691100000",40.86911,"-111.5863200000",-111.58632,"OK","16020102","UTAHDWQ_WQX-4925195",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:43",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8691100000","-111.5863200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925195-0721-4-C/results/974657588/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13258","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-21","11:25:00","MST","2022-07-21 18:25:00",NA,"1.78",1780,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657608","UTAHDWQ_WQX-UCASE2022-4925230-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925230-0721-4-C/results/974657608/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13259","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","11:25:00","MST","2022-07-21 18:25:00",NA,"1.91",1910,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657631","UTAHDWQ_WQX-UCASE2022-4925230-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","EAST CANYON CK BL JEREMY RANCH GOLF COURSE","River/Stream",NA,"40.7692500000",40.76925,"-111.5836800000",-111.58368,"OK","16020102","UTAHDWQ_WQX-4925230",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7692500000","-111.5836800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925230-0721-4-C/results/974657631/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13260","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","09:25:00","MST","2022-07-21 16:25:00",NA,"0.355",355,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657659","UTAHDWQ_WQX-UCASE2022-4925442-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","KIMBALL CK AB HIGHLAND DR XING","River/Stream",NA,"40.7210600000",40.72106,"-111.5179800000",-111.51798,"OK","16020102","UTAHDWQ_WQX-4925442",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7210600000","-111.5179800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925442-0721-4-C/results/974657659/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13261","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-21","09:25:00","MST","2022-07-21 16:25:00",NA,"0.262",262,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657660","UTAHDWQ_WQX-UCASE2022-4925442-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","KIMBALL CK AB HIGHLAND DR XING","River/Stream",NA,"40.7210600000",40.72106,"-111.5179800000",-111.51798,"OK","16020102","UTAHDWQ_WQX-4925442",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:44",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7210600000","-111.5179800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925442-0721-4-C/results/974657660/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13262","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-31","10:30:00","MST","2022-08-31 17:30:00",NA,"0.299",299,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657670","UTAHDWQ_WQX-UCASE2022-4926290-0831-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926290-0831-4-C/results/974657670/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13263","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-31","10:30:00","MST","2022-08-31 17:30:00",NA,"0.231",231,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657683","UTAHDWQ_WQX-UCASE2022-4926290-0831-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"40.9324400000",40.93244,"-111.2924200000",-111.29242,"OK","16020101","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9324400000","-111.2924200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926290-0831-4-C/results/974657683/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13264","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-31","11:40:00","MST","2022-08-31 18:40:00",NA,"1.07",1070,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657698","UTAHDWQ_WQX-UCASE2022-4926350-0831-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926350-0831-4-C/results/974657698/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13265","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-31","11:40:00","MST","2022-08-31 18:40:00",NA,"1.17",1170,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657713","UTAHDWQ_WQX-UCASE2022-4926350-0831-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CK AT US189 XING","River/Stream",NA,"40.9205100000",40.92051,"-111.4013100000",-111.40131,"OK","16020101","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:45",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9205100000","-111.4013100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926350-0831-4-C/results/974657713/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13266","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-29","14:00:00","MST","2022-08-29 21:00:00",NA,"0.643",643,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657719","UTAHDWQ_WQX-UCASE2022-4926358-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Fish Ck bl first drill pad","River/Stream",NA,"40.9041200000",40.90412,"-111.2008500000",-111.20085,"OK","16020101","UTAHDWQ_WQX-4926358",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9041200000","-111.2008500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926358-0829-4-C/results/974657719/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13267","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-29","14:00:00","MST","2022-08-29 21:00:00",NA,"0.543",543,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657734","UTAHDWQ_WQX-UCASE2022-4926358-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Fish Ck bl first drill pad","River/Stream",NA,"40.9041200000",40.90412,"-111.2008500000",-111.20085,"OK","16020101","UTAHDWQ_WQX-4926358",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9041200000","-111.2008500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926358-0829-4-C/results/974657734/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13268","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-29","15:00:00","MST","2022-08-29 22:00:00",NA,"0.343",343,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657745","UTAHDWQ_WQX-UCASE2022-4926360-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926360-0829-4-C/results/974657745/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13269","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-29","15:00:00","MST","2022-08-29 22:00:00",NA,"0.165",165,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657765","UTAHDWQ_WQX-UCASE2022-4926360-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"40.9257500000",40.92575,"-111.2731700000",-111.27317,"OK","16020101","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:46",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9257500000","-111.2731700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926360-0829-4-C/results/974657765/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13270","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-29","12:40:00","MST","2022-08-29 19:40:00",NA,"0.589",589,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657776","UTAHDWQ_WQX-UCASE2022-4926361-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926361-0829-4-C/results/974657776/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13271","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-29","12:40:00","MST","2022-08-29 19:40:00",NA,"0.178",178,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657791","UTAHDWQ_WQX-UCASE2022-4926361-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"40.9057200000",40.90572,"-111.2247400000",-111.22474,"OK","16020101","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:47",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9057200000","-111.2247400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926361-0829-4-C/results/974657791/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13272","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-29","11:45:00","MST","2022-08-29 18:45:00",NA,"0.155",155,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657808","UTAHDWQ_WQX-UCASE2022-4926362-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck 1 mile AB Fish Ck confluence","River/Stream",NA,"40.8918700000",40.89187,"-111.2192700000",-111.21927,"OK","16020101","UTAHDWQ_WQX-4926362",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8918700000","-111.2192700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926362-0829-4-C/results/974657808/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13273","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-29","11:45:00","MST","2022-08-29 18:45:00",NA,"0.347",347,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657811","UTAHDWQ_WQX-UCASE2022-4926362-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck 1 mile AB Fish Ck confluence","River/Stream",NA,"40.8918700000",40.89187,"-111.2192700000",-111.21927,"OK","16020101","UTAHDWQ_WQX-4926362",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8918700000","-111.2192700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926362-0829-4-C/results/974657811/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13274","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-29","10:50:00","MST","2022-08-29 17:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657854","UTAHDWQ_WQX-UCASE2022-4926363-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926363-0829-4-C/results/974657854/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13275","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-29","10:50:00","MST","2022-08-29 17:50:00",NA,"0.223",223,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657862","UTAHDWQ_WQX-UCASE2022-4926363-0829-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"40.8798600000",40.87986,"-111.2161400000",-111.21614,"OK","16020101","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:48",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.8798600000","-111.2161400000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926363-0829-4-C/results/974657862/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13276","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-30","11:00:00","MST","2022-08-30 18:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657886","UTAHDWQ_WQX-UCASE2022-4926370-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926370-0830-4-C/results/974657886/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13277","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","11:00:00","MST","2022-08-30 18:00:00",NA,"0.172",172,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657892","UTAHDWQ_WQX-UCASE2022-4926370-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"40.9591800000",40.95918,"-111.1180600000",-111.11806,"OK","16020101","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9591800000","-111.1180600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926370-0830-4-C/results/974657892/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13278","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","10:00:00","MST","2022-08-30 17:00:00",NA,"0.278",278,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657904","UTAHDWQ_WQX-UCASE2022-4926380-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926380-0830-4-C/results/974657904/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13279","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-30","10:00:00","MST","2022-08-30 17:00:00",NA,"0.286",286,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657924","UTAHDWQ_WQX-UCASE2022-4926380-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"40.9618000000",40.9618,"-111.1040000000",-111.104,"OK","16020101","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:49",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9618000000","-111.1040000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926380-0830-4-C/results/974657924/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13280","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-08-30","12:00:00","MST","2022-08-30 19:00:00",NA,"0.228",228,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657928","UTAHDWQ_WQX-UCASE2022-4926390-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-02","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926390-0830-4-C/results/974657928/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13281","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-08-30","12:00:00","MST","2022-08-30 19:00:00",NA,"0.82",820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657932","UTAHDWQ_WQX-UCASE2022-4926390-0830-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","043","CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"40.9388400000",40.93884,"-111.1551800000",-111.15518,"OK","16020101","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.9388400000","-111.1551800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926390-0830-4-C/results/974657932/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13282","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-06","10:50:00","MST","2022-09-06 17:50:00",NA,"1.82",1820,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657954","UTAHDWQ_WQX-UCASE2022-4946450-0906-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"39.2787100000",39.27871,"-111.6782500000",-111.67825,"OK","16030004","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.2787100000","-111.6782500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946450-0906-4-C/results/974657954/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13283","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-06","10:50:00","MST","2022-09-06 17:50:00",NA,"1.63",1630,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657961","UTAHDWQ_WQX-UCASE2022-4946450-0906-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"39.2787100000",39.27871,"-111.6782500000",-111.67825,"OK","16030004","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:50",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.2787100000","-111.6782500000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946450-0906-4-C/results/974657961/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13284","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-06","12:00:00","MST","2022-09-06 19:00:00",NA,"0.535",535,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974657987","UTAHDWQ_WQX-UCASE2022-4946650-0906-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"39.4756600000",39.47566,"-111.5991100000",-111.59911,"OK","16030004","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4756600000","-111.5991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946650-0906-4-C/results/974657987/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13285","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-06","12:00:00","MST","2022-09-06 19:00:00",NA,"0.662",662,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658009","UTAHDWQ_WQX-UCASE2022-4946650-0906-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"39.4756600000",39.47566,"-111.5991100000",-111.59911,"OK","16030004","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.4756600000","-111.5991100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946650-0906-4-C/results/974658009/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13286","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-07","10:30:00","MST","2022-09-07 17:30:00",NA,"0.773",773,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658022","UTAHDWQ_WQX-UCASE2022-4946750-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:51",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946750-0907-4-C/results/974658022/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13287","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","10:30:00","MST","2022-09-07 17:30:00",NA,"0.736",736,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658036","UTAHDWQ_WQX-UCASE2022-4946750-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"39.5467900000",39.54679,"-111.5135600000",-111.51356,"OK","16030004","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5467900000","-111.5135600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946750-0907-4-C/results/974658036/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13288","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","11:15:00","MST","2022-09-07 18:15:00",NA,"0.804",804,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658044","UTAHDWQ_WQX-UCASE2022-4946756-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","San Pitch R Bl Fairview WWTP","River/Stream",NA,"39.5747900000",39.57479,"-111.4703900000",-111.47039,"OK","16030004","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5747900000","-111.4703900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946756-0907-4-C/results/974658044/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13289","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-07","11:15:00","MST","2022-09-07 18:15:00",NA,"0.928",928,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658064","UTAHDWQ_WQX-UCASE2022-4946756-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","San Pitch R Bl Fairview WWTP","River/Stream",NA,"39.5747900000",39.57479,"-111.4703900000",-111.47039,"OK","16030004","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:52",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5747900000","-111.4703900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946756-0907-4-C/results/974658064/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13290","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","12:00:00","MST","2022-09-07 19:00:00",NA,"0.899",899,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658081","UTAHDWQ_WQX-UCASE2022-4946840-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"39.6086000000",39.6086,"-111.4483200000",-111.44832,"OK","16030004","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6086000000","-111.4483200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946840-0907-4-C/results/974658081/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13291","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-07","12:00:00","MST","2022-09-07 19:00:00",NA,"1.06",1060,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable","Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658086","UTAHDWQ_WQX-UCASE2022-4946840-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"39.6086000000",39.6086,"-111.4483200000",-111.44832,"OK","16030004","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.6086000000","-111.4483200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946840-0907-4-C/results/974658086/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13292","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-06","13:30:00","MST","2022-09-06 20:30:00",NA,"12.5",12500,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658107","UTAHDWQ_WQX-UCASE2022-4946960-0906-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","SAN PITCH R AB MORONI WWTP","River/Stream",NA,"39.5147000000",39.5147,"-111.5862800000",-111.58628,"OK","16030004","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5147000000","-111.5862800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946960-0906-4-C/results/974658107/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13293","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-06","13:30:00","MST","2022-09-06 20:30:00",NA,"11.9",11900,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658112","UTAHDWQ_WQX-UCASE2022-4946960-0906-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","SAN PITCH R AB MORONI WWTP","River/Stream",NA,"39.5147000000",39.5147,"-111.5862800000",-111.58628,"OK","16030004","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:53",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5147000000","-111.5862800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-22","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946960-0906-4-C/results/974658112/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13294","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-06","12:50:00","MST","2022-09-06 19:50:00",NA,"0.495",495,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658134","UTAHDWQ_WQX-UCASE2022-4946980-0906-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"39.5010700000",39.50107,"-111.5854800000",-111.58548,"OK","16030004","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5010700000","-111.5854800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946980-0906-4-C/results/974658134/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13295","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-06","12:50:00","MST","2022-09-06 19:50:00",NA,"0.571",571,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658144","UTAHDWQ_WQX-UCASE2022-4946980-0906-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","039","SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"39.5010700000",39.50107,"-111.5854800000",-111.58548,"OK","16030004","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"39.5010700000","-111.5854800000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946980-0906-4-C/results/974658144/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13296","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","13:00:00","MST","2022-09-27 20:00:00",NA,"0.308",308,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658164","UTAHDWQ_WQX-UCASE2022-4948870-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948870-0927-4-C/results/974658164/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13297","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","13:00:00","MST","2022-09-27 20:00:00",NA,"0.184",184,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658171","UTAHDWQ_WQX-UCASE2022-4948870-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","031","OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"38.2661000000",38.2661,"-111.9541600000",-111.95416,"OK","16030002","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:54",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.2661000000","-111.9541600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948870-0927-4-C/results/974658171/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13298","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","15:40:00","MST","2022-09-27 22:40:00",NA,"1.14",1140,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658197","UTAHDWQ_WQX-UCASE2022-4948930-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","031","OTTER CK AT CR XING 2MI S E OF GREENWICH","River/Stream",NA,"38.4160900000",38.41609,"-111.9029700000",-111.90297,"OK","16030002","UTAHDWQ_WQX-4948930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.4160900000","-111.9029700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948930-0927-4-C/results/974658197/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13299","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","15:40:00","MST","2022-09-27 22:40:00",NA,"1.15",1150,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658204","UTAHDWQ_WQX-UCASE2022-4948930-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","031","OTTER CK AT CR XING 2MI S E OF GREENWICH","River/Stream",NA,"38.4160900000",38.41609,"-111.9029700000",-111.90297,"OK","16030002","UTAHDWQ_WQX-4948930",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.4160900000","-111.9029700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948930-0927-4-C/results/974658204/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13300","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","14:25:00","MST","2022-09-27 21:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658213","UTAHDWQ_WQX-UCASE2022-4948940-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","031","OTTER CREEK AT THE NARROWS","River/Stream",NA,"38.3520900000",38.35209,"-111.9464200000",-111.94642,"OK","16030002","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3520900000","-111.9464200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948940-0927-4-C/results/974658213/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13301","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","14:25:00","MST","2022-09-27 21:25:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658224","UTAHDWQ_WQX-UCASE2022-4948940-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","031","OTTER CREEK AT THE NARROWS","River/Stream",NA,"38.3520900000",38.35209,"-111.9464200000",-111.94642,"OK","16030002","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:55",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.3520900000","-111.9464200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948940-0927-4-C/results/974658224/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13302","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","16:45:00","MST","2022-09-27 23:45:00",NA,"0.435",435,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658251","UTAHDWQ_WQX-UCASE2022-4949040-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","041","OTTER CK AT CR XING NE OF KOOSHAREM","River/Stream",NA,"38.5202600000",38.52026,"-111.8638000000",-111.8638,"OK","16030002","UTAHDWQ_WQX-4949040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5202600000","-111.8638000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949040-0927-4-C/results/974658251/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13303","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","16:45:00","MST","2022-09-27 23:45:00",NA,"0.338",338,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658257","UTAHDWQ_WQX-UCASE2022-4949040-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","041","OTTER CK AT CR XING NE OF KOOSHAREM","River/Stream",NA,"38.5202600000",38.52026,"-111.8638000000",-111.8638,"OK","16030002","UTAHDWQ_WQX-4949040",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5202600000","-111.8638000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949040-0927-4-C/results/974658257/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13304","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","09:40:00","MST","2022-09-28 16:40:00",NA,"0.262",262,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658268","UTAHDWQ_WQX-UCASE2022-4949070-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","041","OTTER CK AT U62 XING N OF KOOSHAREM","River/Stream",NA,"38.5641400000",38.56414,"-111.8493600000",-111.84936,"OK","16030002","UTAHDWQ_WQX-4949070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5641400000","-111.8493600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949070-0928-4-C/results/974658268/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13305","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","09:40:00","MST","2022-09-28 16:40:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658284","UTAHDWQ_WQX-UCASE2022-4949070-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","041","OTTER CK AT U62 XING N OF KOOSHAREM","River/Stream",NA,"38.5641400000",38.56414,"-111.8493600000",-111.84936,"OK","16030002","UTAHDWQ_WQX-4949070",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:56",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"38.5641400000","-111.8493600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949070-0928-4-C/results/974658284/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13306","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","17:50:00","MST","2022-09-27 00:50:00",NA,"0.18",180,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658290","UTAHDWQ_WQX-UCASE2022-4949630-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","SEVIER R AT U12 XING","River/Stream",NA,"37.7494200000",37.74942,"-112.3749200000",-112.37492,"OK","16030001","UTAHDWQ_WQX-4949630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7494200000","-112.3749200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949630-0926-4-C/results/974658290/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13307","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","17:50:00","MST","2022-09-27 00:50:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658294","UTAHDWQ_WQX-UCASE2022-4949630-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","SEVIER R AT U12 XING","River/Stream",NA,"37.7494200000",37.74942,"-112.3749200000",-112.37492,"OK","16030001","UTAHDWQ_WQX-4949630",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.7494200000","-112.3749200000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949630-0926-4-C/results/974658294/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13308","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","10:30:00","MST","2022-09-27 17:30:00",NA,"0.471",471,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658323","UTAHDWQ_WQX-UCASE2022-4949640-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","SEVIER R @ SANFORD ROAD XING","River/Stream",NA,"37.9419200000",37.94192,"-112.4166000000",-112.4166,"OK","16030001","UTAHDWQ_WQX-4949640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.9419200000","-112.4166000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949640-0927-4-C/results/974658323/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13309","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","10:30:00","MST","2022-09-27 17:30:00",NA,"0.48",480,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658345","UTAHDWQ_WQX-UCASE2022-4949640-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","SEVIER R @ SANFORD ROAD XING","River/Stream",NA,"37.9419200000",37.94192,"-112.4166000000",-112.4166,"OK","16030001","UTAHDWQ_WQX-4949640",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:57",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.9419200000","-112.4166000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949640-0927-4-C/results/974658345/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13310","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","16:15:00","MST","2022-09-26 23:15:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658349","UTAHDWQ_WQX-UCASE2022-4949650-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","SEVIER R NEAR HATCH","River/Stream",NA,"37.6515000000",37.6515,"-112.4304300000",-112.43043,"OK","16030001","UTAHDWQ_WQX-4949650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6515000000","-112.4304300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949650-0926-4-C/results/974658349/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13311","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","16:15:00","MST","2022-09-26 23:15:00",NA,"0.346",346,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658350","UTAHDWQ_WQX-UCASE2022-4949650-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","SEVIER R NEAR HATCH","River/Stream",NA,"37.6515000000",37.6515,"-112.4304300000",-112.43043,"OK","16030001","UTAHDWQ_WQX-4949650",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6515000000","-112.4304300000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949650-0926-4-C/results/974658350/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13312","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","15:15:00","MST","2022-09-26 22:15:00",NA,"0.224",224,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658377","UTAHDWQ_WQX-UCASE2022-4949700-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","MAMMOTH CK AT US89 XING","River/Stream",NA,"37.6281000000",37.6281,"-112.4553100000",-112.45531,"OK","16030001","UTAHDWQ_WQX-4949700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6281000000","-112.4553100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949700-0926-4-C/results/974658377/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13313","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","15:15:00","MST","2022-09-26 22:15:00",NA,"0.322",322,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658382","UTAHDWQ_WQX-UCASE2022-4949700-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","MAMMOTH CK AT US89 XING","River/Stream",NA,"37.6281000000",37.6281,"-112.4553100000",-112.45531,"OK","16030001","UTAHDWQ_WQX-4949700",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:58",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.6281000000","-112.4553100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949700-0926-4-C/results/974658382/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13314","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-27","09:00:00","MST","2022-09-27 16:00:00",NA,"0.711",711,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658423","UTAHDWQ_WQX-UCASE2022-4949710-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Sevier R bl USU Farm @ Sandwash Rd Xing","River/Stream",NA,"37.8762300000",37.87623,"-112.4277600000",-112.42776,"OK","16030001","UTAHDWQ_WQX-4949710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8762300000","-112.4277600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949710-0927-4-C/results/974658423/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13315","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-27","09:00:00","MST","2022-09-27 16:00:00",NA,"0.946",946,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658429","UTAHDWQ_WQX-UCASE2022-4949710-0927-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","Sevier R bl USU Farm @ Sandwash Rd Xing","River/Stream",NA,"37.8762300000",37.87623,"-112.4277600000",-112.42776,"OK","16030001","UTAHDWQ_WQX-4949710",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:24:59",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.8762300000","-112.4277600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949710-0927-4-C/results/974658429/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13316","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-26","14:20:00","MST","2022-09-26 21:20:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658447","UTAHDWQ_WQX-UCASE2022-4949900-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","ASAY CK AT US89 XING","River/Stream",NA,"37.5841500000",37.58415,"-112.4766000000",-112.4766,"OK","16030001","UTAHDWQ_WQX-4949900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5841500000","-112.4766000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949900-0926-4-C/results/974658447/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13317","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-26","14:20:00","MST","2022-09-26 21:20:00",NA,"0.186",186,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","J","Pass","J - Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.","Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658448","UTAHDWQ_WQX-UCASE2022-4949900-0926-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","017","ASAY CK AT US89 XING","River/Stream",NA,"37.5841500000",37.58415,"-112.4766000000",-112.4766,"OK","16030001","UTAHDWQ_WQX-4949900",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"37.5841500000","-112.4766000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949900-0926-4-C/results/974658448/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13318","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-01","10:00:00","MST","2022-09-01 17:00:00",NA,"0.549",549,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658467","UTAHDWQ_WQX-UCASE2022-4996913-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4996913-0901-4-C/results/974658467/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13319","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-01","10:00:00","MST","2022-09-01 17:00:00",NA,"0.28",280,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658475","UTAHDWQ_WQX-UCASE2022-4996913-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","051","Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"40.3474300000",40.34743,"-111.4026700000",-111.40267,"OK","16020203","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:00",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3474300000","-111.4026700000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4996913-0901-4-C/results/974658475/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13320","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-01","11:00:00","MST","2022-09-01 18:00:00",NA,"1.79",1790,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658499","UTAHDWQ_WQX-UCASE2022-5910280-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5910280-0901-4-C/results/974658499/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13321","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-01","11:00:00","MST","2022-09-01 18:00:00",NA,"1.74",1740,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658513","UTAHDWQ_WQX-UCASE2022-5910280-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","051","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"40.3863500000",40.38635,"-111.4224000000",-111.4224,"OK","16020203","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.3863500000","-111.4224000000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5910280-0901-4-C/results/974658513/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13322","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-01","12:00:00","MST","2022-09-01 19:00:00",NA,"0.553",553,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658514","UTAHDWQ_WQX-UCASE2022-5910619-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5910619-0901-4-C/results/974658514/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13323","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-01","12:00:00","MST","2022-09-01 19:00:00",NA,"0.487",487,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface","0",0,"Numeric","m","m",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658519","UTAHDWQ_WQX-UCASE2022-5910619-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","051","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"40.4063200000",40.40632,"-111.4725100000",-111.47251,"OK","16020203","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:01",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.4063200000","-111.4725100000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5910619-0901-4-C/results/974658519/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13324","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-07-21","13:55:00","MST","2022-07-21 20:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658546","UTAHDWQ_WQX-UCASE2022-5989995-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0721-4-C/results/974658546/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13325","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-07-21","13:55:00","MST","2022-07-21 20:55:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658549","UTAHDWQ_WQX-UCASE2022-5989995-0721-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-08-04","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0721-4-C/results/974658549/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13326","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-01","14:00:00","MST","2022-09-01 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658568","UTAHDWQ_WQX-UCASE2022-5989995-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:02",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0901-4-C/results/974658568/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13327","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-01","14:00:00","MST","2022-09-01 21:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658592","UTAHDWQ_WQX-UCASE2022-5989995-0901-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0901-4-C/results/974658592/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13328","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-07","15:00:00","MST","2022-09-07 22:00:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658603","UTAHDWQ_WQX-UCASE2022-5989995-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-13","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0907-4-C/results/974658603/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13329","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-07","15:00:00","MST","2022-09-07 22:00:00",NA,"0.275",275,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658613","UTAHDWQ_WQX-UCASE2022-5989995-0907-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-09-15","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0907-4-C/results/974658613/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13330","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-09-28","10:45:00","MST","2022-09-28 17:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658625","UTAHDWQ_WQX-UCASE2022-5989995-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:03",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0928-4-C/results/974658625/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13331","Quality Control Sample-Equipment Blank","QC_blank","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-09-28","10:45:00","MST","2022-09-28 17:45:00",NA,NA,200,"Result Value/Unit Copied from Detection Limit","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","No Result Value","NonStandardized","Not Detected","Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","U","Non-Detect","U - Not Detected: The analyte was analyzed for, but was not detected at a level greater than or equal to the level of the adjusted Contract Required Quantitation Limit (CRQL) for sample and method. ","Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,"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.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-974658630","UTAHDWQ_WQX-UCASE2022-5989995-0928-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","301",NA,"N",NA,"N","US","49","035","UCASE equipment blank- statewide","River/Stream","Equipment Blank","40.7741300000",40.77413,"-111.9478900000",-111.94789,"OK","16020204","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-05-11T14:25:04",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7741300000","-111.9478900000","Accepted",NA,NA,NA,NA,NA,NA,"2022-10-19","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0928-4-C/results/974658630/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13332","Sample-Routine","Non_QC","Water","WATER",NA,"Dissolved","DISSOLVED","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_DISSOLVED_AS N_UG/L","2022-06-16","08:50:00","MST","2022-06-16 15:50:00",NA,"0.301",301,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-988078133","UTAHDWQ_WQX-WRI220613-4927245-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Crandall Canyon AB Rockport Reservoir at U-302 xing","River/Stream",NA,"40.7660400000",40.76604,"-111.3811600000",-111.38116,"OK","16020101","UTAHDWQ_WQX-4927245",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-09-06T17:56:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7660400000","-111.3811600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-05","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927245-0616-4-C/results/988078133/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13333","Sample-Routine","Non_QC","Water","WATER",NA,"Total","TOTAL","Accepted","Nitrogen","NITROGEN",NA,NA,"as N","AS N","Accepted","NITROGEN_TOTAL_AS N_UG/L","2022-06-16","08:50:00","MST","2022-06-16 15:50:00",NA,"0.214",214,"Numeric","Actual","Not Reviewed","Not Reviewed","mg/L","UG/L","Convert","NonStandardized",NA,"Lower Reporting Limit","0.2",200,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,"Surface",NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"D8083-16","ASTM",NA,"Valid","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.","Utah DOH Division of Epidemilogy and Laboratory Services",NA,"STORET-988078152","UTAHDWQ_WQX-WRI220613-4927245-0616-4-C","UTAHDWQ_WQX","Utah Department Of Environmental Quality","N","Not a duplicate","Y","Not a duplicate","Unique","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","302",NA,NA,NA,"N","US","49","043","Crandall Canyon AB Rockport Reservoir at U-302 xing","River/Stream",NA,"40.7660400000",40.76604,"-111.3811600000",-111.38116,"OK","16020101","UTAHDWQ_WQX-4927245",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-09-06T17:56:22",FALSE,"Flag",NA,NA,NA,NA,NA,"Division of Water Quality",NA,"40.7660400000","-111.3811600000","Accepted",NA,NA,NA,NA,NA,NA,"2022-07-01","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927245-0616-4-C/results/988078152/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1973","Field Msr/Obs","Non_QC","Water","WATER",NA,"None",NA,"Not Reviewed","Nitrate","NITRATE",NA,NA,"unknown","UNKNOWN","Rejected","NITRATE_NA_UNKNOWN_UG/L","2021-02-20",NA,NA,NA,NA,"0.34",340,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","RMRS LAB",NA,"LAB ANALYSIS","ADVENTURESCIENTISTS",NA,"Not Reviewed",NA,NA,NA,NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"SR 080",NA,"STORET-989870634","ADVENTURESCIENTISTS-f2d680ef-dfe5-4b9b-b0e8-0d14d2d62221-39.11.110.11","ADVENTURESCIENTISTS","Adventure Scientists (Volunteer)*","N","Not a duplicate","Y","Not a duplicate","Unique","Wild and Scenic Rivers","Adventure Scientists' Wild and Scenic Rivers project","AS-WSR-1",NA,NA,NA,"N","US","49","019","Green Wild and Scenic River-39.11.110.11","River/Stream",NA,"39.1146823000",39.1146823,"-110.1090854000",-110.1090854,"OK","14060008","ADVENTURESCIENTISTS-39.11.110.11",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-09-22T15:51:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"39.1146823000","-110.1090854000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1974","Field Msr/Obs","Non_QC","Water","WATER",NA,"None",NA,"Not Reviewed","Nitrate","NITRATE",NA,NA,"unknown","UNKNOWN","Rejected","NITRATE_NA_UNKNOWN_UG/L","2021-05-22",NA,NA,NA,NA,"0.34",340,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","RMRS LAB",NA,"LAB ANALYSIS","ADVENTURESCIENTISTS",NA,"Not Reviewed",NA,NA,NA,NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"SR 091",NA,"STORET-989870880","ADVENTURESCIENTISTS-631e5ad4-caea-4dd8-a8cc-db34a0f8216c-38.52.109.99","ADVENTURESCIENTISTS","Adventure Scientists (Volunteer)*","N","Not a duplicate","Y","Not a duplicate","Unique","Wild and Scenic Rivers","Adventure Scientists' Wild and Scenic Rivers project","AS-WSR-1",NA,NA,NA,"N","US","49","019","Green Wild and Scenic River-38.52.109.99","River/Stream",NA,"38.5242627000",38.5242627,"-109.9945675000",-109.9945675,"OK","14060008","ADVENTURESCIENTISTS-38.52.109.99",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-09-22T15:51:54",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"38.5242627000","-109.9945675000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2037","Field Msr/Obs","Non_QC","Water","WATER",NA,"None",NA,"Not Reviewed","Nitrate","NITRATE",NA,NA,"unknown","UNKNOWN","Rejected","NITRATE_NA_UNKNOWN_UG/L","2021-06-06",NA,NA,NA,NA,"0.36",360,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","RMRS LAB",NA,"LAB ANALYSIS","ADVENTURESCIENTISTS",NA,"Not Reviewed",NA,NA,NA,NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"SR 098",NA,"STORET-989872069","ADVENTURESCIENTISTS-16af0477-56b0-449e-9e64-cc758c44bb37-39.11.110.11","ADVENTURESCIENTISTS","Adventure Scientists (Volunteer)*","N","Not a duplicate","Y","Not a duplicate","Unique","Wild and Scenic Rivers","Adventure Scientists' Wild and Scenic Rivers project","AS-WSR-1",NA,NA,NA,"N","US","49","019","Green Wild and Scenic River-39.11.110.11","River/Stream",NA,"39.1146823000",39.1146823,"-110.1090854000",-110.1090854,"OK","14060008","ADVENTURESCIENTISTS-39.11.110.11",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-09-22T15:51:58",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"39.1146823000","-110.1090854000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2017","Field Msr/Obs","Non_QC","Water","WATER",NA,"None",NA,"Not Reviewed","Nitrate","NITRATE",NA,NA,"unknown","UNKNOWN","Rejected","NITRATE_NA_UNKNOWN_UG/L","2022-02-21",NA,NA,NA,NA,"0.46",460,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,NA,NA,NA,"NA - Not Available",NA,NA,"Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","RMRS LAB",NA,"LAB ANALYSIS","ADVENTURESCIENTISTS",NA,"Not Reviewed",NA,NA,NA,NA,"Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"SR 197",NA,"STORET-989873791","ADVENTURESCIENTISTS-df7b0fb4-ea77-4654-9aa1-51e71c207a9d-39.11.110.11","ADVENTURESCIENTISTS","Adventure Scientists (Volunteer)*","N","Not a duplicate","Y","Not a duplicate","Unique","Wild and Scenic Rivers","Adventure Scientists' Wild and Scenic Rivers project","AS-WSR-1",NA,NA,NA,"N","US","49","019","Green Wild and Scenic River-39.11.110.11","River/Stream",NA,"39.1146823000",39.1146823,"-110.1090854000",-110.1090854,"OK","14060008","ADVENTURESCIENTISTS-39.11.110.11",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-09-22T15:52:04",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"39.1146823000","-110.1090854000","Final",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"61","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-08-10","14:15:00","MST","2021-08-10 21:15:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991070","UTEMTN-UT 1175S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","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","BOR_ALP",NA,NA,NA,"N","US","49","037","Ruin spring-- highest flowing on White Mesa","Spring","Ruin spring-- highest flowing on White Mesa","37.4998430000",37.499843,"-109.5225670000",-109.522567,"OK","14080201","UTEMTN-RUIN_SPG",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.4998430000","-109.5225670000","Final",NA,NA,NA,NA,NA,NA,"2021-08-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201175S/results/994991070/resdetectqntlmts",NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"62","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-08-10","14:20:00","MST","2021-08-10 21:20:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991138","UTEMTN-UT 1176Q","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","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","BOR_ALP",NA,NA,NA,"N","US","49","037","Ruin spring-- highest flowing on White Mesa","Spring","Ruin spring-- highest flowing on White Mesa","37.4998430000",37.499843,"-109.5225670000",-109.522567,"OK","14080201","UTEMTN-RUIN_SPG",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:39",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.4998430000","-109.5225670000","Final",NA,NA,NA,NA,NA,NA,"2021-08-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201176Q/results/994991138/resdetectqntlmts",NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"63","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-08-10","11:45:00","MST","2021-08-10 18:45:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991187","UTEMTN-UT 1177S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","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","BOR_ALP",NA,NA,NA,"N","US","49","037","Cow Camp Spring","Spring",NA,"37.5238671000",37.5238671,"-109.5381037000",-109.5381037,"OK","14080201","UTEMTN-Cow Camp Spring",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:40",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5238671000","-109.5381037000","Final",NA,NA,NA,NA,NA,NA,"2021-08-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201177S/results/994991187/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"64","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-08-10","15:45:00","MST","2021-08-10 22:45:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991277","UTEMTN-UT 1174S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","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","BOR_ALP",NA,NA,NA,"N","US","49","037","Entrasnce seep-- nearest WM uranium mill","Spring","Entrasnce seep-- nearest WM uranium mill","37.5321000000",37.5321,"-109.4920170000",-109.492017,"OK","14080201","UTEMTN-ENTRANCE_SPG",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:41",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5321000000","-109.4920170000","Final",NA,NA,NA,NA,NA,NA,"2021-08-17","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201174S/results/994991277/resdetectqntlmts",NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"65","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-21","11:15:00","MST","2021-09-21 18:15:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991443","UTEMTN-UT 1182S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","white mesa ground water monitoring well; east","Well","monitoring well downgradient of White Mesa Uranium Mill, southeast","37.4964750000",37.496475,"-109.4931020000",-109.493102,"OK","14080201","UTEMTN-WM_GWMW_E",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:42",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.4964750000","-109.4931020000","Final",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201182S/results/994991443/resdetectqntlmts",NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"66","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-15","14:50:00","MST","2021-09-15 21:50:00",NA,"0.830",830,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991522","UTEMTN-UT 1180S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","RARE - 1","Well",NA,"37.5122083300",37.51220833,"-109.4942416700",-109.49424167,"OK","14080201","UTEMTN-RARE - 1",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5122083300","-109.4942416700","Final",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201180S/results/994991522/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"67","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-15","15:05:00","MST","2021-09-15 22:05:00",NA,"0.881",881,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991564","UTEMTN-UT 1181Q","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","RARE - 1","Well",NA,"37.5122083300",37.51220833,"-109.4942416700",-109.49424167,"OK","14080201","UTEMTN-RARE - 1",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:43",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.5122083300","-109.4942416700","Final",NA,NA,NA,NA,NA,NA,"2021-09-23","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201181Q/results/994991564/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"68","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-09-22","14:30:00","MST","2021-09-22 21:30:00",NA,"0.349",349,"Numeric","Actual","N","N","mg/L","UG/L","Convert","Accepted",NA,"Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Uncensored",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991690","UTEMTN-UT 1183S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","white mesa ground water monitoring well; west","Well","monitoring well downgradient of White Mesa Uranium Mill, southwest","37.4897350000",37.489735,"-109.5180720000",-109.518072,"OK","14080201","UTEMTN-WM_GWMW_W",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:44",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.4897350000","-109.5180720000","Final",NA,NA,NA,NA,NA,NA,"2021-09-30","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201183S/results/994991690/resdetectqntlmts",NA,"7",NA,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",NA,NA,NA,NA,NA,NA +"2026","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_UG/L","2021-07-14","10:55:00","MST","2021-07-14 17:55:00",NA,NA,20,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.02",20,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991778","UTEMTN-UT 1172S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","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.","37.7415950000",37.741595,"-109.6886280000",-109.688628,"OK","14080201","UTEMTN-CW-N",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.7415950000","-109.6886280000","Final",NA,NA,NA,NA,NA,NA,"2021-07-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201172S/results/994991778/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"70","Sample-Routine","Non_QC","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-07-14","10:55:00","MST","2021-07-14 17:55:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991800","UTEMTN-UT 1172S","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","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.","37.7415950000",37.741595,"-109.6886280000",-109.688628,"OK","14080201","UTEMTN-CW-N",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:46",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.7415950000","-109.6886280000","Final",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201172S/results/994991800/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"2015","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Nitrate","NITRATE",NA,NA,"as N","AS N","Accepted","NITRATE_UNFILTERED_AS N_UG/L","2021-07-14","11:00:00","MST","2021-07-14 18:00:00",NA,NA,20,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.02",20,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","300.0","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991853","UTEMTN-UT 1173Q","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","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.","37.7415950000",37.741595,"-109.6886280000",-109.688628,"OK","14080201","UTEMTN-CW-N",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.7415950000","-109.6886280000","Final",NA,NA,NA,NA,NA,NA,"2021-07-16","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201173Q/results/994991853/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"72","Quality Control Sample-Field Replicate","QC_replicate","Water","WATER",NA,"Unfiltered","UNFILTERED","Accepted","Ammonia","AMMONIA",NA,NA,"as N","AS N","Accepted","AMMONIA_UNFILTERED_AS N_UG/L","2021-07-14","11:00:00","MST","2021-07-14 18:00:00",NA,NA,100,"Result Value/Unit Copied from Detection Limit","Actual","N","N","mg/L","UG/L","No Result Value","Accepted","Not Detected","Lower Reporting Limit","0.1",100,"Numeric","mg/L","UG/L","Non-Detect",NA,NA,"NA - Not Available",NA,NA,NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"NA - Not Available",NA,NA,NA,NA,"Discrete","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","350.1","USEPA",NA,"Valid","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle",NA,"Pass","NA - Not Applicable",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Green Analytical Laboratories",NA,"STORET-994991884","UTEMTN-UT 1173Q","UTEMTN","Ute Mountain Utes Tribe (Colorado)","N","Not a duplicate","Y","Not a duplicate","Unique","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution","UIT_106",NA,NA,NA,"N","US","49","037","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.","37.7415950000",37.741595,"-109.6886280000",-109.688628,"OK","14080201","UTEMTN-CW-N",NA,NA,NA,NA,NA,NA,NA,NA,"STORET","2023-12-08T01:05:47",FALSE,"Flag",NA,NA,NA,NA,NA,NA,NA,"37.7415950000","-109.6886280000","Final",NA,NA,NA,NA,NA,NA,"2021-07-26","https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201173Q/results/994991884/resdetectqntlmts",NA,"7",NA,NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/inst/flag_prompts.csv b/inst/flag_prompts.csv index d3ee4a3cc..c4c79993d 100644 --- a/inst/flag_prompts.csv +++ b/inst/flag_prompts.csv @@ -13,6 +13,6 @@ Order,Level,Prompt,flagType 12,Optional,"QAPP approval column is ""N"" (indicating not approved) or NA","QAPP approval column is ""N"" (indicating not approved) or NA" 13,Optional,Quality Assurance Project Plan URL is missing,Quality Assurance Project Plan URL is missing 14,Optional,"Metadata indicates result(s) are aggregate, high-frequency continuous sensor results, not discrete samples","Metadata indicates result(s) are aggregate, high-frequency continuous sensor results, not discrete samples" -15,Optional,"Result value(s) outside of the national upper range for a given characteristic, possibly indicating non-sensical value(s)","Result value(s) outside of the national upper range for a given characteristic, possibly indicating non-sensical value(s)" -16,Optional,"Result value(s) outside of the national lower range for a given characteristic, possibly indicating non-sensical value(s)","Result value(s) outside of the national lower range for a given characteristic, possibly indicating non-sensical value(s)" -17,Optional,Coordinates are outside of the United States,TADA.InvalidCoordinates.Flag +15,Optional,"Result value(s) above the national threshold for a given characteristic, possibly indicating non-sensical value(s)","Result value(s) above the national upper threshold for a given characteristic, possibly indicating non-sensical value(s)" +16,Optional,"Result value(s) below the national threshold for a given characteristic, possibly indicating non-sensical value(s)","Result value(s) below the national lower threshold for a given characteristic, possibly indicating non-sensical value(s)" +17,Optional,Coordinates are outside of the United States and/or imprecise (less than three decimal digits),Coordinates are outside of the United States and/or imprecise (less than three decimal digits) diff --git a/inst/flag_tests.csv b/inst/flag_tests.csv index 3fa7c7c59..e17121ad1 100644 --- a/inst/flag_tests.csv +++ b/inst/flag_tests.csv @@ -20,10 +20,10 @@ Conflict between detection condition text and detection limit type or detection Conflict between detection condition text and detection limit type or detection limit type is not in WQX domain tables (likely USGS/NWIS-specific) ,TADA.CensoredData.Flag,Non-Detect,0,0 Conflict between detection condition text and detection limit type or detection limit type is not in WQX domain tables (likely USGS/NWIS-specific) ,TADA.CensoredData.Flag,Over-Detect,0,0 Conflict between detection condition text and detection limit type or detection limit type is not in WQX domain tables (likely USGS/NWIS-specific) ,TADA.CensoredData.Flag,Other Condition/Limit Populated,0,0 -Spatial Flags,TADA.InvalidCoordinates.Flag,LAT_OutsideUSA,0,1 -Spatial Flags,TADA.InvalidCoordinates.Flag,LONG_OutsideUSA,0,1 -Spatial Flags,TADA.InvalidCoordinates.Flag,Imprecise_lessthan3decimaldigits,0,0 -Spatial Flags,TADA.InvalidCoordinates.Flag,OK,0,0 +Coordinates are outside of the United States and/or imprecise (less than three decimal digits),TADA.InvalidCoordinates.Flag,LAT_OutsideUSA,0,1 +Coordinates are outside of the United States and/or imprecise (less than three decimal digits),TADA.InvalidCoordinates.Flag,LONG_OutsideUSA,0,1 +Coordinates are outside of the United States and/or imprecise (less than three decimal digits),TADA.InvalidCoordinates.Flag,Imprecise_lessthan3decimaldigits,0,0 +Coordinates are outside of the United States and/or imprecise (less than three decimal digits),TADA.InvalidCoordinates.Flag,OK,0,0 MeasureQualifierCode indicates result value is suspect,TADA.MeasureQualifierCode.Flag,NA - Not Available,0,0 MeasureQualifierCode indicates result value is suspect,TADA.MeasureQualifierCode.Flag,Non-Detect,0,0 MeasureQualifierCode indicates result value is suspect,TADA.MeasureQualifierCode.Flag,Pass,0,0 @@ -52,12 +52,14 @@ Invalid units for a given characteristic and media combination,TADA.ResultUnit.F Invalid units for a given characteristic and media combination,TADA.ResultUnit.Flag,NonStandardized,0,0 Invalid units for a given characteristic and media combination,TADA.ResultUnit.Flag,Invalid,0,1 Invalid units for a given characteristic and media combination,TADA.ResultUnit.Flag,Not Reviewed,0,0 -"Result value(s) outside of the national upper range for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueAboveUpperThreshold.Flag,Y,0,1 -"Result value(s) outside of the national upper range for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueAboveUpperThreshold.Flag,N,0,0 -"Result value(s) outside of the national upper range for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueAboveUpperThreshold.Flag,Not Reviewed,0,0 -"Result value(s) outside of the national lower range for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueBelowLowerThreshold.Flag,Y,0,1 -"Result value(s) outside of the national lower range for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueBelowLowerThreshold.Flag,N,0,0 -"Result value(s) outside of the national lower range for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueBelowLowerThreshold.Flag,Not Reviewed,0,0 +"Result value(s) above the national upper threshold for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueAboveUpperThreshold.Flag,Suspect,0,1 +"Result value(s) above the national upper threshold for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueAboveUpperThreshold.Flag,Pass,0,0 +"Result value(s) above the national upper threshold for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueAboveUpperThreshold.Flag,Not Reviewed,0,0 +"Result value(s) above the national upper threshold for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueAboveUpperThreshold.Flag,NA - Not Available,0,0 +"Result value(s) below the national lower threshold for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueBelowLowerThreshold.Flag,Suspect,0,1 +"Result value(s) below the national lower threshold for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueBelowLowerThreshold.Flag,Pass,0,0 +"Result value(s) below the national lower threshold for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueBelowLowerThreshold.Flag,Not Reviewed,0,0 +"Result value(s) below the national lower threshold for a given characteristic, possibly indicating non-sensical value(s)",TADA.ResultValueBelowLowerThreshold.Flag,NA - Not Available,0,0 Invalid characteristic and fraction combination,TADA.SampleFraction.Flag,Valid,0,0 Invalid characteristic and fraction combination,TADA.SampleFraction.Flag,NonStandardized,0,0 Invalid characteristic and fraction combination,TADA.SampleFraction.Flag,Invalid,0,1